Revert "Upgrade buildroot to 2026.02.0"

This commit is contained in:
Mattias Walström
2026-03-04 19:47:11 +01:00
committed by GitHub
parent 0bedde52d3
commit 082bcd1712
49 changed files with 524 additions and 100 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ with infamy.Test() as test:
tgtssh = env.attach("target", "mgmt", "ssh")
with test.step("Verify the presence of a watchdog device"):
wctl = tgtssh.run(["watchdogctl", "-j"], stdout=subprocess.PIPE)
wctl = tgtssh.run(["watchdogctl"], stdout=subprocess.PIPE)
conf = json.loads(wctl.stdout)
dogs = [ dog for dog in conf.get("device", []) if dog.get("name", "") == "/dev/watchdog" ]