diff options
Diffstat (limited to 'ipkg/ipkg_0.99.129.oe')
-rw-r--r-- | ipkg/ipkg_0.99.129.oe | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ipkg/ipkg_0.99.129.oe b/ipkg/ipkg_0.99.129.oe index 1959c0ce8f..6acaa36100 100644 --- a/ipkg/ipkg_0.99.129.oe +++ b/ipkg/ipkg_0.99.129.oe @@ -1,3 +1,4 @@ +SECTION = "base" DESCRIPTION = "Itsy Package Manager" DESCRIPTION_libipkg = "Itsy Package Manager Library" LICENSE = "GPL" @@ -21,7 +22,9 @@ pkg_postinst_ipkg () { if [ "x$D" != "x" ]; then install -d ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d # this happens at S98 where our good 'ole packages script used to run - echo -e "#!/bin/sh\nipkg-cl configure\n" > ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S98configure + echo -e "#!/bin/sh +ipkg-cl configure +" > ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S98configure chmod 0755 ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S98configure fi |