1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/env python3
"""Power-cycle a target until the /dev/nand0 device is missing."""
import sys
import logging
from labgrid import Environment
from labgrid.logging import basicConfig, StepLogger
from labgrid.strategy.bareboxstrategy import Status
# enable info logging
basicConfig(level=logging.INFO)
# log labgrid steps
StepLogger.start()
def run_once(target):
s = target.get_driver("BareboxStrategy")
s.status = Status.unknown # force a power-cycle
s.transition("barebox")
cmd = target["CommandProtocol"]
cmd.run_check("test -e /dev/nand0")
target.deactivate(cmd)
env = Environment(sys.argv[1])
target = env.get_target("main")
while True:
run_once(target)
|