Merge "releasetools: Remove the deprecated flag --board_config."
am: 224b5f9926
Change-Id: I35da7f5849acd9dce0ae609613a3b865b06ee0b9
This commit is contained in:
commit
076dd6aa85
|
@ -21,9 +21,6 @@ a full OTA is produced.
|
||||||
|
|
||||||
Usage: ota_from_target_files [flags] input_target_files output_ota_package
|
Usage: ota_from_target_files [flags] input_target_files output_ota_package
|
||||||
|
|
||||||
--board_config <file>
|
|
||||||
Deprecated.
|
|
||||||
|
|
||||||
-k (--package_key) <key> Key to use to sign the package (default is
|
-k (--package_key) <key> Key to use to sign the package (default is
|
||||||
the value of default_system_dev_certificate from the input
|
the value of default_system_dev_certificate from the input
|
||||||
target-files's META/misc_info.txt, or
|
target-files's META/misc_info.txt, or
|
||||||
|
@ -1290,9 +1287,7 @@ def WriteABOTAPackageWithBrilloScript(target_file, output_file,
|
||||||
def main(argv):
|
def main(argv):
|
||||||
|
|
||||||
def option_handler(o, a):
|
def option_handler(o, a):
|
||||||
if o == "--board_config":
|
if o in ("-k", "--package_key"):
|
||||||
pass # deprecated
|
|
||||||
elif o in ("-k", "--package_key"):
|
|
||||||
OPTIONS.package_key = a
|
OPTIONS.package_key = a
|
||||||
elif o in ("-i", "--incremental_from"):
|
elif o in ("-i", "--incremental_from"):
|
||||||
OPTIONS.incremental_source = a
|
OPTIONS.incremental_source = a
|
||||||
|
@ -1354,7 +1349,6 @@ def main(argv):
|
||||||
args = common.ParseOptions(argv, __doc__,
|
args = common.ParseOptions(argv, __doc__,
|
||||||
extra_opts="b:k:i:d:we:t:2o:",
|
extra_opts="b:k:i:d:we:t:2o:",
|
||||||
extra_long_opts=[
|
extra_long_opts=[
|
||||||
"board_config=",
|
|
||||||
"package_key=",
|
"package_key=",
|
||||||
"incremental_from=",
|
"incremental_from=",
|
||||||
"full_radio",
|
"full_radio",
|
||||||
|
|
Loading…
Reference in New Issue