diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2008-07-19 14:07:55 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2008-07-19 14:07:55 +0000 |
commit | cfdb9ae992bf4e218a9b8410205c46d4da749170 (patch) | |
tree | f6aedcd7e1bbb345695c832c2c9f2c3c672052de /classes/singlemachine.bbclass | |
parent | 73d44fbb08742d10c1cd1a7ce07a4a699465c4ad (diff) |
conf/bitbake.conf: Merge in multimachine making it the standard layout as discussed on the mailing list. Anyone wanting the previous layout can INHERIT the new singlemachine class
Diffstat (limited to 'classes/singlemachine.bbclass')
-rw-r--r-- | classes/singlemachine.bbclass | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/classes/singlemachine.bbclass b/classes/singlemachine.bbclass new file mode 100644 index 0000000000..e4b2b6f7b3 --- /dev/null +++ b/classes/singlemachine.bbclass @@ -0,0 +1,12 @@ +# +# Emulates the old mode of OE operation where only one machine can be targetted. +# + +MULTIMACH_TARGET_SYS = "${TARGET_SYS}" +MULTIMACH_HOST_SYS = "${HOST_SYS}" + +STAMP = "${TMPDIR}/stamps/${PF}" +WORKDIR = "${TMPDIR}/work/${PF}" +PKGDATA_DIR = "${STAGING_DIR}/pkgdata" +STAGING_KERNEL_DIR = "${STAGING_DIR_HOST}/kernel" + |