Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-28 | toolchain: cris fixes for gcc 4.3.x / linux 2.6.28.x | Peter Korsgaard | |
Patches by Hinko Kocevar <hinko.kocevar@cetrtapot.si> | |||
2009-01-28 | toolchain/uClibc: fix 0.9.30 build with linuxthreads on ARM | Peter Korsgaard | |
Patch by Will Wagner <will_wagner@carallon.com> - From uclibc svn r25099. | |||
2009-01-28 | fix configuration wrt elf2flt | Peter Korsgaard | |
The buildroot toolchain is installed in $(STAGING_DIR)/usr/bin and not in $(STAGING_DIR)/bin so let,s adjust the --prefix accordingly. Also the BFLT binary format is always stripped by definition, so it is incompatible with any kind of stripping option. Signed-off-by: Nicolas Pitre <nico@cam.org> | |||
2009-01-28 | elf2flt: fix link | Peter Korsgaard | |
Seems like recent binutils has pulled in inflate support, so we need to link with zlib. | |||
2009-01-26 | toolchain/kernel-headers: remove ancient (and unused) patches | Peter Korsgaard | |
2009-01-26 | toolchain/binutils: remove ancient (and unused) 2.14/15/16/17 patches | Peter Korsgaard | |
2009-01-25 | Makefile: globally define variables used at different places | Peter Korsgaard | |
$(comma) and $(space) are used in packages and the toolchain. Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> | |||
2009-01-25 | kernel-headers: bump 2.6.27 / 2.6.28 to latest stable | Peter Korsgaard | |
2009-01-24 | toolchain/uClibc: disable UCLIBC_SUPPORT_AI_ADDRCONFIG in 0.9.30 defconfig | Peter Korsgaard | |
UCLIBC_SUPPORT_AI_ADDRCONFIG seems to have issues in 0.9.30 and cause segfaults on some architectures, so disable it. Reported and tracked down by "QuickX" <quickx@hotmail.com>. | |||
2009-01-23 | Fix unroll bug for ARM toolchain | Ulf Samuelsson | |
2009-01-23 | kernel-headers: fix 2.6.28.1 serial.h (unbreaks directfb serialmouse.c) | Peter Korsgaard | |
2009-01-23 | kernel-headers: rename 2.6.25/2.6.28 patches to match current stable versions | Peter Korsgaard | |
Otherwise they won't get applied. | |||
2009-01-22 | toolchain/gcc: make version detection more robust | Peter Korsgaard | |
Thanks to Bernhard for noticing (and less so for causing the problem in the first place :P) | |||
2009-01-22 | toolchain/gcc: fix target-gcc for 4.3.x | Peter Korsgaard | |
Includes are in include-fixed and GCC_LIB_SUBDIR needs to be set like for the rest of 4.x | |||
2009-01-19 | toolchain/kernel-headers: bump 2.6.27 / 2.6.28 versions | Peter Korsgaard | |
2009-01-19 | toolchain: introduce HOSTCC_VERSION and fix gcc-4.3.x build with old host CCs | Peter Korsgaard | |
gcc < 4.2.0 doesn't support -Wno-overlength-stings, but gcc-4.3.x configure fails to detect that, breaking the build. Work around it by detecting the host gcc version (and store in HOSTCC_VERSION) and set the proper configure variables for gcc < 4.2.0. | |||
2009-01-18 | Kconfig: remove 'default n' and 'default no' (see r22874) | Peter Korsgaard | |
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> | |||
2009-01-18 | The liboil Makefile will use "-mcpu=vfp" when building for ARM. | Ulf Samuelsson | |
The VFP is only available for a few ARM CPUs at the moment, so this breaks the liboil build. A patch is available upstream which only enables "-mfpu=vfp" if "--enable-vfp" is given to "configure". Autotools needs to be run for liboil for this to take effect. A new configuration BR2_VFP_FLOAT is added to allow enabling vfp. If this is "yes", then "-mfpu=vfp" is added to CFLAGS. | |||
2009-01-16 | Update broken AVR32 toolchain, and update configs for this, deprecate all ↵ | Ulf Samuelsson | |
but latest AVR32 toolchain | |||
2009-01-16 | toolchain/uClibc: mark 0.9.29 as recent | Peter Korsgaard | |
2009-01-16 | toolchain/gcc: mark old versions as deprecated | Peter Korsgaard | |
2009-01-16 | toolchain/gcc: default to 4.3.2 for !AVR32 | Peter Korsgaard | |
2009-01-16 | buildroot: convert remaining WGET users to DOWNLOAD helper | Peter Korsgaard | |
2009-01-16 | toolchain/: convert to DOWNLOAD helper | Peter Korsgaard | |
2009-01-15 | kernel-headers: mark 2.6.27 as RECENT, 2.6.26 as deprecated | Peter Korsgaard | |
2009-01-15 | kernel-headers: default to 2.6.28 | Peter Korsgaard | |
2009-01-15 | kernel-headers: bump 2.6.27 version | Peter Korsgaard | |
2009-01-13 | toolchain: sh64 fixes | Peter Korsgaard | |
- arch/sh and arch/sh64 got merged in 2.6.25, so use arch/sh for sh64 as well - use little endian for sh64, like for 32bit sh sh64 still doesn't build, but gets further along now. | |||
2009-01-12 | toolchain: fix cris build with 2.6.28 kernel headers | Peter Korsgaard | |
Patch by Hinko Kocevar <hinko.kocevar@cetrtapot.si> | |||
2009-01-12 | uclibc: 0.9.30-x86-2.6.28+headers-fix: add r24799 as well | Peter Korsgaard | |
Handle x86_84 as well. From uclibc r24799. | |||
2009-01-12 | toolchain/uclibc: fix sparc SED handling of _V9 / _V9B | Peter Korsgaard | |
2009-01-12 | buildroot: get rid of s390 support | Peter Korsgaard | |
As discussed on the list. It isn't supported by uclibc, so I strongly doubt anyone has been using it. | |||
2009-01-12 | toolchain/uclibc: propagate mips mips32r2 variant setting to uclibc | Peter Korsgaard | |
0.9.30 supports MIPS_ISA_MIPS32R2, so use it if mips32r2 variant is selected. | |||
2009-01-12 | toolchain/external-toolchain/ext-tool.mk: Support non sysroot-able toolchains | Daniel Laird | |
Only copy the sysroot files if the toolchain was built with sysroot support. Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com> | |||
2009-01-05 | add .empty files for git-svn | Peter Korsgaard | |
git-svn (and git) doesn't handle empty directories, so add .empty files to those dirs like elsewhere in buildroot. Those empty directories are normally not a big deal, but the recent changes to u-boot broke the build. | |||
2009-01-03 | Fix binutils Config for AVR32 (hopefully final version) | Ulf Samuelsson | |
2009-01-03 | one more fix of binutils config for AVR32 toolchain | Ulf Samuelsson | |
2009-01-03 | Unbreak AVR32 toolchain, by making binutils-2.17 available | Ulf Samuelsson | |
2009-01-02 | toolchain: revert "Allow creating a script for external use of Buildroot ↵ | Peter Korsgaard | |
toolchain" It's been 10 days now without any reply from Ulf, so revert r24480+r24481. | |||
2009-01-02 | toolchain/binutils: fix up avr32 related fallout of r24474 | Peter Korsgaard | |
It's been 10 days now without any reply from Ulf, so fix it up to what seems sensible. | |||
2009-01-02 | Remove whitespace damage in uclibc.mk | Ulf Samuelsson | |
2009-01-01 | dependencies: simplistic SHELL = bash check | Peter Korsgaard | |
2008-12-31 | * Added option to build with gcc 4.3.2 | Nigel Kukard | |
2008-12-31 | * Bump latest 2.6.27 kernel header version to 2.6.27.10 | Nigel Kukard | |
2008-12-29 | toolchain/uclibc: fix 0.9.30 x86 build with 2.6.28 headers (from r24515) | Peter Korsgaard | |
2008-12-28 | toolchain/kernel-headers: add 2.6.28 | Peter Korsgaard | |
Don't make it default yet as uclibc/busybox seems to have some issues with it. | |||
2008-12-23 | toolchain: disable export-toolchain stuff as it breaks make dependencies | Peter Korsgaard | |
For some reason Ulf's export-toolchain stuff breaks the build as the dependencies target isn't executed and SED isn't set. | |||
2008-12-23 | toolchain/uclibc: fix typo | Peter Korsgaard | |
2008-12-23 | toolchain/uclibc: Add BR2_ENABLE_LOCALE_PREGENERATED option | Peter Korsgaard | |
Add an option to either generate locales yourself or download the pregenerated set. Based on 4bdca9cc in Bernhard's tree. | |||
2008-12-21 | And make script for exported toolchain executable | Ulf Samuelsson | |