1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-05 10:21:16 +01:00

target/descriptor: Support adb_port parameter

devlib/AdbConnection class supports customizing ADB port number. Enable
that feature in WA side.

Signed-off-by: Metin Kaya <metin.kaya@arm.com>
This commit is contained in:
Metin Kaya 2024-07-04 08:53:15 +01:00 committed by Marc Bonnici
parent 6fc5340f2f
commit 412a785068
2 changed files with 6 additions and 0 deletions

View File

@ -373,6 +373,7 @@ below:
device: generic_android
device_config:
adb_server: null
adb_port: null
big_core: null
core_clusters: null
core_names: null

View File

@ -308,6 +308,11 @@ CONNECTION_PARAMS = {
description="""
ADB server to connect to.
"""),
Parameter(
'adb_port', kind=int,
description="""
ADB port to connect to.
"""),
Parameter(
'poll_transfers', kind=bool,
default=True,