diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-11-14 22:29:46 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2006-11-14 22:29:46 +0000 |
commit | 0b152ed05c0cd22f440c00e44357b95d470ccbf0 (patch) | |
tree | c305fe962c0ecc7ef7145ce71f5bc465b3356a8a /classes/base.bbclass | |
parent | d6aa197a5f26cad7dd38b19aa6cd017898944f40 (diff) |
site infrastructure changes: Allow more than one file per target so common files can be created. Add a new class to handle this. Based on the work of Jamie Lenehan, with changes from me. This commit creates a common x86 file and the arm configs are merged but much work still remains.
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r-- | classes/base.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index f4a0076f19..f3564bf285 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -694,6 +694,7 @@ python __anonymous () { pn = bb.data.getVar('PN', d, 1) + # OBSOLETE in bitbake 1.7.4 srcdate = bb.data.getVar('SRCDATE_%s' % pn, d, 1) if srcdate != None: bb.data.setVar('SRCDATE', srcdate, d) @@ -727,6 +728,10 @@ python () { # Patch handling inherit patch +# Configuration data from site files +# Move to autotools.bbclass? +inherit siteinfo + EXPORT_FUNCTIONS do_clean do_mrproper do_fetch do_unpack do_configure do_compile do_install do_package do_populate_pkgs do_stage do_rebuild do_fetchall MIRRORS[func] = "0" |