diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-28 10:36:07 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-28 10:36:07 +0000 |
commit | ffd6b859368b38fc90963c72c3c86916bcdd086a (patch) | |
tree | a2b163f9d075fb007a48f22e53b48722a7fce56b /meta/packages/oh/qemu-config.bb | |
parent | bfb887efc05bdea0fc33a0cbe6d0b69404e0ff5d (diff) | |
download | poky-ffd6b859368b38fc90963c72c3c86916bcdd086a.tar.gz |
qemu-config: this recipe replace qemu-distcc and provide NFS exports file
- / dir is exported R/W for any host
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1397 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/oh/qemu-config.bb')
-rw-r--r-- | meta/packages/oh/qemu-config.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/packages/oh/qemu-config.bb b/meta/packages/oh/qemu-config.bb new file mode 100644 index 0000000000..a042725fbe --- /dev/null +++ b/meta/packages/oh/qemu-config.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" | ||
2 | LICENSE = "GPL" | ||
3 | RDEPENDS = "distcc" | ||
4 | PR = "r1" | ||
5 | |||
6 | SRC_URI = "file://distcc.sh \ | ||
7 | file://exports" | ||
8 | |||
9 | S = "${WORKDIR}" | ||
10 | |||
11 | COMPATIBLE_MACHINE = "(qemuarm|qemux86)" | ||
12 | PACKAGE_ARCH = "all" | ||
13 | |||
14 | do_install() { | ||
15 | install -d ${D}${sysconfdir}/profile.d | ||
16 | |||
17 | install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/ | ||
18 | install -m 0644 exports ${D}${sysconfdir} | ||
19 | } | ||