aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rwxr-xr-xlavalab-gen.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index d72b6c0..5194b67 100644
--- a/README.md
+++ b/README.md
@@ -220,6 +220,7 @@ lab-slave-XX: The name of the slave (where XX is a number)
boardlist:
devicename: Each board must be named by their device-type as "device-type-XX" (where XX is a number)
type: the LAVA device-type of this device
+ uboot_ipaddr: (optional) a static IP to set in uboot
macaddr: (Optional) the MAC address to set in uboot
# One of uart or connection_command must be choosen
uart:
diff --git a/lavalab-gen.py b/lavalab-gen.py
index 6e9a547..d01ccb1 100755
--- a/lavalab-gen.py
+++ b/lavalab-gen.py
@@ -117,6 +117,8 @@ def main():
elif "connection_command" in b:
connection_command = b["connection_command"]
device_line += template_device_connection_command.substitute(connection_command=connection_command)
+ if "uboot_ipaddr" in b:
+ device_line += "{%% set uboot_ipaddr_cmd = 'setenv ipaddr %s' %%}\n" % b["uboot_ipaddr"]
if "macaddr" in b:
device_line += '{% set uboot_set_mac = true %}'
device_line += "{%% set uboot_mac_addr = '%s' %%}" % b["macaddr"]