Source code for labgrid.protocol.linuxbootprotocol

import abc

import attr


[docs]class LinuxBootProtocol(abc.ABC): @abc.abstractmethod
[docs] def boot(self, name: str): raise NotImplementedError
@abc.abstractmethod
[docs] def await_boot(self): raise NotImplementedError