mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
49e6d6103e
Update LIC_FILES_CHKSUM that the whole license file should be used rather than the first 2 lines. Remove COMPATIBLE_HOST that edac-utils could build for all architectures. Update runtime dependencies: * add perl modules that edac-ctl needs * add dmidecode for the archs which are in COMPATIBLE_HOST of dmidecode that dmidecode is required by command edac-ctl. And add patches for initscripts to: * add restart subcommand * make init script be able to load EDAC module automatically Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
34 lines
796 B
Diff
34 lines
796 B
Diff
From 3ade837f64de0cfe2aed5bc52f7919760f350531 Mon Sep 17 00:00:00 2001
|
|
From: Wenzong Fan <wenzong.fan@windriver.com>
|
|
Date: Fri, 7 Mar 2014 00:57:12 -0500
|
|
Subject: [PATCH] edac: add restart to initscript
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
|
|
---
|
|
src/etc/edac.init.in | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/etc/edac.init.in b/src/etc/edac.init.in
|
|
index adf76ee..007a519 100644
|
|
--- a/src/etc/edac.init.in
|
|
+++ b/src/etc/edac.init.in
|
|
@@ -155,8 +155,12 @@ case "$1" in
|
|
status)
|
|
service_status
|
|
;;
|
|
+ restart)
|
|
+ service_stop
|
|
+ service_start
|
|
+ ;;
|
|
*)
|
|
- COMMANDS="start|stop|status"
|
|
+ COMMANDS="start|stop|status|restart"
|
|
echo "Usage: $0 {${COMMANDS}}"
|
|
exit 2
|
|
;;
|
|
--
|
|
1.7.9.5
|
|
|