diff options
Diffstat (limited to 'meta/classes/singlemachine.bbclass')
-rw-r--r-- | meta/classes/singlemachine.bbclass | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/classes/singlemachine.bbclass b/meta/classes/singlemachine.bbclass new file mode 100644 index 0000000000..c685ce397a --- /dev/null +++ b/meta/classes/singlemachine.bbclass | |||
@@ -0,0 +1,15 @@ | |||
1 | # | ||
2 | # Emulates the old mode of OE operation where only one machine can be targetted. | ||
3 | # | ||
4 | |||
5 | MULTIMACH_TARGET_SYS = "${TARGET_SYS}" | ||
6 | MULTIMACH_HOST_SYS = "${HOST_SYS}" | ||
7 | |||
8 | STAMP = "${TMPDIR}/stamps/${PF}" | ||
9 | WORKDIR = "${TMPDIR}/work/${PF}" | ||
10 | STAGING_DIR_HOST = "${STAGING_DIR}/${HOST_SYS}" | ||
11 | STAGING_DIR_TARGET = "${STAGING_DIR}/${TARGET_SYS}" | ||
12 | PKGDATA_DIR = "${STAGING_DIR}/pkgdata" | ||
13 | STAGING_KERNEL_DIR = "${STAGING_DIR_HOST}/kernel" | ||
14 | |||
15 | |||