diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-08-27 22:25:53 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-09-09 07:48:03 -0600 |
commit | 71d7971facdba763c220ca2cfdbd181e907eae89 (patch) | |
tree | d06b53cb415a29e51bc381d42dd485ad4b34054c /include/configs | |
parent | d8f79afa030a19e12b8effcae0e8247e271da60e (diff) | |
download | talos-obmc-uboot-71d7971facdba763c220ca2cfdbd181e907eae89.tar.gz talos-obmc-uboot-71d7971facdba763c220ca2cfdbd181e907eae89.zip |
dm: test: Add a new test case for dm_test_eth_rotate
Add one more ethernet device node in the sandbox test device tree,
with name 'sbe5'. This is to support a new test case for testing
network device rotation.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/sandbox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 6965d921d9..32e3a9ba55 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -187,7 +187,8 @@ #define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \ "eth1addr=00:00:11:22:33:45\0" \ - "eth5addr=00:00:11:22:33:46\0" \ + "eth3addr=00:00:11:22:33:46\0" \ + "eth5addr=00:00:11:22:33:47\0" \ "ipaddr=1.2.3.4\0" #define MEM_LAYOUT_ENV_SETTINGS \ |