aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkhilman <khilman@users.noreply.github.com>2018-02-14 09:32:02 -0800
committerGitHub <noreply@github.com>2018-02-14 09:32:02 -0800
commitaabc1b6c55a82f3f9270fd1a124a2ffa76e3e69e (patch)
tree826939bb4da04d198cfbbffc708c15abad4be72c
parent7af6b055f0961e6fca7dc628cee3cd0a8d034d07 (diff)
parent589fab595ad96d75d8a2bfba051b608c5f0b438b (diff)
Merge pull request #22 from montjoie/hexid
Support python3, fix handling of hex values for vendor/product IDs.
-rw-r--r--README.md4
-rw-r--r--boards.yaml.example24
-rwxr-xr-xlavalab-gen.py38
3 files changed, 36 insertions, 30 deletions
diff --git a/README.md b/README.md
index e54b729..a3c297c 100644
--- a/README.md
+++ b/README.md
@@ -223,8 +223,8 @@ lab-slave-XX: The name of the slave (where XX is a number)
macaddr: (Optional) the MAC address to set in uboot
# One of uart or connection_command must be choosen
uart:
- idvendor: The VID of the UART
- idproduct: the PID of the UART
+ idvendor: The VID of the UART (Formated as 0xXXXX)
+ idproduct: the PID of the UART (Formated as 0xXXXX)
serial: The serial number in case of FTDI uart
devpath: the UDEV devpath to this uart for UART without serial number
connection_command: A command to be ran for getting a serial console
diff --git a/boards.yaml.example b/boards.yaml.example
index e989af9..1e485a4 100644
--- a/boards.yaml.example
+++ b/boards.yaml.example
@@ -10,8 +10,8 @@ lab-slave-0:
power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 1
power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 1
uart:
- idvendor: "0403"
- idproduct: 6001
+ idvendor: 0x0403
+ idproduct: 0x6001
serial: FT9QQZTA
am335x-boneblack-01:
type: beaglebone-black
@@ -20,8 +20,8 @@ lab-slave-0:
power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 2
power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 2
uart:
- idvendor: "0403"
- idproduct: 6001
+ idvendor: 0x0403
+ idproduct: 0x6001
serial: FT9QR1A9
meson-gxl-s905x-libretech-cc-01:
type: meson-gxl-s905x-libretech-cc
@@ -30,8 +30,8 @@ lab-slave-0:
power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 3
power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 3
uart:
- idvendor: 067b
- idproduct: 2303
+ idvendor: 0x067b
+ idproduct: 0x2303
devpath: 1.1.4
macaddr: "00:FA:E0:DE:AD:78"
dragonboard-410c-01:
@@ -41,8 +41,8 @@ lab-slave-0:
power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 4
power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 4
uart:
- idvendor: "0403"
- idproduct: 6001
+ idvendor: 0x403
+ idproduct: 0x6001
serial: FT9R7VDB
r8a7796-m3ulcb-01:
type: r8a7796-m3ulcb
@@ -51,8 +51,8 @@ lab-slave-0:
power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 5
power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 5
uart:
- idvendor: "0403"
- idproduct: 6001
+ idvendor: 0x0403
+ idproduct: 0x6001
serial: AK04WW0Q
imx6q-sabrelite-01:
type: imx6q-sabrelite
@@ -61,6 +61,6 @@ lab-slave-0:
power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_off 6
power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 switch_on 6
uart:
- idvendor: "0403"
- idproduct: 6015
+ idvendor: 0x0403
+ idproduct: 0x6015
serial: DAZ0KEUH
diff --git a/lavalab-gen.py b/lavalab-gen.py
index 6264179..f151aa1 100755
--- a/lavalab-gen.py
+++ b/lavalab-gen.py
@@ -66,10 +66,10 @@ def main(args):
udev_line =""
lab = labs[lab_name]
use_kvm = False
- if lab.has_key("host_has_cpuflag_kvm"):
+ if "host_has_cpuflag_kvm" in lab:
use_kvm = lab["host_has_cpuflag_kvm"]
if use_kvm:
- if dockcomp["services"][lab_name].has_key("devices"):
+ if "devices" in dockcomp["services"][lab_name]:
dc_devices = dockcomp["services"][lab_name]["devices"]
else:
dockcomp["services"][lab_name]["devices"] = []
@@ -82,24 +82,30 @@ def main(args):
devicetype = b["type"]
device_line = template_device.substitute(devicetype=devicetype)
- if b.has_key("pdu_generic"):
+ if "pdu_generic" in b:
hard_reset_command = b["pdu_generic"]["hard_reset_command"]
power_off_command = b["pdu_generic"]["power_off_command"]
power_on_command = b["pdu_generic"]["power_on_command"]
device_line += template_device_pdu_generic.substitute(hard_reset_command=hard_reset_command, power_off_command=power_off_command, power_on_command=power_on_command)
- if b.has_key("uart"):
+ if "uart" in b:
uart = b["uart"]
baud = b["uart"].get("baud", baud_default)
idvendor = b["uart"]["idvendor"]
idproduct = b["uart"]["idproduct"]
+ if type(idproduct) == str:
+ print("Please put hexadecimal IDs for product %s (like 0x%s)" % (board_name,idproduct))
+ sys.exit(1)
+ if type(idvendor) == str:
+ print("Please put hexadecimal IDs for vendor %s (like 0x%s)" % (board_name,idvendor))
+ sys.exit(1)
line = template_conmux.substitute(board=board_name, baud=baud)
- if uart.has_key("serial"):
+ if "serial" in uart:
serial = b["uart"]["serial"]
- udev_line += template_udev_serial.substitute(board=board_name, serial=serial, idvendor=idvendor, idproduct=idproduct)
+ udev_line += template_udev_serial.substitute(board=board_name, serial=serial, idvendor="%04x" % idvendor, idproduct="%04x" % idproduct)
else:
devpath = b["uart"]["devpath"]
- udev_line += template_udev_devpath.substitute(board=board_name, devpath=devpath, idvendor=idvendor, idproduct=idproduct)
- if dockcomp["services"][lab_name].has_key("devices"):
+ udev_line += template_udev_devpath.substitute(board=board_name, devpath=devpath, idvendor="%04x" % idvendor, idproduct="%04x" % idproduct)
+ if "devices" in dockcomp["services"][lab_name]:
dc_devices = dockcomp["services"][lab_name]["devices"]
else:
dockcomp["services"][lab_name]["devices"] = []
@@ -109,13 +115,13 @@ def main(args):
fp.write(line)
fp.close()
device_line += template_device_conmux.substitute(board=board_name)
- elif b.has_key("connection_command"):
+ elif "connection_command" in b:
connection_command = b["connection_command"]
device_line += template_device_connection_command.substitute(connection_command=connection_command)
- if b.has_key("macaddr"):
+ if "macaddr" in b:
device_line += '{% set uboot_set_mac = true %}'
device_line += "{%% set uboot_mac_addr = '%s' %%}" % b["macaddr"]
- if b.has_key("fastboot_serial_number"):
+ if "fastboot_serial_number" in b:
fserial = b["fastboot_serial_number"]
device_line += "{%% set fastboot_serial_number = '%s' %%}" % fserial
@@ -136,7 +142,7 @@ def main(args):
fp = open("udev/99-lavalab-udev-%s.rules" % lab_name, "w")
fp.write(udev_line)
fp.close()
- if lab.has_key("dispatcher_ip"):
+ if "dispatcher_ip" in lab:
fp = open("lava-master/slaves/%s.yaml" % lab_name, "w")
fp.write("dispatcher_ip: %s" % lab["dispatcher_ip"])
fp.close()
@@ -157,15 +163,15 @@ def main(args):
ftok = open("lava-master/users/%s" % username, "w")
token = user["token"]
ftok.write("TOKEN=" + token + "\n")
- if user.has_key("password"):
+ if "password" in user:
password = user["password"]
ftok.write("PASSWORD=" + password + "\n")
# libyaml convert yes/no to true/false...
- if user.has_key("staff"):
+ if "staff" in user:
value = user["staff"]
if value is True:
ftok.write("STAFF=1\n")
- if user.has_key("superuser"):
+ if "superuser" in user:
value = user["superuser"]
if value is True:
ftok.write("SUPERUSER=1\n")
@@ -181,7 +187,7 @@ def main(args):
description = token["description"]
ftok.write("DESCRIPTION=" + description)
ftok.close()
- with file('docker-compose.yml', 'w') as f:
+ with open('docker-compose.yml', 'w') as f:
yaml.dump(dockcomp, f)
if __name__ == "__main__":