diff options
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 |