[oe-commits] Mike Westerhof : hdparm: install to /sbin, not /usr/ sbin and enable update-alternatives

GIT User account git at amethyst.openembedded.net
Fri Feb 20 17:37:41 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: d0e6ddd4aa0c4ad8bcace9805bda7f98b44dfb93
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=d0e6ddd4aa0c4ad8bcace9805bda7f98b44dfb93

Author: Mike Westerhof <mwester at dls.net>
Date:   Fri Feb 20 11:32:24 2009 -0600

hdparm: install to /sbin, not /usr/sbin and enable update-alternatives
Improper variable naming in the Makefile was causing hdparm to be installed
into the wrong sbin dir, and recent busybox versions offer hdparm as well so
update-alternatives needs to be used.

---

 packages/hdparm/hdparm_6.9.bb |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/packages/hdparm/hdparm_6.9.bb b/packages/hdparm/hdparm_6.9.bb
index 94d1e6e..337a7e1 100644
--- a/packages/hdparm/hdparm_6.9.bb
+++ b/packages/hdparm/hdparm_6.9.bb
@@ -4,11 +4,22 @@ SECTION = "console/utils"
 PRIORITY = "optional"
 LICENSE = "BSD"
 
+PR = "r1"
+
 SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/hdparm-${PV}.tar.gz \
 	   file://bswap.patch;patch=1 \
 	   file://uclibc.patch;patch=1"
 
 do_install () {
-	install -d ${D}/${sbindir} ${D}/${mandir}/man8
-	oe_runmake 'DESTDIR=${D}' install
+	install -d ${D}/${base_sbindir} ${D}/${mandir}/man8
+	oe_runmake 'DESTDIR=${D}' 'sbindir=${base_sbindir}' install
+	mv ${D}${base_sbindir}/hdparm ${D}${base_sbindir}/hdparm.${PN}
+}
+
+pkg_postinst_${PN} () {
+	update-alternatives --install ${base_sbindir}/hdparm hdparm hdparm.${PN} 100
 }
+
+pkg_prerm_${PN} () {
+	update-alternatives --remove hdparm hdparm.${PN}
+}
\ No newline at end of file





More information about the Openembedded-commits mailing list