issue:
eigend hey pico 1 load
pico 1 not found (or similar :))
fix:
2 bugs in find_setup() in pisession/agentd.py
a) return None, incorrect alignment, so terminates for loop early
b) path join, should be release_dir, not factory_setups
last few lines should read:
...
for s in factory_setups:
if s == srcname:
return os.path.join(release_dir,s)
s2 = upgrade.split_setup(s)
if s2[1] == srcname:
return os.path.join(release_dir,s)
return None
ive made these changes to my version, and works now...