diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/image-manifest | 2 | ||||
-rw-r--r-- | scripts/lib/devtool/menuconfig.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contrib/image-manifest b/scripts/contrib/image-manifest index 3c07a73a4e..4d65a99258 100755 --- a/scripts/contrib/image-manifest +++ b/scripts/contrib/image-manifest | |||
@@ -392,7 +392,7 @@ def export_manifest_info(args): | |||
392 | for key in rd.getVarFlags('PACKAGECONFIG').keys(): | 392 | for key in rd.getVarFlags('PACKAGECONFIG').keys(): |
393 | if key == 'doc': | 393 | if key == 'doc': |
394 | continue | 394 | continue |
395 | rvalues[pn]['packageconfig_opts'][key] = rd.getVarFlag('PACKAGECONFIG', key, True) | 395 | rvalues[pn]['packageconfig_opts'][key] = rd.getVarFlag('PACKAGECONFIG', key) |
396 | 396 | ||
397 | if config['patches'] == 'yes': | 397 | if config['patches'] == 'yes': |
398 | patches = oe.recipeutils.get_recipe_patches(rd) | 398 | patches = oe.recipeutils.get_recipe_patches(rd) |
diff --git a/scripts/lib/devtool/menuconfig.py b/scripts/lib/devtool/menuconfig.py index 95384c5333..ff9227035d 100644 --- a/scripts/lib/devtool/menuconfig.py +++ b/scripts/lib/devtool/menuconfig.py | |||
@@ -43,7 +43,7 @@ def menuconfig(args, config, basepath, workspace): | |||
43 | return 1 | 43 | return 1 |
44 | 44 | ||
45 | check_workspace_recipe(workspace, args.component) | 45 | check_workspace_recipe(workspace, args.component) |
46 | pn = rd.getVar('PN', True) | 46 | pn = rd.getVar('PN') |
47 | 47 | ||
48 | if not rd.getVarFlag('do_menuconfig','task'): | 48 | if not rd.getVarFlag('do_menuconfig','task'): |
49 | raise DevtoolError("This recipe does not support menuconfig option") | 49 | raise DevtoolError("This recipe does not support menuconfig option") |