summaryrefslogtreecommitdiff
path: root/package/busybox/busybox-1.13.x.config
AgeCommit message (Collapse)Author
2010-04-17busybox: make sure architecture flags are used at link timeThomas Petazzoni
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>
2009-06-22busybox: 1.13.x defconfig: enable devmem appletPeter Korsgaard
Small and useful for a lot of early hardware testing/verification. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2008-11-21busybox: fixup id applet on 1.13.0 for old uclibc versionsPeter Korsgaard
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.
2008-11-15busybox: disable id applet for 1.13.xPeter Korsgaard
busybox 1.13.0 id applet doesn't compile with uclibc 0.9.29 / 0.9.28, so disable it for now.