* [PATCH 0/1] install new packages in adt-installer
@ 2012-01-18 7:18 Lianhao Lu
2012-01-18 7:18 ` [PATCH 1/1] adt-installer: install autoconf(/automake)-nativesdk Lianhao Lu
2012-01-19 19:58 ` [PATCH 0/1] install new packages in adt-installer Saul Wold
0 siblings, 2 replies; 3+ messages in thread
From: Lianhao Lu @ 2012-01-18 7:18 UTC (permalink / raw)
To: openembedded-core
This pathc fixed YOCTO bug #1909 by installing autoconf-nativesdk and
automake-nativesdk packages in adt-installer.
The following changes since commit bd047935305c872b565f30b46c94b7077e5fb3a2:
Richard Purdie (1):
patch.bbclass: Ensure the DATE and SRCDATE variable exclusions apply to the correct function
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib llu/bug1909
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=llu/bug1909
Lianhao Lu (1):
adt-installer: install autoconf(/automake)-nativesdk
.../adt-installer/scripts/adt_installer_internal | 18 ++++++------------
.../installer/adt-installer_1.0.bb | 2 +-
2 files changed, 7 insertions(+), 13 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] adt-installer: install autoconf(/automake)-nativesdk
2012-01-18 7:18 [PATCH 0/1] install new packages in adt-installer Lianhao Lu
@ 2012-01-18 7:18 ` Lianhao Lu
2012-01-19 19:58 ` [PATCH 0/1] install new packages in adt-installer Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: Lianhao Lu @ 2012-01-18 7:18 UTC (permalink / raw)
To: openembedded-core
[YOCTO #1909]
Install autoconf-nativesdk and automake-nativesdk to host.
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
.../adt-installer/scripts/adt_installer_internal | 18 ++++++------------
.../installer/adt-installer_1.0.bb | 2 +-
2 files changed, 7 insertions(+), 13 deletions(-)
diff --git a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal
index 870931e..6201095 100755
--- a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal
+++ b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal
@@ -91,18 +91,12 @@ check_result
OPKG_INSTALL_CMD="$OPKG_CMD "
OPKG_INSTALL_NATIVE_CMD="$OPKG_INSTALL_CMD -f $OPKG_CONFIG_FILE -o $NATIVE_INSTALL_DIR install"
-echo_info "Installing pseudo nativesdk ...\n"
-$OPKG_INSTALL_NATIVE_CMD pseudo-nativesdk &>> $YOCTOADT_INSTALL_LOG_FILE
-check_result
-echo_info "Installing opkg nativesdk ...\n"
-$OPKG_INSTALL_NATIVE_CMD opkg-nativesdk &>> $YOCTOADT_INSTALL_LOG_FILE
-check_result
-echo_info "Installing pkgconfig nativesdk ...\n"
-$OPKG_INSTALL_NATIVE_CMD pkgconfig-nativesdk &>> $YOCTOADT_INSTALL_LOG_FILE
-check_result
-echo_info "Installing libtool nativesdk ...\n"
-$OPKG_INSTALL_NATIVE_CMD libtool-nativesdk &>> $YOCTOADT_INSTALL_LOG_FILE
-check_result
+BASE_HOSTSDK_PKGNAMES="pseudo opkg pkgconfig libtool autoconf automake"
+for pkg in $BASE_HOSTSDK_PKGNAMES; do
+ echo_info "Installing ${pkg} nativesdk ...\n"
+ $OPKG_INSTALL_NATIVE_CMD ${pkg}-nativesdk &>> $YOCTOADT_INSTALL_LOG_FILE
+ check_result
+done
for native_target_type in $YOCTOADT_TARGETS; do
native_target_type=`echo "$native_target_type" | sed -e 's/x86_64/x86-64/' -e 's/ppc/powerpc/' -e 's/x86$/i586/'`
diff --git a/meta/recipes-devtools/installer/adt-installer_1.0.bb b/meta/recipes-devtools/installer/adt-installer_1.0.bb
index 53911b8..39e53c1 100644
--- a/meta/recipes-devtools/installer/adt-installer_1.0.bb
+++ b/meta/recipes-devtools/installer/adt-installer_1.0.bb
@@ -30,7 +30,7 @@ ALLOW_EMPTY = "1"
PACKAGES = ""
-PR = "r4"
+PR = "r5"
ADT_DEPLOY = "${TMPDIR}/deploy/sdk/"
ADT_DIR = "${WORKDIR}/adt-installer/"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/1] install new packages in adt-installer
2012-01-18 7:18 [PATCH 0/1] install new packages in adt-installer Lianhao Lu
2012-01-18 7:18 ` [PATCH 1/1] adt-installer: install autoconf(/automake)-nativesdk Lianhao Lu
@ 2012-01-19 19:58 ` Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-01-19 19:58 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 01/17/2012 11:18 PM, Lianhao Lu wrote:
> This pathc fixed YOCTO bug #1909 by installing autoconf-nativesdk and
> automake-nativesdk packages in adt-installer.
>
> The following changes since commit bd047935305c872b565f30b46c94b7077e5fb3a2:
> Richard Purdie (1):
> patch.bbclass: Ensure the DATE and SRCDATE variable exclusions apply to the correct function
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib llu/bug1909
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=llu/bug1909
>
> Lianhao Lu (1):
> adt-installer: install autoconf(/automake)-nativesdk
>
> .../adt-installer/scripts/adt_installer_internal | 18 ++++++------------
> .../installer/adt-installer_1.0.bb | 2 +-
> 2 files changed, 7 insertions(+), 13 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-01-19 20:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-18 7:18 [PATCH 0/1] install new packages in adt-installer Lianhao Lu
2012-01-18 7:18 ` [PATCH 1/1] adt-installer: install autoconf(/automake)-nativesdk Lianhao Lu
2012-01-19 19:58 ` [PATCH 0/1] install new packages in adt-installer Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox