summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel.thompson@linaro.org>2014-12-04 16:01:32 +0000
committerYongqin Liu <yongqin.liu@linaro.org>2014-12-07 16:21:20 +0800
commit415c7f8374ecfacbc617753c2574c10692a3f1af (patch)
treecf9c9ee658895ddd11eb362848ed96a427ef73b2
parent5b792ed60f865ea241eddb57e967fca7a95fe8a9 (diff)
downloadlinaro-android-tools-415c7f8374ecfacbc617753c2574c10692a3f1af.tar.gz
linaro-create-boot-script: Fix a couple of typos
Its android not andorid. ^^ ^^ This is probably a spelling error inherited from linaro-image-tools which has been fixed at source but remains incorrect here. For sure the tool doesn't work unless the spellings are fixed. Change-Id: I6c155fd72cc8b51237eea93a578be7555c0e2558 Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
-rwxr-xr-xlinaro-create-boot-script4
1 files changed, 2 insertions, 2 deletions
diff --git a/linaro-create-boot-script b/linaro-create-boot-script
index 1d5c2b9..18003bf 100755
--- a/linaro-create-boot-script
+++ b/linaro-create-boot-script
@@ -24,7 +24,7 @@ from linaro_image_tools.media_create.android_boards import (
)
from linaro_image_tools.utils import (
additional_android_option_checks,
- andorid_hwpack_in_boot_tarball,
+ android_hwpack_in_boot_tarball,
ensure_command,
get_logger,
)
@@ -103,7 +103,7 @@ if __name__ == '__main__':
board_config = get_board_config(args.dev)
- hwpack_exists, config_file = andorid_hwpack_in_boot_tarball(nfs_entry)
+ hwpack_exists, config_file = android_hwpack_in_boot_tarball(nfs_entry)
if not args.hwpack and not hwpack_exists:
# No hwpack in the boot tarball nor provided on the command line.
logger.warning("No hwpack found in the boot tarball nor passed on "