[oe-commits] [openembedded-core] 22/33: wic: improve error message

git at git.openembedded.org git at git.openembedded.org
Wed Apr 5 11:39:52 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit f0425c0a0f1c98f65bf61fd9aa7e023ed41a35fa
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Thu Mar 30 16:37:36 2017 +0800

    wic: improve error message
    
    When using `wic create mkefidisk -e core-image-minimal', the following
    error message appeared.
    
      Please bake it with 'bitbake parted-native' and try again.
    
    However, following this command doesn't do any help. The same problem
    still appeared.
    
    The problem is that when we 'bitbake parted-native', it doesn't have
    anything to do with core-image-minimal. And the required tool 'parted'
    is not under core-image-minimal's recipe-sysroot-native directory.
    
    Improve the error message so that following it could get things done.
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 scripts/lib/wic/utils/misc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/wic/utils/misc.py b/scripts/lib/wic/utils/misc.py
index 307779a..4609984 100644
--- a/scripts/lib/wic/utils/misc.py
+++ b/scripts/lib/wic/utils/misc.py
@@ -131,7 +131,7 @@ def exec_native_cmd(cmd_and_args, native_sysroot, pseudo=""):
               "was not found (see details above).\n\n" % prog
         recipe = NATIVE_RECIPES.get(prog)
         if recipe:
-            msg += "Please bake it with 'bitbake %s-native' "\
+            msg += "Please make sure wic-tools have %s-native in its DEPENDS, bake it with 'bitbake wic-tools' "\
                    "and try again.\n" % recipe
         else:
             msg += "Wic failed to find a recipe to build native %s. Please "\

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list