diff options
author | Ian Ray <ian.ray@ge.com> | 2019-01-31 16:21:22 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-04-13 20:30:08 +0200 |
commit | d46a18a8cca04e9e047c3e6d4635c2ca74415ea4 (patch) | |
tree | 055c379f3ae91dfabdc656bf437104b12461cdc4 /include/configs/mx53ppd.h | |
parent | e75a7d099e9e9dac2b3296b422a5ea1a68af8c4e (diff) | |
download | u-boot-d46a18a8cca04e9e047c3e6d4635c2ca74415ea4.tar.gz u-boot-d46a18a8cca04e9e047c3e6d4635c2ca74415ea4.tar.xz u-boot-d46a18a8cca04e9e047c3e6d4635c2ca74415ea4.zip |
mx53ppd: fix unsupported set command
Fix the NFS commands which used `set' to instead use `setenv'.
Signed-off-by: Ian Ray <ian.ray@ge.com>
Diffstat (limited to 'include/configs/mx53ppd.h')
-rw-r--r-- | include/configs/mx53ppd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/mx53ppd.h b/include/configs/mx53ppd.h index db6cd650f1..5b97fe9843 100644 --- a/include/configs/mx53ppd.h +++ b/include/configs/mx53ppd.h @@ -85,10 +85,10 @@ "nfsroot=/opt/springdale/rd\0" \ "bootargs_nfs=setenv bootargs ${bootargs} root=/dev/nfs " \ "${kern_ipconf} nfsroot=${nfsserver}:${nfsroot},v3,tcp rw\0" \ - "choose_ip=if test $use_dhcp = 1; then set kern_ipconf ip=dhcp; " \ - "set getcmd dhcp; else set kern_ipconf " \ + "choose_ip=if test $use_dhcp = 1; then setenv kern_ipconf ip=dhcp; " \ + "setenv getcmd dhcp; else setenv kern_ipconf " \ "ip=${ipaddr}:${nfsserver}:${gatewayip}:${netmask}::eth0:off; " \ - "set getcmd tftp; fi\0" \ + "setenv getcmd tftp; fi\0" \ "nfs=run choose_ip setargs bootargs_nfs; ${getcmd} ${loadaddr} " \ "${nfsserver}:${image}; bootm ${loadaddr}\0" \ |