meta-netboot/README: Fix typo when passing commands to u-boot 90/24790/2
authorMarius Vlad <marius.vlad@collabora.com>
Thu, 18 Jun 2020 19:00:27 +0000 (22:00 +0300)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Fri, 19 Jun 2020 14:09:10 +0000 (14:09 +0000)
README refers to some raddr and rfile (the initrd address
and the file to load). Copy-pasta them into u-boot would
boot correctly.

Bug-AGL: SPEC-3439

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I09b4cadd59be4a40371f35d71708cd59c38bc7f4
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/24790
Tested-by: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ci-image-build: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ci-image-boot-test: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
meta-netboot/README

index dc545b2..7efa226 100644 (file)
@@ -66,7 +66,7 @@ setenv 'bootkfile' 'Image'
 setenv 'bootkload_net' 'tftp ${bootkaddr} h3ulcb/${bootkfile}'
 setenv 'bootiaddr' '0x5C3F9520'
 setenv 'bootifile' 'initramfs-netboot-image-h3ulcb.ext4.gz'
-setenv 'bootiload_net' 'tftp ${bootraddr} h3ulcb/${bootrfile}'
+setenv 'bootiload_net' 'tftp ${bootiaddr} h3ulcb/${bootifile}'
 setenv 'load_net' 'run bootkload_net; run bootdload_net; run bootiload_net; setenv initrd_size ${filesize}'
 
 setenv 'bootcmd' 'setenv bootargs ${bootargs_console} ${bootargs_video} ${bootargs_root} ${bootargs_extra} nbd.server=${serverip}; run load_net; booti ${bootkaddr} ${bootiaddr}:${initrd_size} ${bootdaddr}'