Skip to content

Commit

Permalink
linux-5.5_rc7: Use proper URL for -rc kernels
Browse files Browse the repository at this point in the history
-rc kernels are not available over the cdn. Fix download link for -rc
kernels.
  • Loading branch information
pmenzel committed Jan 20, 2020
1 parent b3774d8 commit b05634d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions linux-5.5_rc7-316.bee
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ KERNELVERSION=${KERNELVERSION}${PKGEXTRAVERSION_DASH}
echo $KERNELVERSION

SRCURL[0]="https://cdn.kernel.org/pub/linux/kernel/v${PKGVERSION[1]}.x/linux-${PKGVERSION}${PKGEXTRAVERSION_DASH}.tar.xz"
if [ -z "${PKGEXTRAVERSION_DASH}" ]; then
SRCURL[0]="https://cdn.kernel.org/pub/linux/kernel/v${PKGVERSION[1]}.x/linux-${PKGVERSION}.tar.xz"
else
SRCURL[0]="https://git.kernel.org/torvalds/t/linux-${PKGVERSION}${PKGEXTRAVERSION_DASH}.tar.gz"
fi

# EXCLUDE=""

Expand Down

0 comments on commit b05634d

Please sign in to comment.