1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-04-20 09:40:50 +01:00

Updating documentation for generic device interfaces

This commit is contained in:
Sergei Trofimov 2015-06-02 12:58:04 +01:00
parent ebe6202e22
commit 8f972322a5
2 changed files with 10 additions and 8 deletions

View File

@ -20,11 +20,12 @@ from wlauto import AndroidDevice, Parameter
class GenericDevice(AndroidDevice): class GenericDevice(AndroidDevice):
name = 'generic_android' name = 'generic_android'
description = """ description = """
Generic Android device. Use this if you do not have a device file for A generic Android device interface. Use this if you do not have an interface
your device. for your device.
This implements the minimum functionality that should be supported by This should allow basic WA functionality on most Android devices using adb over
all android devices. USB. Some additional configuration may be required for some WA extensions
(e.g. configuring ``core_names`` and ``core_clusters``).
""" """

View File

@ -20,11 +20,12 @@ from wlauto import LinuxDevice, Parameter
class GenericDevice(LinuxDevice): class GenericDevice(LinuxDevice):
name = 'generic_linux' name = 'generic_linux'
description = """ description = """
Generic Linux device. Use this if you do not have a device file for A generic Linux device interface. Use this if you do not have an interface
your device. for your device.
This implements the minimum functionality that should be supported by This should allow basic WA functionality on most Linux devices with SSH access
all Linux devices. configured. Some additional configuration may be required for some WA extensions
(e.g. configuring ``core_names`` and ``core_clusters``).
""" """