summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/hdparm/hdparm_9.48.bb
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-12-20 03:09:45 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-09 13:39:13 +0000
commit1a06778c093987592e513d2efdf4a00a2b33a158 (patch)
treec216ed0d87f30a6cb68c6ab1027ceab3d92ad029 /meta/recipes-extended/hdparm/hdparm_9.48.bb
parent29c9e43e75742737f59c0f32f5b0f7f502bdfed2 (diff)
downloadpoky-1a06778c093987592e513d2efdf4a00a2b33a158.tar.gz
hdparm: 9.48 -> 9.50
Remove "-e MAKEFLAGS=" from EXTRA_OEMAKE to fix: ERROR: hdparm-9.50-r0 do_package: QA Issue: File '/sbin/hdparm.hdparm' from hdparm was already stripped, this will prevent future debugging! [already-stripped] ERROR: hdparm-9.50-r0 do_package: Fatal QA errors found, failing task. The "-e MAKEFLAGS=" would cause submake can't get vars from environment, The git log said that it was added for fixing a QA warning, but everything is OK after remove it now. (From OE-Core rev: 6305c1361c0d1140e37513402532600528a63744) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/hdparm/hdparm_9.48.bb')
-rw-r--r--meta/recipes-extended/hdparm/hdparm_9.48.bb40
1 files changed, 0 insertions, 40 deletions
diff --git a/meta/recipes-extended/hdparm/hdparm_9.48.bb b/meta/recipes-extended/hdparm/hdparm_9.48.bb
deleted file mode 100644
index cd85776cf8..0000000000
--- a/meta/recipes-extended/hdparm/hdparm_9.48.bb
+++ /dev/null
@@ -1,40 +0,0 @@
1SUMMARY = "Utility for viewing/manipulating IDE disk drive/driver parameters"
2DESCRIPTION = "hdparm is a Linux shell utility for viewing \
3and manipulating various IDE drive and driver parameters."
4SECTION = "console/utils"
5
6LICENSE = "BSD & GPLv2"
7LICENSE_${PN} = "BSD"
8LICENSE_${PN}-dbg = "BSD"
9LICENSE_wiper = "GPLv2"
10
11LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=910a8a42c962d238619c75fdb78bdb24 \
12 file://debian/copyright;md5=a82d7ba3ade9e8ec902749db98c592f3 \
13 file://wiper/GPLv2.txt;md5=fcb02dc552a041dee27e4b85c7396067 \
14 file://wiper/wiper.sh;beginline=7;endline=31;md5=b7bc642addc152ea307505bf1a296f09"
15
16
17PACKAGES =+ "wiper"
18
19FILES_wiper = "${bindir}/wiper.sh"
20
21RDEPENDS_wiper = "bash gawk stat"
22
23SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/${BP}.tar.gz "
24
25SRC_URI[md5sum] = "213efdbe7471fad3408198918e164354"
26SRC_URI[sha256sum] = "ce97b4a71cb04146f54cf6f69787e7f97ddfda9836dc803b459d3b3df3a4fbee"
27
28EXTRA_OEMAKE = '-e MAKEFLAGS= STRIP="echo"'
29
30inherit update-alternatives
31
32ALTERNATIVE_${PN} = "hdparm"
33ALTERNATIVE_LINK_NAME[hdparm] = "${base_sbindir}/hdparm"
34ALTERNATIVE_PRIORITY = "100"
35
36do_install () {
37 install -d ${D}/${base_sbindir} ${D}/${mandir}/man8 ${D}/${bindir}
38 oe_runmake 'DESTDIR=${D}' 'sbindir=${base_sbindir}' install
39 cp ${S}/wiper/wiper.sh ${D}/${bindir}
40}