Skip to content

Commit

Permalink
projects/Amlogic: fix missing target kernel message when updating
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Green committed Jun 5, 2018
1 parent 68a6bce commit 1940193
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion projects/Amlogic/devices/KVIM/bootloader/boot.ini
Expand Up @@ -8,7 +8,7 @@
#------------------------------------------------------------------------------------------------------
KHADAS-UBOOT-CONFIG

setenv bootrootfs "BOOT_IMAGE=kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv bootrootfs "BOOT_IMAGE=/kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv condev "ttyS0,115200"
setenv hdmimode "1080p60hz"
setenv hdmioutput "1"
Expand Down
2 changes: 1 addition & 1 deletion projects/Amlogic/devices/KVIM2/bootloader/boot.ini
Expand Up @@ -8,7 +8,7 @@
#------------------------------------------------------------------------------------------------------
KHADAS-UBOOT-CONFIG

setenv bootrootfs "BOOT_IMAGE=kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv bootrootfs "BOOT_IMAGE=/kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv condev "ttyS0,115200"
setenv hdmimode "1080p60hz"
setenv hdmioutput "1"
Expand Down
2 changes: 1 addition & 1 deletion projects/Amlogic/devices/LePotato/bootloader/boot.ini
Expand Up @@ -8,7 +8,7 @@
#------------------------------------------------------------------------------------------------------
LIBRETECH-UBOOT-CONFIG

setenv bootrootfs "BOOT_IMAGE=kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv bootrootfs "BOOT_IMAGE=/kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv condev "ttyS0,115200"
setenv hdmimode "1080p60hz"
setenv hdmioutput "1"
Expand Down
2 changes: 1 addition & 1 deletion projects/Amlogic/devices/Odroid_C2/bootloader/boot.ini
Expand Up @@ -8,7 +8,7 @@
#------------------------------------------------------------------------------------------------------
ODROIDC2-UBOOT-CONFIG

setenv bootrootfs "BOOT_IMAGE=KERNEL boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv bootrootfs "BOOT_IMAGE=/KERNEL boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
setenv condev "ttyS0,115200"
setenv hdmimode "1080p60hz"
setenv hdmioutput "1"
Expand Down
2 changes: 1 addition & 1 deletion projects/Amlogic/initramfs/platform_init
Expand Up @@ -44,7 +44,7 @@ done
if [ -z "$BOOT_IMAGE" -o -z "$boot" -o -z "$disk" ]; then
cmdline=$(cat /proc/cmdline)
if [ -n "$bootfromext" ]; then
cmdline="$cmdline BOOT_IMAGE=kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
cmdline="$cmdline BOOT_IMAGE=/kernel.img boot=LABEL=@BOOT_LABEL@ disk=LABEL=@DISK_LABEL@"
else
cmdline="$cmdline BOOT_IMAGE=/dev/boot boot=/dev/system disk=/dev/data"
fi
Expand Down

0 comments on commit 1940193

Please sign in to comment.