Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mingw: enable busybox --install by default | Ron Yorston | 2016-04-06 | 2 | -2/+2 |
| | | | | | | | | | | | Allow FEATURE_INSTALLER to be configured and enable it in the default configuration. The behaviour is slightly different from upstream BusyBox: symbolic links are not permitted; if no target directory is provided the directory containing the busybox binary is used as the target. | ||||
* | mingw: post-merge build fixes | Ron Yorston | 2016-04-04 | 2 | -4/+14 |
| | |||||
* | Merge branch 'busybox' into merge | Ron Yorston | 2016-04-04 | 9 | -8/+1150 |
|\ | |||||
| * | Rename FEATURE_INITRD to LINUXRC and make it separate, not an alias to init | Denys Vlasenko | 2016-03-31 | 9 | -9/+9 |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
| * | New example config: android_502_defconfig | Denys Vlasenko | 2016-03-14 | 1 | -0/+1142 |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | | mingw: remove bbconfig from default configuration | Ron Yorston | 2016-03-27 | 2 | -4/+4 |
| | | | | | | | | bbconfig isn't very useful. Removing it saves over 5KB. | ||||
* | | mingw: update default configuration | Ron Yorston | 2016-02-22 | 2 | -2/+10 |
| | | |||||
* | | find: enable -perm option in default configuration | Ron Yorston | 2015-11-03 | 2 | -2/+2 |
| | | |||||
* | | Update default configuration | Ron Yorston | 2015-11-01 | 2 | -18/+18 |
| | | |||||
* | | Merge branch 'busybox' into merge | Ron Yorston | 2015-10-31 | 4 | -4/+0 |
|\| | |||||
| * | remove systemd support | Denys Vlasenko | 2015-10-22 | 4 | -4/+0 |
| | | | | | | | | | | | | | | systemd people are not willing to play nice with the rest of the world. Therefore there is no reason for the rest of the world to cooperate with them. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | | Enable install applet and HTTP authentication in wget | Ron Yorston | 2015-10-20 | 2 | -44/+48 |
| | | |||||
* | | ln: enable in default configuration | Ron Yorston | 2015-10-19 | 2 | -4/+4 |
| | | |||||
* | | Update default configuration | Ron Yorston | 2015-10-13 | 2 | -14/+20 |
| | | |||||
* | | Merge branch 'busybox' into merge | Ron Yorston | 2015-10-13 | 1 | -69/+112 |
|\| | |||||
| * | updated android_ndk_defconfig | Denys Vlasenko | 2015-10-08 | 1 | -69/+112 |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | | less: port to WIN32 and enable by default | Ron Yorston | 2015-08-06 | 2 | -20/+20 |
| | | |||||
* | | Update default configuration after merge | Ron Yorston | 2015-08-04 | 2 | -4/+10 |
| | | |||||
* | | mingw: enable support for IPv6 | Ron Yorston | 2015-07-15 | 2 | -6/+6 |
| | | | | | | | | Import inet_pton from gnulib and enable IPv6 support by default. | ||||
* | | mingw: include unwind tables in 64-bit build by default | Ron Yorston | 2015-07-14 | 1 | -1/+1 |
| | | | | | | | | | | | | Add "-funwind-tables -fasynchronous-unwind-tables" to CFLAGS for the 64-bit build, overriding the usual default. Without this change setjmp/longjmp don't work. | ||||
* | | ipcalc: enable by default for WIN32 | Ron Yorston | 2015-07-13 | 2 | -8/+8 |
| | | |||||
* | | Allow different ways to manipulate environment for XP vs 64-bit | Ron Yorston | 2015-07-03 | 2 | -1/+1053 |
| | | | | | | | | | | | | | | | | | | | | | | Commit fa147bd 'Use putenv to implement unsetenv/clearenv' allowed BusyBox to run on ReactOS but broke it on Windows XP so it was reverted. It turns out that the same change is required on 64-bit Windows. Reinstate the 'safe' environment manipulation code but make it a configuration option. Add a config file for 64-bit Windows that does the right thing. | ||||
* | | Enable seamless compression for WIN32 | Ron Yorston | 2015-05-27 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the archival code we pretend that WIN32 is a no-MMU platform and use the new mingw_popen_fd routine to pipe data to/from commands to compress/decompress. The pretence is maintained by redefining MMU macros in bb_archive.h. This is mostly used in the archival code but there are a handful of places where it's used to access public interfaces. The symbol BB_ARCHIVE_PUBLIC is defined in these places. With these changes: tar supports seamless compression/decompression rpm2cpio and dpkg-deb can be enabled | ||||
* | | mingw: provide fake getgroups and getgrouplist | Ron Yorston | 2015-05-18 | 1 | -3/+3 |
| | | | | | | | | | | This makes it possible to enable the id and groups applets, though the results they return are worthless. | ||||
* | | Update default configuration following merge | Ron Yorston | 2015-05-18 | 1 | -1/+3 |
| | | |||||
* | | mingw: enable a minimal version of nc by default | Ron Yorston | 2015-04-22 | 1 | -3/+3 |
| | | |||||
* | | Allow globbing to be enabled with mingw64 | Ron Yorston | 2015-04-12 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | mingw64 handles globbing differently from mingw32. Add code to allow globbing to be enabled. (By default mingw64 has globbing disabled, though the default can be changed when it's compiled.) Also change the configuration option from ENABLE_NOGLOB to ENABLE_GLOBBING, because double negatives make me think too much. The default is still for globbing to be disabled. | ||||
* | | Add new truncate applet to mingw32_defconfig | Ron Yorston | 2015-03-23 | 1 | -1/+2 |
| | | |||||
* | | Post-merge fixes | Ron Yorston | 2015-03-14 | 1 | -15/+21 |
| | | |||||
* | | Enable logname in mingw32 configuration | Ron Yorston | 2015-02-27 | 1 | -3/+3 |
| | | |||||
* | | Use MinGW-w64 by default | Ron Yorston | 2015-01-07 | 1 | -2/+2 |
| | | |||||
* | | Update MinGW default configuration | Ron Yorston | 2014-12-14 | 1 | -3/+3 |
| | | |||||
* | | Enable vi line editing mode in default configuration | Ron Yorston | 2014-12-13 | 1 | -2/+2 |
| | | |||||
* | | ash: enable saving history to file in default config | Ron Yorston | 2014-12-06 | 1 | -4/+4 |
| | | |||||
* | | Update MinGW default configuration | Ron Yorston | 2014-10-06 | 1 | -3/+5 |
| | | |||||
* | | Update MinGW default configuration | Ron Yorston | 2014-06-30 | 1 | -1/+11 |
| | | |||||
* | | Update MinGW default configuration | Ron Yorston | 2014-05-06 | 1 | -5/+10 |
| | | |||||
* | | dc: enable pow and exp by default | Ron Yorston | 2014-03-17 | 1 | -2/+2 |
| | | |||||
* | | Drop CONFIG_WIN32_NET setting | Ron Yorston | 2014-03-17 | 1 | -1/+0 |
| | | |||||
* | | Improved support for characters above 0x7f | Ron Yorston | 2014-03-17 | 1 | -2/+2 |
| | | |||||
* | | wget: add fseek calls to make ftp work; enable ftpget/ftpput | Ron Yorston | 2014-03-16 | 1 | -4/+4 |
| | | |||||
* | | patch: fix and enable by default for mingw32 | Ron Yorston | 2014-03-12 | 1 | -2/+2 |
| | | |||||
* | | Enable 'tar -m' in mingw32_defconfig | Ron Yorston | 2014-03-12 | 1 | -2/+2 |
| | | |||||
* | | rev: fix to build with mingw32 | Ron Yorston | 2014-03-11 | 1 | -2/+2 |
| | | |||||
* | | Update mingw32_defconfig with new features | Ron Yorston | 2014-03-11 | 1 | -2/+5 |
| | | |||||
* | | tar: enable -X, -T and --exclude in MINGW32 configuration | Ron Yorston | 2014-01-16 | 1 | -1/+1 |
| | | |||||
* | | Remove feature that allows stat -f to be disabled | Ron Yorston | 2014-01-06 | 1 | -1/+0 |
| | | |||||
* | | Update mingw32 default configuration | Ron Yorston | 2014-01-02 | 1 | -30/+34 |
| | | |||||
* | | df: limited implementation for WIN32 | Ron Yorston | 2013-04-03 | 1 | -3/+3 |
| | | |||||
* | | Enable LFS support in MINGW config | Ron Yorston | 2013-03-14 | 1 | -3/+3 |
| | |