Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1)
@ 2010-02-09 17:38 Marcin Juszkiewicz
  2010-02-09 17:38 ` [PATCH 2/3] gcc csl 2007q3: import header hack from Poky to get glibc 2.5 built Marcin Juszkiewicz
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Marcin Juszkiewicz @ 2010-02-09 17:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 recipes/glibc/glibc_2.5.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/glibc/glibc_2.5.bb b/recipes/glibc/glibc_2.5.bb
index 6792c58..56e7745 100644
--- a/recipes/glibc/glibc_2.5.bb
+++ b/recipes/glibc/glibc_2.5.bb
@@ -1,5 +1,5 @@
 require glibc.inc
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 ARM_INSTRUCTION_SET = "arm"
 
@@ -49,6 +49,7 @@ SRC_URI = "\
   file://zecke-sane-readelf.patch;patch=1 \
   file://ldd-unbash.patch;patch=1 \
   file://glibc-2.6.1-use-short-for-fnstsw.patch;patch=1 \
+  file://glibc-arm-no-asm-page.patch;patch=1 \
   file://generic-bits_select.h \
   file://generic-bits_types.h \
   file://generic-bits_typesizes.h \
-- 
1.6.6.1






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

* [PATCH 2/3] gcc csl 2007q3: import header hack from Poky to get glibc 2.5 built
  2010-02-09 17:38 [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1) Marcin Juszkiewicz
@ 2010-02-09 17:38 ` Marcin Juszkiewicz
  2010-02-09 21:10   ` Khem Raj
  2010-02-09 17:38 ` [PATCH 3/3] file: added 5.04 (WIP) Marcin Juszkiewicz
  2010-02-09 21:09 ` [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1) Khem Raj
  2 siblings, 1 reply; 5+ messages in thread
From: Marcin Juszkiewicz @ 2010-02-09 17:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb    |    6 ++++++
 .../gcc/gcc-cross-intermediate_csl-arm-2007q3.bb   |    6 ++++++
 recipes/gcc/gcc-cross_csl-arm-2007q3.bb            |    2 +-
 recipes/gcc/gcc_csl-arm-2007q3.bb                  |    2 +-
 4 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb b/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb
index c9f03a7..cfa64dc 100644
--- a/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb
+++ b/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb
@@ -4,3 +4,9 @@ require gcc-cross-initial.inc
 S = "${WORKDIR}/gcc-4.2"
 
 EXTRA_OECONF += "--disable-libssp --disable-bootstrap --disable-libgomp --disable-libmudflap "
+
+# Hack till we fix *libc properly
+do_install_append() {
+	ln -sf ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include-fixed/* ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include/
+}
+
diff --git a/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb b/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb
index 5423626..3532590 100644
--- a/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb
+++ b/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb
@@ -4,3 +4,9 @@ require gcc-cross-intermediate.inc
 S = "${WORKDIR}/gcc-4.2"
 
 EXTRA_OECONF += "--disable-libssp --disable-bootstrap --disable-libgomp --disable-libmudflap "
+
+# Hack till we fix *libc properly
+do_install_append() {
+	ln -sf ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include-fixed/* ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include/
+}
+
diff --git a/recipes/gcc/gcc-cross_csl-arm-2007q3.bb b/recipes/gcc/gcc-cross_csl-arm-2007q3.bb
index 34bd251..adf7f5a 100644
--- a/recipes/gcc/gcc-cross_csl-arm-2007q3.bb
+++ b/recipes/gcc/gcc-cross_csl-arm-2007q3.bb
@@ -1,4 +1,4 @@
-PR = "r5"
+PR = "r6"
 
 require gcc-csl-arm-2007q3.inc
 require gcc-cross4.inc
diff --git a/recipes/gcc/gcc_csl-arm-2007q3.bb b/recipes/gcc/gcc_csl-arm-2007q3.bb
index cc7540a..2df12ef 100644
--- a/recipes/gcc/gcc_csl-arm-2007q3.bb
+++ b/recipes/gcc/gcc_csl-arm-2007q3.bb
@@ -1,4 +1,4 @@
-PR = "r3"
+PR = "r4"
 
 require gcc-${PV}.inc
 require gcc-configure-target.inc
-- 
1.6.6.1






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

* [PATCH 3/3] file: added 5.04 (WIP)
  2010-02-09 17:38 [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1) Marcin Juszkiewicz
  2010-02-09 17:38 ` [PATCH 2/3] gcc csl 2007q3: import header hack from Poky to get glibc 2.5 built Marcin Juszkiewicz
@ 2010-02-09 17:38 ` Marcin Juszkiewicz
  2010-02-09 21:09 ` [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1) Khem Raj
  2 siblings, 0 replies; 5+ messages in thread
From: Marcin Juszkiewicz @ 2010-02-09 17:38 UTC (permalink / raw)
  To: openembedded-devel

- BBCLASSEXTEND used for native version
- DEPENDS = "file-native" needs to be added for target package

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 recipes/file/file_5.04.bb |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)
 create mode 100644 recipes/file/file_5.04.bb

diff --git a/recipes/file/file_5.04.bb b/recipes/file/file_5.04.bb
new file mode 100644
index 0000000..ed00759
--- /dev/null
+++ b/recipes/file/file_5.04.bb
@@ -0,0 +1,12 @@
+DESCRIPTION = "File attempts to classify files depending \
+on their contents and prints a description if a match is found."
+SECTION = "console/utils"
+LICENSE = "BSD-ADV"
+
+SRC_URI = "ftp://ftp.astron.com/pub/file/file-${PV}.tar.gz"
+
+inherit autotools
+
+BBCLASSEXTEND = "native"
+
+DEFAULT_PREFERENCE = "5"
-- 
1.6.6.1






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

