From fc9cba841017972bfdebbeef5144aa962a61ec65 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 25 Jun 2013 17:45:12 +0100 Subject: lms8: handle different host setups The configure script looks at the *host* environment to decide where to install the init script, so it's location at packaging time can change. Signed-off-by: Ross Burton Signed-off-by: Tom Zanussi --- common/recipes-bsp/amt/lms8_8.0.0-7.bb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'common') diff --git a/common/recipes-bsp/amt/lms8_8.0.0-7.bb b/common/recipes-bsp/amt/lms8_8.0.0-7.bb index fbb4e457..65c413a8 100644 --- a/common/recipes-bsp/amt/lms8_8.0.0-7.bb +++ b/common/recipes-bsp/amt/lms8_8.0.0-7.bb @@ -26,7 +26,13 @@ INITSCRIPT_PARAMS = "defaults" do_install_append () { mv ${D}/${sbindir}/lms ${D}/${sbindir}/lms8 install -d ${D}${sysconfdir}/init.d - mv ${D}${sysconfdir}/rc.d/init.d/lms ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} + # The configure script looks at the host to decide where to put init + # scripts, so move it at the same time as renaming it. + if test -f ${D}${sysconfdir}/rc.d/init.d/lms ; then + mv ${D}${sysconfdir}/rc.d/init.d/lms ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} + else + mv ${D}${sysconfdir}/init.d/lms ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} + fi sed -i 's/^NAME=lms/NAME=lms8/' ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} rmdir ${D}${datadir} || : } -- cgit v1.2.3-54-g00ecf