diff options
| author | Kai Kang <kai.kang@windriver.com> | 2015-12-02 17:51:40 +0800 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-12-18 12:42:08 +0100 |
| commit | 49e6d6103e35e1646674c6fd7e70c387b1b127b4 (patch) | |
| tree | c263109e50beb42f4bf3bed9d66a892b57f5b71b /meta-oe/recipes-support/edac-utils/files/make-init-script-be-able-to-automatically-load-EDAC-.patch | |
| parent | 30f03b584a0ef569c5a431e66a6d910246dd2d4f (diff) | |
| download | meta-openembedded-49e6d6103e35e1646674c6fd7e70c387b1b127b4.tar.gz | |
edac-utils: add patches for initscript
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>
Diffstat (limited to 'meta-oe/recipes-support/edac-utils/files/make-init-script-be-able-to-automatically-load-EDAC-.patch')
| -rw-r--r-- | meta-oe/recipes-support/edac-utils/files/make-init-script-be-able-to-automatically-load-EDAC-.patch | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/edac-utils/files/make-init-script-be-able-to-automatically-load-EDAC-.patch b/meta-oe/recipes-support/edac-utils/files/make-init-script-be-able-to-automatically-load-EDAC-.patch new file mode 100644 index 0000000000..fddc25f601 --- /dev/null +++ b/meta-oe/recipes-support/edac-utils/files/make-init-script-be-able-to-automatically-load-EDAC-.patch | |||
| @@ -0,0 +1,98 @@ | |||
| 1 | make init script be able to automatically load EDAC module. | ||
| 2 | |||
| 3 | Upstream-Status: Inappropriate [embedded specific] | ||
| 4 | |||
| 5 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
| 6 | --- | ||
| 7 | src/etc/edac.init.in | 49 +++++++++++++++++++++++++++++++++++++++++++++++-- | ||
| 8 | 1 file changed, 47 insertions(+), 2 deletions(-) | ||
| 9 | |||
| 10 | diff --git a/src/etc/edac.init.in b/src/etc/edac.init.in | ||
| 11 | index 7a51da9..5b568c4 100644 | ||
| 12 | --- a/src/etc/edac.init.in | ||
| 13 | +++ b/src/etc/edac.init.in | ||
| 14 | @@ -42,7 +42,6 @@ for dir in "$sysconfdir/default" "$sysconfdir/sysconfig"; do | ||
| 15 | [ -f "$dir/$SERVICE" ] && . "$dir/$SERVICE" | ||
| 16 | done | ||
| 17 | |||
| 18 | - | ||
| 19 | ############################################################################### | ||
| 20 | |||
| 21 | service_start () | ||
| 22 | @@ -52,6 +51,46 @@ service_start () | ||
| 23 | # Assume that if EDAC_DRIVER is not set, then EDAC is configured | ||
| 24 | # automatically, thus return successfully, but don't do anything. | ||
| 25 | # | ||
| 26 | + if [ ! -f /etc/edac/edac-driver ]; then | ||
| 27 | + [ -d /sys/bus/edac/devices/mc/mc0 ] && \ | ||
| 28 | + echo `lsmod | grep _edac | cut -d" " -f1` > /etc/edac/edac-driver | ||
| 29 | + fi | ||
| 30 | + | ||
| 31 | + [ -f /etc/edac/edac-driver ] && EDAC_DRIVER=`cat /etc/edac/edac-driver` | ||
| 32 | + | ||
| 33 | + if [ -z "$EDAC_DRIVER" ]; then | ||
| 34 | + | ||
| 35 | + DRIVER_PATH=/lib/modules/`uname -r`/kernel/drivers/edac | ||
| 36 | + oldpath=`pwd` | ||
| 37 | + if [ -d $DRIVER_PATH ]; then | ||
| 38 | + | ||
| 39 | + cd $DRIVER_PATH | ||
| 40 | + | ||
| 41 | + for i in $(/bin/ls | /usr/bin/cut -d. -f1) ; do | ||
| 42 | + /sbin/modprobe $i 2>/dev/null | ||
| 43 | + if [ -d /sys/bus/edac/devices/mc/mc0 ]; then | ||
| 44 | + echo $i> /etc/edac/edac-driver | ||
| 45 | + EDAC_DRIVER=$i | ||
| 46 | + break | ||
| 47 | + fi | ||
| 48 | + /sbin/modprobe -r $i 2>/dev/null | ||
| 49 | + done | ||
| 50 | + | ||
| 51 | + cd "$oldpath" | ||
| 52 | + | ||
| 53 | + | ||
| 54 | + if [ -z "$EDAC_DRIVER" ]; then | ||
| 55 | + echo "This board may not support EDAC, or EDAC module may not be compiled in" | ||
| 56 | + exit | ||
| 57 | + fi | ||
| 58 | + | ||
| 59 | + else | ||
| 60 | + echo "This board may not support EDAC, or EDAC module may not be compiled in" | ||
| 61 | + exit | ||
| 62 | + fi | ||
| 63 | + | ||
| 64 | + fi | ||
| 65 | + | ||
| 66 | if [ -n "$EDAC_DRIVER" ]; then | ||
| 67 | echo -n "Starting ${SERVICE}: " | ||
| 68 | modprobe $EDAC_DRIVER | ||
| 69 | @@ -76,12 +115,15 @@ service_start () | ||
| 70 | service_stop () | ||
| 71 | { | ||
| 72 | echo -n "Disabling ${SERVICE}: " | ||
| 73 | + | ||
| 74 | + [ -f /etc/edac/edac-driver ] && EDAC_DRIVER=`cat /etc/edac/edac-driver` | ||
| 75 | + | ||
| 76 | if [ -n "$EDAC_DRIVER" ]; then | ||
| 77 | modprobe -r $EDAC_DRIVER | ||
| 78 | STATUS=$? | ||
| 79 | [ $STATUS -eq 0 ] && echo success || echo failure | ||
| 80 | else | ||
| 81 | - echo "Not supported for this configuration." | ||
| 82 | + echo "Not supported for this configuration, or EDAC Module is not loaded." | ||
| 83 | STATUS=6 | ||
| 84 | fi | ||
| 85 | } | ||
| 86 | @@ -92,6 +134,9 @@ service_status () | ||
| 87 | { | ||
| 88 | # Print the current status of the service. Required by LSB. | ||
| 89 | # | ||
| 90 | + [ -f /etc/edac/edac-driver ] && EDAC_DRIVER=`cat /etc/edac/edac-driver` | ||
| 91 | + [ -z "$EDAC_DRIVER" ] && STATUS=1 && exit | ||
| 92 | + | ||
| 93 | edac-ctl --status | ||
| 94 | STATUS=0 | ||
| 95 | } | ||
| 96 | -- | ||
| 97 | 1.7.10.4 | ||
| 98 | |||
