Skip to content

Commit d929a69

Browse files
authored
Merge branch 'master' into tgamblin/gpio_driver_binding
2 parents f0407d3 + 83d306c commit d929a69

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

labgrid/remote/client.py

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,9 +1703,23 @@ def main():
17031703
type=str,
17041704
help="coordinator HOST[:PORT] (default: value from env variable LG_COORDINATOR, otherwise 127.0.0.1:20408)",
17051705
)
1706-
parser.add_argument("-c", "--config", type=str, default=os.environ.get("LG_ENV"), help="config file")
1707-
parser.add_argument("-p", "--place", type=str, default=place, help="place name/alias")
1708-
parser.add_argument("-s", "--state", type=str, default=state, help="strategy state to switch into before command")
1706+
parser.add_argument(
1707+
"-c",
1708+
"--config",
1709+
type=str,
1710+
default=os.environ.get("LG_ENV"),
1711+
help="env config file (default: value from env variable LG_ENV)",
1712+
)
1713+
parser.add_argument(
1714+
"-p", "--place", type=str, default=place, help="place name/alias (default: value from env variable LG_PLACE)"
1715+
)
1716+
parser.add_argument(
1717+
"-s",
1718+
"--state",
1719+
type=str,
1720+
default=state,
1721+
help="strategy state to switch into before command (default: value from env varibale LG_STATE)",
1722+
)
17091723
parser.add_argument(
17101724
"-i",
17111725
"--initial-state",

labgrid/resource/udev.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,7 @@ def filter_match(self, device):
747747
("1366", "0105"), # SEGGER J-Link
748748
("1366", "1015"), # SEGGER J-Link
749749
("1366", "1051"), # SEGGER J-Link
750+
("1366", "1061"), # SEGGER J-Link
750751
]:
751752
return False
752753

0 commit comments

Comments
 (0)