summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/edac-utils/edac-utils_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-support/edac-utils/edac-utils_git.bb')
-rw-r--r--meta-oe/recipes-support/edac-utils/edac-utils_git.bb19
1 files changed, 14 insertions, 5 deletions
diff --git a/meta-oe/recipes-support/edac-utils/edac-utils_git.bb b/meta-oe/recipes-support/edac-utils/edac-utils_git.bb
index e5621ade6..9bd2f0ae9 100644
--- a/meta-oe/recipes-support/edac-utils/edac-utils_git.bb
+++ b/meta-oe/recipes-support/edac-utils/edac-utils_git.bb
@@ -2,7 +2,7 @@ SUMMARY = "Userspace helper for Linux kernel EDAC drivers"
2HOMEPAGE = "https://github.com/grondo/edac-utils" 2HOMEPAGE = "https://github.com/grondo/edac-utils"
3SECTION = "Applications/System" 3SECTION = "Applications/System"
4LICENSE = "GPLv2" 4LICENSE = "GPLv2"
5LIC_FILES_CHKSUM = "file://COPYING;beginline=1;endline=2;md5=1fbd81241fe252ec0f5658a521ab7dd8" 5LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
6 6
7DEPENDS = " sysfsutils" 7DEPENDS = " sysfsutils"
8 8
@@ -11,7 +11,10 @@ PV = "0.16+git${SRCPV}"
11 11
12S = "${WORKDIR}/git" 12S = "${WORKDIR}/git"
13 13
14SRC_URI = "git://github.com/grondo/edac-utils;protocol=http" 14SRC_URI = "git://github.com/grondo/edac-utils \
15 file://make-init-script-be-able-to-automatically-load-EDAC-.patch \
16 file://add-restart-to-initscript.patch \
17"
15 18
16inherit autotools-brokensep 19inherit autotools-brokensep
17 20
@@ -20,6 +23,12 @@ do_configure_prepend () {
20 ${S}/bootstrap 23 ${S}/bootstrap
21} 24}
22 25
23COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' 26RDEPENDS_${PN}_x86 = "dmidecode"
24 27RDEPENDS_${PN}_x86-64 = "dmidecode"
25RDEPENDS_${PN} = " perl" 28RDEPENDS_${PN}_arm = "dmidecode"
29RDEPENDS_${PN}_aarch64 = "dmidecode"
30RDEPENDS_${PN}_powerpc = "dmidecode"
31RDEPENDS_${PN}_powerpc64 = "dmidecode"
32RDEPENDS_${PN}_append = " \
33 perl-module-file-basename perl-module-file-find perl-module-getopt-long perl-module-posix \
34"