I would like to use lava-dispatch fot test this device.
I Have made wand.con end wand01.con.
You can see tham...
To make wand.conf I was started from panda.conf making a small change
#client_type = bootloader
client_type = master !!! IS THIS THE BEST CHOISE???
I would like to test a OE make file system for that I Have used:
wand3.json
that is configured with dummy_deploy.



class cmd_dummy_deploy(BaseAction):

    parameters_schema = {
        'type': 'object',
        'properties': {
            'target_type': {'type': 'string', 'enum': ['ubuntu', 'oe', 'android', 'fedora']},
        },
        'additionalProperties': False,
    }

    def run(self, target_type):
        print("deploy.py::cmd_dummy_deploy::141::run-end")
        device = self.client.target_device
        #device.boot_master_image()
        device.deployment_data = device.target_map[target_type]
        print("deploy.py::cmd_dummy_deploy::141::run-end")


In deploy.py...

The problem I have is that In any case a soft reset of the board is made.
My question  is: Is may configuration correct??

Best Regards
Novello G.