[Armadeus-commitlog] armadeus branch, master, updated. release-3.2-406-g41349b4
Brought to you by:
sszy
|
From: Julien B a. A. <ar...@us...> - 2010-06-04 13:44:05
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 41349b4f214d9ea4a2beb18577dac44c071cc932 (commit)
via c4c563b7b269591bc789150ca38c0e2c6e290098 (commit)
from e0e5362e9f57354f2d0d8841507a5fc5ea279e42 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 41349b4f214d9ea4a2beb18577dac44c071cc932
Author: Julien Boibessot <jul...@ar...>
Date: Fri Jun 4 15:43:31 2010 +0200
[BUILDROOT] Put correct BR2_GNU_TARGET_SUFFIX in apf27 BR default configs
commit c4c563b7b269591bc789150ca38c0e2c6e290098
Author: Julien Boibessot <jul...@ar...>
Date: Fri Jun 4 15:40:37 2010 +0200
[BUILDROOT] gcc 4.2.x: add support for --with-abi=aapcs-linux configure option
-----------------------------------------------------------------------
Summary of changes:
buildroot/local/apf27_test/apf27_test.config | 4 +-
.../target/device/armadeus/apf27/apf27_defconfig | 4 +-
...-linux_eabi_config_option_support_for_arm.patch | 51 ++++++++++++++++++++
...-linux_eabi_config_option_support_for_arm.patch | 51 ++++++++++++++++++++
4 files changed, 106 insertions(+), 4 deletions(-)
create mode 100644 patches/buildroot/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch
create mode 100644 patches/buildroot/2010.02/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch
diff --git a/buildroot/local/apf27_test/apf27_test.config b/buildroot/local/apf27_test/apf27_test.config
index 504ee04..3268f3f 100644
--- a/buildroot/local/apf27_test/apf27_test.config
+++ b/buildroot/local/apf27_test/apf27_test.config
@@ -1,6 +1,6 @@
#
# Automatically generated make config: don't edit
-# Thu Jun 3 17:54:06 2010
+# Fri Jun 4 11:20:33 2010
#
BR2_HAVE_DOT_CONFIG=y
BR2_VERSION="0.10.0-svn"
@@ -132,7 +132,7 @@ BR2_TOPDIR_SUFFIX=""
BR2_ROOTFS_PREFIX="$(BR2_BOARD_NAME)-rootfs"
BR2_ROOTFS_SUFFIX=""
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
-BR2_GNU_TARGET_SUFFIX="linux-uclibc"
+BR2_GNU_TARGET_SUFFIX="linux-uclibcgnueabi"
BR2_JLEVEL=1
# BR2_PREFER_IMA is not set
# BR2_DEPRECATED is not set
diff --git a/buildroot/target/device/armadeus/apf27/apf27_defconfig b/buildroot/target/device/armadeus/apf27/apf27_defconfig
index 4915166..aecd419 100644
--- a/buildroot/target/device/armadeus/apf27/apf27_defconfig
+++ b/buildroot/target/device/armadeus/apf27/apf27_defconfig
@@ -1,6 +1,6 @@
#
# Automatically generated make config: don't edit
-# Thu Jun 3 17:54:06 2010
+# Fri Jun 4 11:20:33 2010
#
BR2_HAVE_DOT_CONFIG=y
BR2_VERSION="0.10.0-svn"
@@ -132,7 +132,7 @@ BR2_TOPDIR_SUFFIX=""
BR2_ROOTFS_PREFIX="$(BR2_BOARD_NAME)-rootfs"
BR2_ROOTFS_SUFFIX=""
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
-BR2_GNU_TARGET_SUFFIX="linux-uclibc"
+BR2_GNU_TARGET_SUFFIX="linux-uclibcgnueabi"
BR2_JLEVEL=1
# BR2_PREFER_IMA is not set
# BR2_DEPRECATED is not set
diff --git a/patches/buildroot/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch b/patches/buildroot/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch
new file mode 100644
index 0000000..84a69ff
--- /dev/null
+++ b/patches/buildroot/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch
@@ -0,0 +1,51 @@
+Allows gcc 4.2.1 & gcc 4.2.4 to accept --with-abi=aapcs-linux at configure
+stage.
+
+Taken from buildroot/toolchain/gcc/4.3.x/
+
+Index: buildroot/toolchain/gcc/4.2.1/999-4.2.1-armeabi-aapcs-linux.patch
+===================================================================
+--- /dev/null 1970-01-01 00:00:00.000000000 +0000
++++ buildroot/toolchain/gcc/4.2.1/999-4.2.1-armeabi-aapcs-linux.patch 2010-06-04 15:25:53.000000000 +0200
+@@ -0,0 +1,18 @@
++\\\\ followup of PR34205; trying to use aapcs-linux
++\\ gcc/ChangeLog
++\\
++\\ 2008-09-18 Bernhard Reutner-Fischer <aldot@>
++\\
++\\ * config.gcc (arm*-*-*): Add aapcs-linux to supported ABIs.
++\\
++--- gcc-4.2.1.orig/gcc/config.gcc 2008-09-18 20:33:55.000000000 +0200
+++++ gcc-4.2.1/gcc/config.gcc 2008-09-18 21:38:52.000000000 +0200
++@@ -2714,7 +2714,7 @@
++
++ case "$with_abi" in
++ "" \
++- | apcs-gnu | atpcs | aapcs | iwmmxt )
+++ | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
++ #OK
++ ;;
++ *)
+Index: buildroot/toolchain/gcc/4.2.4/999-4.2.4-armeabi-aapcs-linux.patch
+===================================================================
+--- /dev/null 1970-01-01 00:00:00.000000000 +0000
++++ buildroot/toolchain/gcc/4.2.4/999-4.2.4-armeabi-aapcs-linux.patch 2010-06-04 15:27:11.000000000 +0200
+@@ -0,0 +1,18 @@
++\\\\ followup of PR34205; trying to use aapcs-linux
++\\ gcc/ChangeLog
++\\
++\\ 2008-09-18 Bernhard Reutner-Fischer <aldot@>
++\\
++\\ * config.gcc (arm*-*-*): Add aapcs-linux to supported ABIs.
++\\
++--- gcc-4.2.4.orig/gcc/config.gcc 2008-09-18 20:33:55.000000000 +0200
+++++ gcc-4.2.4/gcc/config.gcc 2008-09-18 21:38:52.000000000 +0200
++@@ -2714,7 +2714,7 @@
++
++ case "$with_abi" in
++ "" \
++- | apcs-gnu | atpcs | aapcs | iwmmxt )
+++ | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
++ #OK
++ ;;
++ *)
diff --git a/patches/buildroot/2010.02/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch b/patches/buildroot/2010.02/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch
new file mode 100644
index 0000000..84a69ff
--- /dev/null
+++ b/patches/buildroot/2010.02/112-gcc-4_2_x-add_aapcs-linux_eabi_config_option_support_for_arm.patch
@@ -0,0 +1,51 @@
+Allows gcc 4.2.1 & gcc 4.2.4 to accept --with-abi=aapcs-linux at configure
+stage.
+
+Taken from buildroot/toolchain/gcc/4.3.x/
+
+Index: buildroot/toolchain/gcc/4.2.1/999-4.2.1-armeabi-aapcs-linux.patch
+===================================================================
+--- /dev/null 1970-01-01 00:00:00.000000000 +0000
++++ buildroot/toolchain/gcc/4.2.1/999-4.2.1-armeabi-aapcs-linux.patch 2010-06-04 15:25:53.000000000 +0200
+@@ -0,0 +1,18 @@
++\\\\ followup of PR34205; trying to use aapcs-linux
++\\ gcc/ChangeLog
++\\
++\\ 2008-09-18 Bernhard Reutner-Fischer <aldot@>
++\\
++\\ * config.gcc (arm*-*-*): Add aapcs-linux to supported ABIs.
++\\
++--- gcc-4.2.1.orig/gcc/config.gcc 2008-09-18 20:33:55.000000000 +0200
+++++ gcc-4.2.1/gcc/config.gcc 2008-09-18 21:38:52.000000000 +0200
++@@ -2714,7 +2714,7 @@
++
++ case "$with_abi" in
++ "" \
++- | apcs-gnu | atpcs | aapcs | iwmmxt )
+++ | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
++ #OK
++ ;;
++ *)
+Index: buildroot/toolchain/gcc/4.2.4/999-4.2.4-armeabi-aapcs-linux.patch
+===================================================================
+--- /dev/null 1970-01-01 00:00:00.000000000 +0000
++++ buildroot/toolchain/gcc/4.2.4/999-4.2.4-armeabi-aapcs-linux.patch 2010-06-04 15:27:11.000000000 +0200
+@@ -0,0 +1,18 @@
++\\\\ followup of PR34205; trying to use aapcs-linux
++\\ gcc/ChangeLog
++\\
++\\ 2008-09-18 Bernhard Reutner-Fischer <aldot@>
++\\
++\\ * config.gcc (arm*-*-*): Add aapcs-linux to supported ABIs.
++\\
++--- gcc-4.2.4.orig/gcc/config.gcc 2008-09-18 20:33:55.000000000 +0200
+++++ gcc-4.2.4/gcc/config.gcc 2008-09-18 21:38:52.000000000 +0200
++@@ -2714,7 +2714,7 @@
++
++ case "$with_abi" in
++ "" \
++- | apcs-gnu | atpcs | aapcs | iwmmxt )
+++ | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
++ #OK
++ ;;
++ *)
hooks/post-receive
--
armadeus
|