diff options
author | Jouko Nikula <jouko.nikula@espotel.com> | 2013-10-27 14:51:19 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-27 15:29:38 +0100 |
commit | 200bf74e8e4686c3f132a6600ae6803eda8b588a (patch) | |
tree | 16d77bb182214383f3692c3d91af65c415fe35cc /support/gnuconfig/patches/0002-config-add-support-for-ps2.patch | |
parent | ff0367008c683362f422751644237218b1c45def (diff) | |
download | buildroot-200bf74e8e4686c3f132a6600ae6803eda8b588a.tar.gz buildroot-200bf74e8e4686c3f132a6600ae6803eda8b588a.zip |
Update config.guess and config.sub scripts to latest versions.
Current version of config.guess may fail to detect host libc version,
which results in problems with configure when building gcc. Current patches
are removed. Patch to add support for ps2 is removed as it was discussed on
buildroot mailing list that it is no longer needed.
[Arnout: drop the 'improve uClibc' patch, update commit message, update to
more recent version, update README.]
Signed-off-by: Jouko Nikula <jouko.nikula@espotel.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support/gnuconfig/patches/0002-config-add-support-for-ps2.patch')
-rw-r--r-- | support/gnuconfig/patches/0002-config-add-support-for-ps2.patch | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/support/gnuconfig/patches/0002-config-add-support-for-ps2.patch b/support/gnuconfig/patches/0002-config-add-support-for-ps2.patch deleted file mode 100644 index 781b9588d6..0000000000 --- a/support/gnuconfig/patches/0002-config-add-support-for-ps2.patch +++ /dev/null @@ -1,60 +0,0 @@ -From 144194fe916a14b630324c19f7b098109122bca2 Mon Sep 17 00:00:00 2001 -From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Date: Thu, 15 Nov 2012 17:01:25 +0100 -Subject: [PATCH 2/2] config: add support for ps2 - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - config.sub | 22 ++++++++++++++++++++-- - 1 file changed, 20 insertions(+), 2 deletions(-) - -diff --git a/config.sub b/config.sub -index 89b1286..8509813 100755 ---- a/config.sub -+++ b/config.sub -@@ -265,7 +265,7 @@ case $basic_machine in - | be32 | be64 \ - | bfin \ - | c4x | clipper \ -- | d10v | d30v | dlx | dsp16xx \ -+ | d10v | d30v | dlx | dsp16xx | dvp \ - | epiphany \ - | fido | fr30 | frv \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ -@@ -813,6 +813,24 @@ case $basic_machine in - basic_machine=m68k-atari - os=-mint - ;; -+ mipsEE* | ee | ps2) -+ basic_machine=mips64r5900el-scei -+ case $os in -+ -linux*) -+ ;; -+ *) -+ os=-elf -+ ;; -+ esac -+ ;; -+ iop) -+ basic_machine=mipsel-scei -+ os=-irx -+ ;; -+ dvp) -+ basic_machine=dvp-scei -+ os=-elf -+ ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; -@@ -1375,7 +1393,7 @@ case $os in - | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ -- | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) -+ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -irx*) - # Remember, each alternative MUST END IN *, to match a version number. - ;; - -qnx*) --- -1.7.9.5 - |