diff --git a/wlauto/devices/android/generic/__init__.py b/wlauto/devices/android/generic/__init__.py index 51a43948..a4cd74ea 100644 --- a/wlauto/devices/android/generic/__init__.py +++ b/wlauto/devices/android/generic/__init__.py @@ -20,11 +20,12 @@ from wlauto import AndroidDevice, Parameter class GenericDevice(AndroidDevice): name = 'generic_android' description = """ - Generic Android device. Use this if you do not have a device file for - your device. + A generic Android device interface. Use this if you do not have an interface + for your device. - This implements the minimum functionality that should be supported by - all android devices. + This should allow basic WA functionality on most Android devices using adb over + USB. Some additional configuration may be required for some WA extensions + (e.g. configuring ``core_names`` and ``core_clusters``). """ diff --git a/wlauto/devices/linux/generic/__init__.py b/wlauto/devices/linux/generic/__init__.py index d6fb67a5..dce86c71 100644 --- a/wlauto/devices/linux/generic/__init__.py +++ b/wlauto/devices/linux/generic/__init__.py @@ -20,11 +20,12 @@ from wlauto import LinuxDevice, Parameter class GenericDevice(LinuxDevice): name = 'generic_linux' description = """ - Generic Linux device. Use this if you do not have a device file for - your device. + A generic Linux device interface. Use this if you do not have an interface + for your device. - This implements the minimum functionality that should be supported by - all Linux devices. + This should allow basic WA functionality on most Linux devices with SSH access + configured. Some additional configuration may be required for some WA extensions + (e.g. configuring ``core_names`` and ``core_clusters``). """