summaryrefslogtreecommitdiffstats
path: root/package/busybox
Commit message (Collapse)AuthorAgeFilesLines
* busybox: additional 1.17.2 fixesPeter Korsgaard2010-09-052-0/+617
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: Bump to 1.17.2Gustavo Zacarias2010-09-058-355/+16
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: additional 1.17.1 fixesPeter Korsgaard2010-08-254-5/+176
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update busybox 1.17.1 fixesGustavo Zacarias2010-08-112-0/+85
| | | | | | New shell_common fix and sed fix. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
* busybox: 1.17.1 mktemp fixPeter Korsgaard2010-07-291-0/+12
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uClibc: remove old 0.9.28 supportPeter Korsgaard2010-07-291-1/+1
| | | | | | Not supported upstream and needs complicated workaround for the NPTL stuff. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump 1.17.x versionPeter Korsgaard2010-07-2614-1027/+87
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: fix cflagsGustavo Zacarias2010-07-221-14/+14
| | | | | | | Pass CFLAGS as env rather than opt to allow the build system to tweak them. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: additional 1.17.0 fixesPeter Korsgaard2010-07-226-4/+763
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* move default skeleton to fs/ and drop busybox skeletonDmytro Milinevskyy2010-07-182-14/+0
| | | | | | | [Peter: fixup patch, adjust for busybox.mk changes] Signed-off-by: Dmytro Milinevskyy <milinevskyy@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.17.0 dos2unix fixPeter Korsgaard2010-07-181-0/+12
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: default to v1.17.xPeter Korsgaard2010-07-121-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busbox: add 1.17.0 upstream fixesPeter Korsgaard2010-07-126-0/+255
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: add 1.17.0, convert to gentargets, drop 1.12, deprecate 1.13 and 1.15Gustavo Zacarias2010-07-124-230/+371
| | | | | | | | Closes #2167 [Peter: fix CONFIG_ID workaround for old uClibcs] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update all packages to quote $(TARGET_CC)Thomas Petazzoni2010-07-071-3/+3
| | | | | | | Now that TARGET_CC contains several space-separated words, it must be used quoted everywhere. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* busybox: add 1.16.2 devmem fix for access to the highest pagePeter Korsgaard2010-06-141-0/+76
| | | | | | | | | From busybox git. Devmem used to always map 2 pages in case the access would cross a page boundary, which fails if you try to access the highest page. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump 1.16.x versionPeter Korsgaard2010-06-147-368/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.16.1 fixes for dhcpd and sedPeter Korsgaard2010-05-162-7/+61
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: disable MTD utils in default configurationThomas Petazzoni2010-05-071-4/+4
| | | | | | | | | | | The MTD utils require MTD headers in the toolchain, and in several external toolchains, they are not present. In order to make the build work by default, let's disable the MTD Busybox applets in our default configuration. Fixes bug #1669 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* busybox: 1.16.1 fixes for ash and cpioPeter Korsgaard2010-05-013-5/+90
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: pass EXTRA_LDFLAGS for external toolchainsGrant Edwards2010-05-011-0/+2
| | | | | | | | | Closes #1321 [Peter: Rework patch to make it apply to git] Signed-off-by: Grant Edwards <grant.b.edwards@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'codesourcery-toolchain-support' of ↵Peter Korsgaard2010-04-212-4/+5
|\ | | | | | | git://git.busybox.net/~tpetazzoni/git/buildroot
| * busybox: make sure architecture flags are used at link timeThomas Petazzoni2010-04-172-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: add 1.16.1 sed fixPeter Korsgaard2010-04-201-0/+47
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | busybox: get rid of unused initramfs.mk filePeter Korsgaard2010-04-201-141/+0
|/ | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.16.1 dnsd / hwclock fixesPeter Korsgaard2010-04-142-0/+181
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Get rid of all usages of BR2_RECENTThomas Petazzoni2010-04-121-2/+0
| | | | | | | | | | | | Since BR2_RECENT was enabled by default, we do not want entries marked BR2_RECENT (and thus appearing by default in Buildroot) to disappear. Therefore, all the entries marked BR2_RECENT are converted as non-deprecated. We can later decide, on a per-entry basis, to add BR2_DEPRECATED to some of them. But at least, this commit doesn't change the default current behaviour of Buildroot. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Remove BR2_PREFER_IMAThomas Petazzoni2010-04-112-16/+0
| | | | | | | This option is barely used, no-one is maintaining it or extending it. So let's remove it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* busybox initramfs: do not use the IMAGE variableThomas Petazzoni2010-04-091-1/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* busybox: respect BR2_PREFER_STATIC_LIBPeter Korsgaard2010-04-051-0/+5
| | | | | | Build static version if requested in BR config. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: indent sub optionsPeter Korsgaard2010-04-021-10/+11
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump 1.16.x stable versionPeter Korsgaard2010-03-2917-2256/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: additional 1.16.0 fixesPeter Korsgaard2010-03-223-0/+113
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.16.0 beep fixPeter Korsgaard2010-03-181-0/+17
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.16.0 tail fixPeter Korsgaard2010-03-121-0/+13
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: additional 1.16.0 fixesPeter Korsgaard2010-03-082-0/+105
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Revert "busybox: add upstream 1.16 fix"Peter Korsgaard2010-02-261-13/+0
| | | | | | | | | This reverts commit 1d7b6f65c633865b25c8603975f9aec88e4e1275. The fsync patch tries to add the same lines already added by busybox-1.16.0-compat.patch, so skip it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: add upstream 1.16 fixThomas Petazzoni2010-02-261-0/+13
| | | | | | | Fixes https://bugs.busybox.net/show_bug.cgi?id=1177, available at http://busybox.net/downloads/fixes-1.16.0/busybox-1.16.0-fsync.patch. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* busybox: add 1.16.0 fixesPeter Korsgaard2010-02-249-0/+2007
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: add 1.16.x specific defconfigPeter Korsgaard2010-01-312-2/+922
| | | | | | | | | Closes #1003. Several config options have gotten renamed in 1.16, making the 1.13.x defconfig not enable the stuff we want. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump versionPeter Korsgaard2010-01-261-2/+8
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump 1.15.x stable versionPeter Korsgaard2009-12-128-1504/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.15.2 patchesPeter Korsgaard2009-12-047-25/+1424
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.15.2 flash_eraseall fix for modern kernel headersPeter Korsgaard2009-11-281-0/+104
| | | | | | 86cfb70ca upstream. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: look at kernel headers for include files as wellPeter Korsgaard2009-11-281-3/+4
| | | | | | E.G. for flash_* applets. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: show packages with busybox alternatives if busybox is disabledPeter Korsgaard2009-10-271-2/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: invert hide optionPeter Korsgaard2009-10-151-4/+3
| | | | | | | | | | Invert the BR2_PACKAGE_BUSYBOX_HIDE_OTHERS option to use positive logic, renaming it to _SHOW_OTHERS. Positive logic is simpler to understand, and it makes all{,package}config do the right thing. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump 1.15.x stable versionPeter Korsgaard2009-10-0810-822/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.15.1 find fixPeter Korsgaard2009-09-301-0/+230
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: 1.15.1 lineedit fixPeter Korsgaard2009-09-291-0/+156
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>