mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
1395b480f4
The current edac-utils is v0.18, not v0.16 as the declaration in NEWS file: ------------------------------- | Version 0.18 (2011-11-09); |- Do not print "No errors to report" with edac-util --quiet |- Add DIMM labels for Intel S2600JF and Supermicro H8QG6 ------------------------------- Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
35 lines
968 B
BlitzBasic
35 lines
968 B
BlitzBasic
SUMMARY = "Userspace helper for Linux kernel EDAC drivers"
|
|
HOMEPAGE = "https://github.com/grondo/edac-utils"
|
|
SECTION = "Applications/System"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
DEPENDS = " sysfsutils"
|
|
|
|
SRCREV = "f9aa96205f610de39a79ff43c7478b7ef02e3138"
|
|
PV = "0.18+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI = "git://github.com/grondo/edac-utils \
|
|
file://make-init-script-be-able-to-automatically-load-EDAC-.patch \
|
|
file://add-restart-to-initscript.patch \
|
|
"
|
|
|
|
inherit autotools-brokensep
|
|
|
|
do_configure_prepend () {
|
|
touch ${S}/ChangeLog
|
|
${S}/bootstrap
|
|
}
|
|
|
|
RDEPENDS_${PN}_x86 = "dmidecode"
|
|
RDEPENDS_${PN}_x86-64 = "dmidecode"
|
|
RDEPENDS_${PN}_arm = "dmidecode"
|
|
RDEPENDS_${PN}_aarch64 = "dmidecode"
|
|
RDEPENDS_${PN}_powerpc = "dmidecode"
|
|
RDEPENDS_${PN}_powerpc64 = "dmidecode"
|
|
RDEPENDS_${PN}_append = " \
|
|
perl-module-file-basename perl-module-file-find perl-module-getopt-long perl-module-posix \
|
|
"
|