From 84e14c21022dd03d4e6a9a6923f5d7c8a3efa4ca Mon Sep 17 00:00:00 2001 From: Kelvin Zhang Date: Wed, 6 Dec 2023 13:00:46 -0800 Subject: [PATCH] Update create_brick_ota doc Serial number need to be a | separated list per bootable/recovery/install/install.cpp Test: th Change-Id: I09d8d615fde4206ebe6c07a7314ff8f7a394f10c --- tools/releasetools/create_brick_ota.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/releasetools/create_brick_ota.py b/tools/releasetools/create_brick_ota.py index 44f0a95cc3..f290323c43 100644 --- a/tools/releasetools/create_brick_ota.py +++ b/tools/releasetools/create_brick_ota.py @@ -59,9 +59,9 @@ def main(argv): parser.add_argument('otafile', metavar='PAYLOAD', type=str, help='The output OTA package file.') parser.add_argument('--product', type=str, - help='The product name of the device, for example, bramble, redfin. This can be a comma separated list.', required=True) + help='The product name of the device, for example, bramble, redfin.', required=True) parser.add_argument('--serialno', type=str, - help='The serial number of devices that are allowed to install this OTA package. This can be a comma separated list.') + help='The serial number of devices that are allowed to install this OTA package. This can be a | separated list.') parser.add_argument('--extra_wipe_partitions', type=str, help='Additional partitions on device which should be wiped.') parser.add_argument('-v', action="store_true",