diff options
-rw-r--r-- | meta-oe/recipes-support/mcelog/mcelog_1.04.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/mcelog/mcelog_1.04.bb b/meta-oe/recipes-support/mcelog/mcelog_1.04.bb new file mode 100644 index 0000000000..ceadf7a0a7 --- /dev/null +++ b/meta-oe/recipes-support/mcelog/mcelog_1.04.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "mcelog daemon accounts memory and some other errors in various ways." | ||
2 | DESCRIPTION = "mcelog is required by both 32bit x86 Linux kernels (since 2.6.30) \ | ||
3 | and 64bit Linux kernels (since early 2.6 kernel releases) to log machine checks \ | ||
4 | and should run on all Linux systems that need error handling." | ||
5 | HOMEPAGE = "http://mcelog.org/" | ||
6 | SECTION = "System Environment/Base" | ||
7 | DEPENDS += "bash" | ||
8 | SRC_URI = "git://git.kernel.org/pub/scm/utils/cpu/mce/mcelog.git" | ||
9 | SRC_URI[md5sum] = "a06761ad5fed8596238b5a5ea76ed662" | ||
10 | SRC_URI[sha256sum] = "519390825ec5a0545a7ed48717ef7c7480bb8b9bce68d63a58a52f4e4e275e0f" | ||
11 | SRCREV = "9de4924e751346df6e2d40ae1007b40ea1915e2b" | ||
12 | LICENSE = "GPLv2" | ||
13 | LIC_FILES_CHKSUM = "file://README;md5=3eb76ca64fa07ad53ebb0ebb5b4c8ede" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | do_install() { | ||
18 | install -d ${D}/${sbindir} | ||
19 | install -m 0755 ${S}/mcelog ${D}/${sbindir} | ||
20 | install -d ${D}/${mandir}/man8 | ||
21 | install -m 0644 ${S}/mcelog.8 ${D}/${mandir}/man8/ | ||
22 | install -d ${D}/etc/cron.hourly | ||
23 | install -m 0755 ${S}/mcelog.cron ${D}/etc/cron.hourly/ | ||
24 | } | ||
25 | |||
26 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' | ||
27 | |||
28 | RDEPENDS_${PN} = "bash" | ||