summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-03-04 00:28:55 +0000
committerRichard Purdie <richard@openedhand.com>2008-03-04 00:28:55 +0000
commit98555dd5a0d0e5285b10490c003937e39f389d47 (patch)
treea428a0631947143835759a0774160b5a60348dc6 /bitbake/bin
parent1a59c52aec5f98c73541e9475d69cfe705bd978a (diff)
downloadpoky-98555dd5a0d0e5285b10490c003937e39f389d47.tar.gz
bitbake: Sync bbimage with upstream
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3895 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bbimage5
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
83inherits = ["base"] + (bb.data.getVar('INHERIT', cfg_bb, True ) or "").split()
84for inherit in inherits:
85 cfg_bb = bb.parse.handle(os.path.join('classes', '%s.bbclass' % inherit), cfg_bb, True )
86
82rootfs = None 87rootfs = None
83extra_files = [] 88extra_files = []
84 89