* Re: [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1)
  2010-02-09 17:38 [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1) Marcin Juszkiewicz
  2010-02-09 17:38 ` [PATCH 2/3] gcc csl 2007q3: import header hack from Poky to get glibc 2.5 built Marcin Juszkiewicz
  2010-02-09 17:38 ` [PATCH 3/3] file: added 5.04 (WIP) Marcin Juszkiewicz
@ 2010-02-09 21:09 ` Khem Raj
  2 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2010-02-09 21:09 UTC (permalink / raw)
  To: openembedded-devel

On (09/02/10 18:38), Marcin Juszkiewicz wrote:
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Acked-by: Khem Raj <raj.khem@gmail.com>

> ---
>  recipes/glibc/glibc_2.5.bb |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/glibc/glibc_2.5.bb b/recipes/glibc/glibc_2.5.bb
> index 6792c58..56e7745 100644
> --- a/recipes/glibc/glibc_2.5.bb
> +++ b/recipes/glibc/glibc_2.5.bb
> @@ -1,5 +1,5 @@
>  require glibc.inc
> -PR = "${INC_PR}.0"
> +PR = "${INC_PR}.1"
>  
>  ARM_INSTRUCTION_SET = "arm"
>  
> @@ -49,6 +49,7 @@ SRC_URI = "\
>    file://zecke-sane-readelf.patch;patch=1 \
>    file://ldd-unbash.patch;patch=1 \
>    file://glibc-2.6.1-use-short-for-fnstsw.patch;patch=1 \
> +  file://glibc-arm-no-asm-page.patch;patch=1 \
>    file://generic-bits_select.h \
>    file://generic-bits_types.h \
>    file://generic-bits_typesizes.h \
> -- 
> 1.6.6.1
> 
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



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

* Re: [PATCH 2/3] gcc csl 2007q3: import header hack from Poky to get glibc 2.5 built
  2010-02-09 17:38 ` [PATCH 2/3] gcc csl 2007q3: import header hack from Poky to get glibc 2.5 built Marcin Juszkiewicz
@ 2010-02-09 21:10   ` Khem Raj
  0 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2010-02-09 21:10 UTC (permalink / raw)
  To: openembedded-devel

On (09/02/10 18:38), Marcin Juszkiewicz wrote:
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Acked-by: Khem Raj <raj.khem@gmail.com>

> ---
>  recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb    |    6 ++++++
>  .../gcc/gcc-cross-intermediate_csl-arm-2007q3.bb   |    6 ++++++
>  recipes/gcc/gcc-cross_csl-arm-2007q3.bb            |    2 +-
>  recipes/gcc/gcc_csl-arm-2007q3.bb                  |    2 +-
>  4 files changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb b/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb
> index c9f03a7..cfa64dc 100644
> --- a/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb
> +++ b/recipes/gcc/gcc-cross-initial_csl-arm-2007q3.bb
> @@ -4,3 +4,9 @@ require gcc-cross-initial.inc
>  S = "${WORKDIR}/gcc-4.2"
>  
>  EXTRA_OECONF += "--disable-libssp --disable-bootstrap --disable-libgomp --disable-libmudflap "
> +
> +# Hack till we fix *libc properly
> +do_install_append() {
> +	ln -sf ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include-fixed/* ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include/
> +}
> +
> diff --git a/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb b/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb
> index 5423626..3532590 100644
> --- a/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb
> +++ b/recipes/gcc/gcc-cross-intermediate_csl-arm-2007q3.bb
> @@ -4,3 +4,9 @@ require gcc-cross-intermediate.inc
>  S = "${WORKDIR}/gcc-4.2"
>  
>  EXTRA_OECONF += "--disable-libssp --disable-bootstrap --disable-libgomp --disable-libmudflap "
> +
> +# Hack till we fix *libc properly
> +do_install_append() {
> +	ln -sf ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include-fixed/* ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/include/
> +}
> +
> diff --git a/recipes/gcc/gcc-cross_csl-arm-2007q3.bb b/recipes/gcc/gcc-cross_csl-arm-2007q3.bb
> index 34bd251..adf7f5a 100644
> --- a/recipes/gcc/gcc-cross_csl-arm-2007q3.bb
> +++ b/recipes/gcc/gcc-cross_csl-arm-2007q3.bb
> @@ -1,4 +1,4 @@
> -PR = "r5"
> +PR = "r6"
>  
>  require gcc-csl-arm-2007q3.inc
>  require gcc-cross4.inc
> diff --git a/recipes/gcc/gcc_csl-arm-2007q3.bb b/recipes/gcc/gcc_csl-arm-2007q3.bb
> index cc7540a..2df12ef 100644
> --- a/recipes/gcc/gcc_csl-arm-2007q3.bb
> +++ b/recipes/gcc/gcc_csl-arm-2007q3.bb
> @@ -1,4 +1,4 @@
> -PR = "r3"
> +PR = "r4"
>  
>  require gcc-${PV}.inc
>  require gcc-configure-target.inc
> -- 
> 1.6.6.1
> 
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



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

end of thread, other threads:[~2010-02-09 21:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-09 17:38 [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1) Marcin Juszkiewicz
2010-02-09 17:38 ` [PATCH 2/3] gcc csl 2007q3: import header hack from Poky to get glibc 2.5 built Marcin Juszkiewicz
2010-02-09 21:10   ` Khem Raj
2010-02-09 17:38 ` [PATCH 3/3] file: added 5.04 (WIP) Marcin Juszkiewicz
2010-02-09 21:09 ` [PATCH 1/3] glibc 2.5: do not use asm/page.h header (taken from glibc 2.6.1) Khem Raj

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