]> code.ossystems Code Review - meta-freescale.git/commitdiff
lio-utils: add tcm_start.sh and lio_start.sh to rootfs
authorChunrong Guo <b40290@freescale.com>
Fri, 8 Mar 2013 15:28:30 +0000 (15:28 +0000)
committerMatthew McClintock <msm-oss@mcclintock.net>
Fri, 8 Mar 2013 23:59:51 +0000 (17:59 -0600)
           *following scripts had  been added
            /etc/init.d/target
            /etc/target/tcm_start.sh
            /etc/target/lio_start.sh

Signed-off-by: Chunrong Guo <b40290@freescale.com>
meta-fsl-ppc/recipes-tools/lio-utils/lio-utils_4.0.bb

index 31aa4fa07bfe4c636477378ce741e9025e2b0b53..98101b3bbbbbdfb7bcdae0b430455766020cbc6a 100644 (file)
@@ -4,7 +4,7 @@ HOMEPAGE = "http://linux-iscsi.org/index.php/Lio-utils"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://debian/copyright;md5=c3ea231a32635cbb5debedf3e88aa3df"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "git://risingtidesystems.com/lio-utils.git;protocal=git \
     file://lio-utils-install-more-modules.patch "
@@ -46,13 +46,16 @@ do_install() {
     if test -d ${S}/tools; then
         oe_runmake install
     fi
-
+    install -d ${D}/etc/target/
     install -d ${D}/etc/init.d/
     install -m 755 ${S}/scripts/rc.target ${D}/etc/init.d/
+    install -m 755 ${S}/conf/tcm_start.default ${D}/etc/target/tcm_start.sh
+    install -m 755 ${S}/conf/lio_start.default ${D}/etc/target/lio_start.sh
 }
 
 RDEPENDS_${PN} += "python-stringold python-subprocess python-shell \ 
     python-datetime python-textutils python-crypt python-netclient python-email"
 
 
-FILES_${PN} += "${sbindir}/* /etc/init.d/*"
+FILES_${PN} += "${sbindir}/* /etc/init.d/* /etc/target/*"