diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-10-14 21:40:02 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-11-20 19:14:22 -0700 |
commit | 6c6260ecfcc44ad5d609966a756e995746578b31 (patch) | |
tree | ee88ee276cc294a20e92826c7ee2e60684b838c0 /board/sandbox | |
parent | 9190a3eb8010cdfbcd56905b784c5a21ca90914a (diff) | |
download | u-boot-6c6260ecfcc44ad5d609966a756e995746578b31.tar.gz u-boot-6c6260ecfcc44ad5d609966a756e995746578b31.tar.bz2 u-boot-6c6260ecfcc44ad5d609966a756e995746578b31.zip |
sandbox: README: setting environment variables
The command to set environment variables is setenv.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/sandbox')
-rw-r--r-- | board/sandbox/README.sandbox | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/board/sandbox/README.sandbox b/board/sandbox/README.sandbox index a28fc9f36c..ee4421801b 100644 --- a/board/sandbox/README.sandbox +++ b/board/sandbox/README.sandbox @@ -247,25 +247,25 @@ sudo /path/to/u-boot -D DHCP .... -set autoload no -set ethact eth1 +setenv autoload no +setenv ethact eth1 dhcp PING .... -set autoload no -set ethact eth1 +setenv autoload no +setenv ethact eth1 dhcp ping $gatewayip TFTP .... -set autoload no -set ethact eth1 +setenv autoload no +setenv ethact eth1 dhcp -set serverip WWW.XXX.YYY.ZZZ +setenv serverip WWW.XXX.YYY.ZZZ tftpboot u-boot.bin The bridge also supports (to a lesser extent) the localhost interface, 'lo'. @@ -287,7 +287,7 @@ operation being tested on the lo interface. TFTP .... -set ethact eth5 +setenv ethact eth5 tftpboot u-boot.bin |