From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tx2outboundpool.messaging.microsoft.com (tx2ehsobe002.messaging.microsoft.com [65.55.88.12]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id C2FD4E014A7 for ; Sat, 9 Mar 2013 07:32:16 -0800 (PST) Received: from mail207-tx2-R.bigfish.com (10.9.14.237) by TX2EHSOBE015.bigfish.com (10.9.40.35) with Microsoft SMTP Server id 14.1.225.23; Sat, 9 Mar 2013 15:32:16 +0000 Received: from mail207-tx2 (localhost [127.0.0.1]) by mail207-tx2-R.bigfish.com (Postfix) with ESMTP id 223C2380137 for ; Sat, 9 Mar 2013 15:32:16 +0000 (UTC) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-SpamScore: 0 X-BigFish: VS0(zzzz1f42h1ee6h1de0h1202h1e76h1d1ah1d2ahzz17326ah8275dh19a27bh8275bhz2dh2a8h668h839hd24he5bhf0ah1288h12a5h12a9h12bdh12e5h137ah139eh13b6h1441h1504h1537h162dh1631h1758h1898h18e1h1946h19b5h1ad9h1b0ah1155h) Received: from mail207-tx2 (localhost.localdomain [127.0.0.1]) by mail207-tx2 (MessageSwitch) id 1362843132600819_6462; Sat, 9 Mar 2013 15:32:12 +0000 (UTC) Received: from TX2EHSMHS022.bigfish.com (unknown [10.9.14.249]) by mail207-tx2.bigfish.com (Postfix) with ESMTP id 8EA7E64004E for ; Sat, 9 Mar 2013 15:32:12 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by TX2EHSMHS022.bigfish.com (10.9.99.122) with Microsoft SMTP Server (TLS) id 14.1.225.23; Sat, 9 Mar 2013 15:32:12 +0000 Received: from tx30smr01.am.freescale.net (10.81.153.31) by 039-SN1MMR1-004.039d.mgd.msft.net (10.84.1.14) with Microsoft SMTP Server (TLS) id 14.2.328.11; Sat, 9 Mar 2013 15:32:12 +0000 Received: from b28495.ap.freescale.net (udp143739uds.ap.freescale.net [10.192.208.202]) by tx30smr01.am.freescale.net (8.14.3/8.14.0) with ESMTP id r29FW3rr027885; Sat, 9 Mar 2013 08:32:10 -0700 From: To: Date: Sat, 9 Mar 2013 23:31:58 +0800 Message-ID: <1362843123-18078-4-git-send-email-b28495@freescale.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1362843123-18078-1-git-send-email-b28495@freescale.com> References: <1362843123-18078-1-git-send-email-b28495@freescale.com> MIME-Version: 1.0 X-OriginatorOrg: freescale.com Subject: [meta-fsl-ppc][PATCH v5 3/8] lio-utils: add tcm_start.sh and lio_start.sh to rootfs X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 15:32:17 -0000 Content-Type: text/plain From: Chunrong Guo *following scripts had been added /etc/init.d/target /etc/target/tcm_start.sh /etc/target/lio_start.sh Signed-off-by: Chunrong Guo --- recipes-tools/lio-utils/lio-utils_4.0.bb | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/recipes-tools/lio-utils/lio-utils_4.0.bb b/recipes-tools/lio-utils/lio-utils_4.0.bb index 31aa4fa..98101b3 100644 --- a/recipes-tools/lio-utils/lio-utils_4.0.bb +++ b/recipes-tools/lio-utils/lio-utils_4.0.bb @@ -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/*" -- 1.7.3.4