Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2] tar_1.22.bb: Add recipe for 1.22 release.
@ 2009-09-07 19:11 Khem Raj
  2009-09-07 19:11 ` [PATCH 2/2] tune-xscale.inc: Use TARGET_ARCH to find endianness Khem Raj
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Khem Raj @ 2009-09-07 19:11 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 conf/checksums.ini      |    4 ++++
 recipes/tar/tar_1.22.bb |    1 +
 2 files changed, 5 insertions(+), 0 deletions(-)
 create mode 100644 recipes/tar/tar_1.22.bb

diff --git a/conf/checksums.ini b/conf/checksums.ini
index 053a2ad..e720a28 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -23734,6 +23734,10 @@ sha256=44944ee0427c8e0d8dbaa0b8f900073a7456819610cc521c53630c3eb117cf5e
 md5=1a7e17f27abf583b3b0bc059a827e68b
 sha256=be8bf33afb5adc2377e45d94693ffd46b75f267f9b808df0c7006e51211f9deb
 
+[ftp://ftp.gnu.org/gnu/tar/tar-1.22.tar.bz2]
+md5=07fa517027f426bb80f5f5ff91b63585
+sha256=3cefb67f197a3f8f5235999fe749ced0889466a71ddcbc96fddca84e5d53aa4d
+
 [http://downloads.sourceforge.net/subapplet/tasklist-105.tar.gz]
 md5=dc62a061d83cf72d1eca7e8ae2c8e1a6
 sha256=4078c44beebfd298995983b9e2ea189167a1ab081d96a7c485a67b65a974e878
diff --git a/recipes/tar/tar_1.22.bb b/recipes/tar/tar_1.22.bb
new file mode 100644
index 0000000..25163ac
--- /dev/null
+++ b/recipes/tar/tar_1.22.bb
@@ -0,0 +1 @@
+require tar.inc
-- 
1.6.3.3




^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [PATCH 2/2] tune-xscale.inc: Use TARGET_ARCH to find endianness
@ 2009-09-08 21:58 Khem Raj
  0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2009-09-08 21:58 UTC (permalink / raw)
  To: openembedded-devel

* Use TARGET_ARCH to find endianness instead of
  SITEINFO_ENDIANNESS which is not yet evaluated.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 conf/machine/include/tune-xscale.inc |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/conf/machine/include/tune-xscale.inc b/conf/machine/include/tune-xscale.inc
index 7fa6447..3a6bd0e 100644
--- a/conf/machine/include/tune-xscale.inc
+++ b/conf/machine/include/tune-xscale.inc
@@ -1,9 +1,12 @@
-FEED_ARCH =  "${@['armv5teb', 'armv5te'][bb.data.getVar('SITEINFO_ENDIANESS', d, 1) == 'le']}"
+# this depends on fact that for ARM the TARGET_ARCH is 'arm' for little endian and 'armeb' for bigendian
+# this is the case as of now for all arm machines in OE.
+
+FEED_ARCH =  "${@['armv5teb', 'armv5te'][bb.data.getVar('TARGET_ARCH', d, 1) == 'arm']}"
 
 TARGET_CC_ARCH = "-march=armv5te -mtune=xscale"
 TARGET_CC_KERNEL_ARCH = "-march=armv5te -mtune=xscale"
-PACKAGE_EXTRA_ARCHS += "${@['armv4b armv4tb armv5teb', 'armv4 armv4t armv5te'][bb.data.getVar('SITEINFO_ENDIANESS', d, 1) == 'le']}"
-BASE_PACKAGE_ARCH := "${@['armv5teb', 'armv5te'][bb.data.getVar('SITEINFO_ENDIANESS', d, 1) == 'le']}"
+PACKAGE_EXTRA_ARCHS += "${@['armv4b armv4tb armv5teb', 'armv4 armv4t armv5te'][ bb.data.getVar('TARGET_ARCH', d, 1) == 'arm']}"
+BASE_PACKAGE_ARCH = "${@['armv5teb', 'armv5te'][bb.data.getVar('TARGET_ARCH', d, 1) == 'arm']}"
 
 # Include tune file for thumb support, it defaults to off so DISTROs can turn it on if they wish
 require conf/machine/include/tune-thumb.inc
-- 
1.6.3.3




^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-09-10  9:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-07 19:11 [PATCH 1/2] tar_1.22.bb: Add recipe for 1.22 release Khem Raj
2009-09-07 19:11 ` [PATCH 2/2] tune-xscale.inc: Use TARGET_ARCH to find endianness Khem Raj
2009-09-10  6:12   ` Holger Hans Peter Freyther
2009-09-10  9:32   ` Leon Woestenberg
2009-09-10  6:11 ` [PATCH 1/2] tar_1.22.bb: Add recipe for 1.22 release Holger Hans Peter Freyther
2009-09-10  9:31 ` Leon Woestenberg
  -- strict thread matches above, loose matches on Subject: below --
2009-09-08 21:58 [PATCH 2/2] tune-xscale.inc: Use TARGET_ARCH to find endianness Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox