diff options
author | Simon Glass <sjg@chromium.org> | 2021-10-21 21:08:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-11-16 14:35:08 -0500 |
commit | 1d192d5bccc6e4b9e7112f720ccc47786694ee39 (patch) | |
tree | 30e4dde6978135d525305a704eeea038c322ecb2 /board | |
parent | 40b9e0dd0505cc505bb31823c11aad59f5abdd43 (diff) | |
download | u-boot-1d192d5bccc6e4b9e7112f720ccc47786694ee39.tar.gz |
sandbox: Update the test MAC/IP addresses
These conflict with real-word addresses. Use locally administered
MAC addresses and a suitable IPv4 address from 192.0.2.0/24
(TEST-NET-1).
Signed-off-by: Simon Glass <sjg@chromium.org>
Suggested-by: Alexander Dahl <ada@thorsis.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/sandbox/sandbox.env | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/sandbox/sandbox.env b/board/sandbox/sandbox.env index 0f8d95b8db..b4c04635a4 100644 --- a/board/sandbox/sandbox.env +++ b/board/sandbox/sandbox.env @@ -5,13 +5,13 @@ stdin+=,cros-ec-keyb,usbkbd stdout=serial,vidconsole stderr=serial,vidconsole -ethaddr=00:00:11:22:33:44 -eth2addr=00:00:11:22:33:48 -eth3addr=00:00:11:22:33:45 -eth4addr=00:00:11:22:33:48 -eth5addr=00:00:11:22:33:46 -eth6addr=00:00:11:22:33:47 -ipaddr=1.2.3.4 +ethaddr=02:00:11:22:33:44 +eth2addr=02:00:11:22:33:48 +eth3addr=02:00:11:22:33:45 +eth4addr=02:00:11:22:33:48 +eth5addr=02:00:11:22:33:46 +eth6addr=02:00:11:22:33:47 +ipaddr=192.0.2.1 /* * These are used for distro boot which is not supported. But once bootmethod |