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.
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