[U-Boot] [PATCH] dragonboard410c: Fix environment variables

Some variables for the distro boot commands were missing, using some custom name instead. Rename them.
Cc: Mateusz Kulikowski mateusz.kulikowski@gmail.com Signed-off-by: Andreas Färber afaerber@suse.de --- include/configs/dragonboard410c.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/configs/dragonboard410c.h b/include/configs/dragonboard410c.h index a63440f..6dd5fbf 100644 --- a/include/configs/dragonboard410c.h +++ b/include/configs/dragonboard410c.h @@ -126,10 +126,10 @@ REFLASH(dragonboard/u-boot.img, 8)\ "fdt_high=0xffffffffffffffff\0" \ "initrd_high=0xffffffffffffffff\0" \ "linux_image=Image\0" \ - "linux_addr=0x81000000\0"\ - "fdt_image=apq8016-sbc.dtb\0" \ - "fdt_addr=0x83000000\0"\ - "ramdisk_addr=0x84000000\0"\ + "kernel_addr_r=0x81000000\0"\ + "fdtfile=apq8016-sbc.dtb\0" \ + "fdt_addr_r=0x83000000\0"\ + "ramdisk_addr_r=0x84000000\0"\ BOOTENV
#define CONFIG_ENV_IS_NOWHERE

Hi Daniel,
Am 13.04.2016 um 14:16 schrieb Andreas Färber:
Some variables for the distro boot commands were missing, using some custom name instead. Rename them.
Cc: Mateusz Kulikowski mateusz.kulikowski@gmail.com Signed-off-by: Andreas Färber afaerber@suse.de
include/configs/dragonboard410c.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/configs/dragonboard410c.h b/include/configs/dragonboard410c.h index a63440f..6dd5fbf 100644 --- a/include/configs/dragonboard410c.h +++ b/include/configs/dragonboard410c.h @@ -126,10 +126,10 @@ REFLASH(dragonboard/u-boot.img, 8)\ "fdt_high=0xffffffffffffffff\0" \ "initrd_high=0xffffffffffffffff\0" \ "linux_image=Image\0" \
- "linux_addr=0x81000000\0"\
- "fdt_image=apq8016-sbc.dtb\0" \
- "fdt_addr=0x83000000\0"\
- "ramdisk_addr=0x84000000\0"\
- "kernel_addr_r=0x81000000\0"\
- "fdtfile=apq8016-sbc.dtb\0" \
- "fdt_addr_r=0x83000000\0"\
- "ramdisk_addr_r=0x84000000\0"\ BOOTENV
#define CONFIG_ENV_IS_NOWHERE
Forgot about investigating scriptaddr you mentioned. We can either add it in a v2 if there's something else, or you can follow up after this.
EFI was still not working for me and I did not yet test boot.scr.
Regards, Andreas

On Wed, Apr 13, 2016 at 02:16:22PM +0200, Andreas Färber wrote:
Some variables for the distro boot commands were missing, using some custom name instead. Rename them.
Cc: Mateusz Kulikowski mateusz.kulikowski@gmail.com Signed-off-by: Andreas Färber afaerber@suse.de
Applied to u-boot/master, thanks!
participants (2)
-
Andreas Färber
-
Tom Rini