[oe-commits] Xiaofeng Yan : init-functions: Add two functions

git at git.openembedded.org git at git.openembedded.org
Fri Feb 3 15:56:33 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 05682408ef7fca6029e48a18b2f660eeec65a4ec
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=05682408ef7fca6029e48a18b2f660eeec65a4ec

Author: Xiaofeng Yan <xiaofeng.yan at windriver.com>
Date:   Fri Feb  3 14:39:43 2012 +0800

init-functions: Add two functions

Add log_begin_msg() and log_end_msg () in init-functions because some startup scripts need them.
if there are not two functions, then error information will arise on screen.
for example,
$ /etc/init.d/avahi-daemon start
/etc/init.d/avahi-daemon: line 161: log_begin_msg: command not found
/etc/init.d/avahi-daemon: line 163: log_end_msg: command not found

[YOCTO #1907]

Signed-off-by: Xiaofeng Yan <xiaofeng.yan at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-extended/lsb/lsb/init-functions |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-extended/lsb/lsb/init-functions b/meta/recipes-extended/lsb/lsb/init-functions
index bf424dd..e15827a 100755
--- a/meta/recipes-extended/lsb/lsb/init-functions
+++ b/meta/recipes-extended/lsb/lsb/init-functions
@@ -30,3 +30,10 @@ log_warning_msg () {
 	/etc/core-lsb/lsb_log_message warning "$@"
 }
 
+log_begin_msg () {
+	/etc/core-lsb/lsb_log_message begin "$@"
+}
+
+log_end_msg () {
+	/etc/core-lsb/lsb_log_message end "$@"
+}





More information about the Openembedded-commits mailing list