diff --git a/tools/releasetools/ota_from_target_files.py b/tools/releasetools/ota_from_target_files.py index 844e2adfd..63af8b0b1 100755 --- a/tools/releasetools/ota_from_target_files.py +++ b/tools/releasetools/ota_from_target_files.py @@ -21,9 +21,6 @@ a full OTA is produced. Usage: ota_from_target_files [flags] input_target_files output_ota_package - --board_config - Deprecated. - -k (--package_key) Key to use to sign the package (default is the value of default_system_dev_certificate from the input target-files's META/misc_info.txt, or @@ -1295,9 +1292,7 @@ def WriteABOTAPackageWithBrilloScript(target_file, output_file, def main(argv): def option_handler(o, a): - if o == "--board_config": - pass # deprecated - elif o in ("-k", "--package_key"): + if o in ("-k", "--package_key"): OPTIONS.package_key = a elif o in ("-i", "--incremental_from"): OPTIONS.incremental_source = a @@ -1359,7 +1354,6 @@ def main(argv): args = common.ParseOptions(argv, __doc__, extra_opts="b:k:i:d:we:t:2o:", extra_long_opts=[ - "board_config=", "package_key=", "incremental_from=", "full_radio",