From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from comal.ext.ti.com (comal.ext.ti.com [198.47.26.152]) by arago-project.org (Postfix) with ESMTPS id C357252A9A for ; Thu, 4 Sep 2014 17:36:44 +0000 (UTC) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id s84Hah1u014691 for ; Thu, 4 Sep 2014 12:36:43 -0500 Received: from DLEE70.ent.ti.com (dlee70.ent.ti.com [157.170.170.113]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s84Hahwa022471 for ; Thu, 4 Sep 2014 12:36:43 -0500 Received: from dlep32.itg.ti.com (157.170.170.100) by DLEE70.ent.ti.com (157.170.170.113) with Microsoft SMTP Server id 14.3.174.1; Thu, 4 Sep 2014 12:36:43 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep32.itg.ti.com (8.14.3/8.13.8) with ESMTP id s84HahTL009988; Thu, 4 Sep 2014 12:36:43 -0500 Date: Thu, 4 Sep 2014 13:36:42 -0400 From: Denys Dmytriyenko To: Jacob Stiffler Message-ID: <20140904173642.GK18620@edge> References: <1409851868-7389-1-git-send-email-j-stiffler@ti.com> <1409851868-7389-2-git-send-email-j-stiffler@ti.com> MIME-Version: 1.0 In-Reply-To: <1409851868-7389-2-git-send-email-j-stiffler@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: meta-arago@arago-project.org Subject: Re: [tisdk-build-scripts][PATCH 2/4] package-sdks: Add configuration parameter to specify the installer prefix. X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2014 17:36:45 -0000 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Just a quick question - what do you plan to use instead of "ti-sdk" prefix? On Thu, Sep 04, 2014 at 01:31:06PM -0400, Jacob Stiffler wrote: > * The configuration parameter INSTALLER_PREFIX is used to set the prefix of the i > installer filename and the default installation directory. > * This parameter must be set when PRODUCTIZE_SDK="true" > > Signed-off-by: Jacob Stiffler > --- > lib/oesdk/package-sdks | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/lib/oesdk/package-sdks b/lib/oesdk/package-sdks > index d6b01f7..9bfd887 100644 > --- a/lib/oesdk/package-sdks > +++ b/lib/oesdk/package-sdks > @@ -109,7 +109,7 @@ create_sd_card_content() { > cd $start_here_root > > # Copy the installer > - cp $DEPLOY_ROOT/$m/$BUILD_ID/ti-sdk-$m* $start_here_root/ > + cp $DEPLOY_ROOT/$m/$BUILD_ID/${INSTALLER_PREFIX}-$m* $start_here_root/ > > if [ "$?" != "0" ] > then > @@ -184,7 +184,7 @@ create_sdk_installer() { > > $INSTALL_BUILDER/builder build $INSTALL_BUILDER_PROJECT linux --setvars \ > sdk_loc="$installer_root/" \ > - sdk_name_prefix="ti-sdk" \ > + sdk_name_prefix="${INSTALLER_PREFIX}" \ > sdk_tar_name=$sdk_tar \ > output_dir="$deploy_root" \ > platform="$m" \ > @@ -277,7 +277,7 @@ package_web_content() { > fi > > # Move the installer into the exports directory > - mv $deploy_root/ti-sdk-$m* $exports_root/ > + mv $deploy_root/${INSTALLER_PREFIX}-$m* $exports_root/ > > # Create the md5sum file > cd $exports_root > -- > 1.7.9.5 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago