diff options
author | Radu Moisan <radu.moisan@intel.com> | 2013-03-13 18:49:12 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:18:22 +0000 |
commit | 64e00c30961d5d3bfb99245a2658cd1a601b2901 (patch) | |
tree | 6111f6ebfd71a9b142076a45ccfffe181fc308de /meta/recipes-extended/hdparm/hdparm_9.43.bb | |
parent | 228cced04d9f25f10d089ddd97592077362f60bf (diff) | |
download | poky-64e00c30961d5d3bfb99245a2658cd1a601b2901.tar.gz |
hdparm: Upgrade to v9.43
(From OE-Core rev: c2c0876045e2a90b7158d3e81727205eb1c0d6ea)
Signed-off-by: Radu Moisan <radu.moisan@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/hdparm/hdparm_9.43.bb')
-rw-r--r-- | meta/recipes-extended/hdparm/hdparm_9.43.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-extended/hdparm/hdparm_9.43.bb b/meta/recipes-extended/hdparm/hdparm_9.43.bb new file mode 100644 index 0000000000..03714778c4 --- /dev/null +++ b/meta/recipes-extended/hdparm/hdparm_9.43.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | DESCRIPTION = "hdparm is a Linux shell utility for viewing \ | ||
2 | and manipulating various IDE drive and driver parameters." | ||
3 | SECTION = "console/utils" | ||
4 | LICENSE = "BSD" | ||
5 | LICENSE_wiper = "GPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=910a8a42c962d238619c75fdb78bdb24 \ | ||
7 | file://debian/copyright;md5=a82d7ba3ade9e8ec902749db98c592f3 \ | ||
8 | file://wiper/GPLv2.txt;md5=fcb02dc552a041dee27e4b85c7396067 \ | ||
9 | file://wiper/wiper.sh;beginline=7;endline=31;md5=b7bc642addc152ea307505bf1a296f09" | ||
10 | |||
11 | PR = "r0" | ||
12 | |||
13 | PACKAGES += "wiper" | ||
14 | |||
15 | FILES_wiper = "${bindir}/wiper.sh" | ||
16 | |||
17 | RDEPENDS_wiper = "bash gawk stat" | ||
18 | |||
19 | SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/hdparm-${PV}.tar.gz " | ||
20 | |||
21 | SRC_URI[md5sum] = "f73233be118d86c779a8463d8b6a3cdb" | ||
22 | SRC_URI[sha256sum] = "2bbe92274971182192901ab220e94bd2e4896f924fa6b225d0cffd7d8c16b52a" | ||
23 | |||
24 | EXTRA_OEMAKE += 'STRIP="echo"' | ||
25 | |||
26 | inherit update-alternatives | ||
27 | |||
28 | ALTERNATIVE_${PN} = "hdparm" | ||
29 | ALTERNATIVE_LINK_NAME[hdparm] = "${base_sbindir}/hdparm" | ||
30 | ALTERNATIVE_PRIORITY = "100" | ||
31 | |||
32 | do_install () { | ||
33 | install -d ${D}/${base_sbindir} ${D}/${mandir}/man8 ${D}/${bindir} | ||
34 | oe_runmake 'DESTDIR=${D}' 'sbindir=${base_sbindir}' install | ||
35 | cp ${S}/wiper/wiper.sh ${D}/${bindir} | ||
36 | } | ||