mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-18 19:20:39 +00:00
3b245e4fe8
Refresh all patches. Remove openipmigui-not-compile-pyc-pyo.patch and do-not-install-pyc-and-pyo.patch as the issues had been fixed upstream. Add ipmi_serial_bmc_emu.c-include-readline.h-from-readli.patch to fix the build error. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
43 lines
944 B
Diff
43 lines
944 B
Diff
From 6542ebe7a0d37dee8e9afb856feb8f6c3d334632 Mon Sep 17 00:00:00 2001
|
|
From: Jackie Huang <jackie.huang@windriver.com>
|
|
Date: Mon, 29 Dec 2014 18:16:04 +0800
|
|
Subject: [PATCH] ipmi-init: fix the arguments
|
|
|
|
The functions success/failure/warning defined in /etc/init.d/functions
|
|
(provided by initscripts) only accepts numeric argument as return code,
|
|
not a string.
|
|
|
|
Upstream-Status: Inappropriate [OE specific]
|
|
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
---
|
|
ipmi.init | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/ipmi.init b/ipmi.init
|
|
index ea10b11..aac9f83 100644
|
|
--- a/ipmi.init
|
|
+++ b/ipmi.init
|
|
@@ -45,17 +45,17 @@ elif [ -r /etc/init.d/functions ]; then
|
|
case "$ACTION" in
|
|
success)
|
|
echo -n $*
|
|
- success "$*"
|
|
+ success 0
|
|
echo
|
|
;;
|
|
failure)
|
|
echo -n $*
|
|
- failure "$*"
|
|
+ failure 1
|
|
echo
|
|
;;
|
|
warning)
|
|
echo -n $*
|
|
- warning "$*"
|
|
+ warning 0
|
|
echo
|
|
;;
|
|
*)
|
|
|