aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2017-03-24 01:55:32 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-26 13:17:03 +0100
commit131629ca6238ea0596f5dd11d659ce2ca63067a4 (patch)
tree6630279a0385702358c827c60248d20ec01c48b8
parent73b386c16b2388b5b351305bf1855c444d53481e (diff)
downloadopenembedded-core-contrib-131629ca6238ea0596f5dd11d659ce2ca63067a4.tar.gz
scripts/wic: fix typo
roofs -> rootfs Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/wic4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/wic b/scripts/wic
index 8e9c05c18c..a5f2dbfc6f 100755
--- a/scripts/wic
+++ b/scripts/wic
@@ -146,7 +146,7 @@ def wic_create_subcommand(args, usage_str):
raise WicError("Wrong number of arguments, exiting")
if options.build_rootfs and not bitbake_main:
- raise WicError("Can't build roofs as bitbake is not in the $PATH")
+ raise WicError("Can't build rootfs as bitbake is not in the $PATH")
if not options.image_name:
missed = []
@@ -223,7 +223,7 @@ def wic_create_subcommand(args, usage_str):
kernel_dir = options.kernel_dir
native_sysroot = options.native_sysroot
if rootfs_dir and not os.path.isdir(rootfs_dir):
- raise WicError("--roofs-dir (-r) not found, exiting")
+ raise WicError("--rootfs-dir (-r) not found, exiting")
if not os.path.isdir(bootimg_dir):
raise WicError("--bootimg-dir (-b) not found, exiting")
if not os.path.isdir(kernel_dir):