diff --git a/configuration.sh b/configuration.sh index becc336e9d..0ecf0b5be2 100644 --- a/configuration.sh +++ b/configuration.sh @@ -286,7 +286,7 @@ KERNEL_NEXT_BRANCH="v"`wget -qO- https://www.kernel.org/finger_banner | grep "The latest st" | awk '{print $NF}' | head -1` KERNEL_NEXT_SOURCE="linux-vanilla" KERNEL_DEV='git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git' - [ "$USE_MAINLINE_GOOGLE_MIRROR" = "yes" ] && KERNEL_NEXT='https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable' + [ "$USE_MAINLINE_GOOGLE_MIRROR" = "yes" ] && KERNEL_DEV='https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable' KERNEL_DEV_BRANCH="" KERNEL_DEV_SOURCE="linux-vanilla" # U-boot @@ -410,7 +410,7 @@ # For user override if [[ -f "$SRC/userpatches/lib.config" ]]; then - display_alert "Using user configuration override" "$SRC/userpatches/lib.config" "info" + display_alert "Using user configuration override" "userpatches/lib.config" "info" source $SRC/userpatches/lib.config fi diff --git a/debootstrap-ng.sh b/debootstrap-ng.sh index e3f0e2d422..4997a774b1 100644 --- a/debootstrap-ng.sh +++ b/debootstrap-ng.sh @@ -435,7 +435,8 @@ prepare_partitions() echo "/dev/mmcblk0p1 /boot ${parttype[$bootfs]} defaults${mountopts[$bootfs]} 0 0" >> $DEST/cache/sdcard/etc/fstab fi echo "tmpfs /tmp tmpfs defaults,rw,nosuid,nodev 0 0" >> $DEST/cache/sdcard/etc/fstab -} + +} ############################################################################# # create_image #