Skip to content

Commit

Permalink
Merge pull request #188 from canonical/hwe-bootstrap
Browse files Browse the repository at this point in the history
Add: iotscript connector with dedicated code owner
  • Loading branch information
plars authored Jan 12, 2024
2 parents b86ef6d + 0692429 commit cdcd67e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# OEM Software Engineering
device-connectors/src/testflinger_device_connectors/devices/iotscript @canonical/oem-swe-iot
1 change: 1 addition & 0 deletions device-connectors/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ testing on other types of devices.
- noprovision - devices which need to run tests, but can't be provisioned (yet)
- oemrecovery - anything (such as core fde images) that can't be provisioned but can run a set of commands to recover back to the initial state
- oemscript - uses a script that supports some oem images and allows injection of an iso to the recovery partition to install that image
- iotscript - IoT devices which require a Zapper for HW manipulation and OEM-specific actions to get provisioned (UUU, seed-override, ...)


Exit Status
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""OEM IoT provisioner support code."""

from testflinger_device_connectors.devices import DefaultDevice

device_name = "iotscript"


class DeviceConnector(DefaultDevice):
def provision(self, args):
pass

0 comments on commit cdcd67e

Please sign in to comment.