From patchwork Tue Mar 6 17:24:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2,4/5] opkg: rename postinst trigger script Date: Tue, 06 Mar 2012 17:24:14 -0000 From: Otavio Salvador X-Patchwork-Id: 22825 Message-Id: <8d538d914e85c76eb3a466ca7d3dbae26a06a52b.1331054558.git.otavio@ossystems.com.br> To: openembedded-core@lists.openembedded.org Use 'run-postinsts' as trigger script name as it describes better the intent of it. Signed-off-by: Otavio Salvador --- meta/recipes-devtools/opkg/opkg.inc | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc index a67066f..689bd4a 100644 --- a/meta/recipes-devtools/opkg/opkg.inc +++ b/meta/recipes-devtools/opkg/opkg.inc @@ -11,7 +11,7 @@ DEPENDS_virtclass-native = "curl-native" DEPENDS_virtclass-nativesdk = "curl-nativesdk" PE = "1" -INC_PR = "r7" +INC_PR = "r8" FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg" @@ -60,9 +60,9 @@ if [ "x$D" != "x" ]; then # this happens at S98 where our good 'ole packages script used to run echo "#!/bin/sh opkg-cl configure -rm -f /${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure -" > $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure - chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure +rm -f /${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts +" > $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts + chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts fi update-alternatives --install ${bindir}/opkg opkg ${bindir}/opkg-cl 100