summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.13.x.config
Commit message (Collapse)AuthorAgeFilesLines
* busybox: make sure architecture flags are used at link timeThomas Petazzoni2010-04-171-0/+1
| | | | | | | | | | | | | | | When compiling Busybox, according to readelf -A, all object files were properly compiled according to the select architecture (-march=armv4t for example), but the final busybox binary could be of a different architecture (ARMv5t even if ARMv4t was selected). This patch changes the way we configure/compile Busybox so that our CFLAGS aren't anymore passed through the make EXTRA_CFLAGS variable, but through the .config CONFIG_EXTRA_CFLAGS variable. Unfortunately, those variables don't have exactly the same semantic for the Busybox build system. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* busybox: 1.13.x defconfig: enable devmem appletPeter Korsgaard2009-06-221-1/+1
| | | | | | Small and useful for a lot of early hardware testing/verification. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: fixup id applet on 1.13.0 for old uclibc versionsPeter Korsgaard2008-11-211-1/+1
| | | | | | | | The id applet in 1.13.0 only compiles with uclibc < 0.9.30 if the busybox internal passwd/grp functions are used. Therefore, automatically enable CONFIG_USE_BB_PWD_GRP if that situation is detected and warn the user.
* busybox: disable id applet for 1.13.xPeter Korsgaard2008-11-151-0/+869
busybox 1.13.0 id applet doesn't compile with uclibc 0.9.29 / 0.9.28, so disable it for now.