diff options
author | Richard Purdie <richard@openedhand.com> | 2008-01-30 15:36:14 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-01-30 15:36:14 +0000 |
commit | f55e6e493e881453975fb038d88fcf13474ef42f (patch) | |
tree | 026b681dc4ac1680c64b51f5c6fbccca0688bed0 /meta/packages/oh/qemu-config.bb | |
parent | 66bc1c7346edab13cec53015be35a805fb651caa (diff) | |
download | openembedded-core-f55e6e493e881453975fb038d88fcf13474ef42f.tar.gz openembedded-core-f55e6e493e881453975fb038d88fcf13474ef42f.tar.bz2 openembedded-core-f55e6e493e881453975fb038d88fcf13474ef42f.zip |
Add chroot scripts to qemu-config package
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3626 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/oh/qemu-config.bb')
-rw-r--r-- | meta/packages/oh/qemu-config.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/packages/oh/qemu-config.bb b/meta/packages/oh/qemu-config.bb index 741fb89422..3eccab99e1 100644 --- a/meta/packages/oh/qemu-config.bb +++ b/meta/packages/oh/qemu-config.bb @@ -1,13 +1,15 @@ DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" LICENSE = "GPL" RDEPENDS = "distcc task-poky-nfs-server fakeroot oprofileui-server rsync bash" -PR = "r10" +PR = "r11" SRC_URI = "file://distcc.sh \ file://anjuta-remote-run \ file://exports \ - file://shutdown.desktop \ - file://shutdown.png \ + file://shutdown.desktop \ + file://shutdown.png \ + file://poky-chroot-init \ + file://poky-chroot-launch \ file://qemu-autostart" S = "${WORKDIR}" @@ -23,6 +25,8 @@ do_install() { install -d ${D}${bindir} install -m 0755 anjuta-remote-run ${D}${bindir}/ + install -m 0775 poky-chroot-init ${D}${bindir}/ + install -m 0775 poky-chroot-launch ${D}${bindir}/ install -d ${D}${datadir}/applications install -m 0644 shutdown.desktop ${D}${datadir}/applications/ @@ -31,7 +35,7 @@ do_install() { install -m 0644 shutdown.png ${D}${datadir}/pixmaps/ install -d ${D}/etc/init.d - install qemu-autostart ${D}/etc/init.d + install qemu-autostart ${D}/etc/init.d/ } inherit update-rc.d |