mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
e844e5d908
This prevents some conflicts when running sandbox with -D, since the "rom" mac address will be random and won't match the environment. We still need to keep addresses for eth1 and eth6 in the environment, because dm_test_eth_rotate expects to be able to disable them by removing their envaddr variables. This can likely be fixed in a future series by adding a function to cause sandbox eth_opts callback for a particular mac to fail immediately. Signed-off-by: Sean Anderson <sean.anderson@seco.com> Reviewed-by: Simon Glass <sjg@chromium.org>
21 lines
453 B
Bash
21 lines
453 B
Bash
stdin=serial
|
|
#ifdef CONFIG_SANDBOX_SDL
|
|
stdin+=,cros-ec-keyb,usbkbd
|
|
#endif
|
|
stdout=serial,vidconsole
|
|
stderr=serial,vidconsole
|
|
|
|
ethaddr=02:00:11:22:33:44
|
|
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
|
|
* is provided these will be used again.
|
|
*/
|
|
bootm_size=0x10000000
|
|
kernel_addr_r=0x1000000
|
|
fdt_addr_r=0xc00000
|
|
ramdisk_addr_r=0x2000000
|
|
scriptaddr=0x1000
|
|
pxefile_addr_r=0x2000
|