diff options
| -rwxr-xr-x | bitbake/bin/bbimage | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/bin/bbimage b/bitbake/bin/bbimage index fdc417617b..96b7dca323 100755 --- a/bitbake/bin/bbimage +++ b/bitbake/bin/bbimage | |||
| @@ -79,6 +79,11 @@ if cfg_bb is None: | |||
| 79 | fatal("Unable to open/parse %s" % os.path.join('conf', 'bitbake.conf')) | 79 | fatal("Unable to open/parse %s" % os.path.join('conf', 'bitbake.conf')) |
| 80 | usage(1) | 80 | usage(1) |
| 81 | 81 | ||
| 82 | # Handle any INHERITs and inherit the base class | ||
| 83 | inherits = ["base"] + (bb.data.getVar('INHERIT', cfg_bb, True ) or "").split() | ||
| 84 | for inherit in inherits: | ||
| 85 | cfg_bb = bb.parse.handle(os.path.join('classes', '%s.bbclass' % inherit), cfg_bb, True ) | ||
| 86 | |||
| 82 | rootfs = None | 87 | rootfs = None |
| 83 | extra_files = [] | 88 | extra_files = [] |
| 84 | 89 | ||
