Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | fix interaction of -a and -p options in swapon | Matt Whitlock | 2014-03-23 | 1 | -2/+5 | |
| | | | | | | | | | | | | | | Swap entries in /etc/fstab inherit the priority specified on the command line unless they have 'pri' in their mount options. Signed-off-by: Matt Whitlock <busybox@mattwhitlock.name> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | avoid calling bb_strtou twice in MIN macro expansion | Matt Whitlock | 2014-03-23 | 1 | -5/+8 | |
| | | | | | | | | | | | | | | Also, the maximum allowable value of swap priority is technically SWAP_FLAG_PRIO_MASK >> SWAP_FLAG_PRIO_SHIFT. Signed-off-by: Matt Whitlock <busybox@mattwhitlock.name> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | ntpd: add optional support for /etc/ntp.conf | Denys Vlasenko | 2014-03-23 | 2 | -4/+39 | |
| | | | | | | | | | | | | | | | | | | | | | | | | function old new delta add_peers - 98 +98 packed_usage 29470 29511 +41 ntp_init 407 428 +21 pw_encrypt 14 27 +13 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 3/0 up/down: 173/0) Total: 173 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | docs/new-applet-HOWTO.txt: tweak a bit | Denys Vlasenko | 2014-03-17 | 1 | -18/+15 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | libbb: fix a bad check for uclibc >= 0.9.31 | Denys Vlasenko | 2014-03-16 | 1 | -4/+7 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | docs: update new-applet-HOWTO.txt | Bartosz Golaszewski | 2014-03-16 | 1 | -35/+62 | |
| | | | | | | | | | | | | | | | | This patch adds some information about the gen_build_files.sh script and how it allows to keep the Kbuild, Config.in etc. declarations in .c files. Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | ash: make "locak VAR" unset VAR (bash does that) | Denys Vlasenko | 2014-03-16 | 3 | -0/+18 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | script: make it work even if fd 0 is closed | Denys Vlasenko | 2014-03-16 | 2 | -1/+8 | |
| | | | | | | | | | | | | | | Testcase: script -q -c "echo hey" /dev/null 0>&- Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | build system: for "find", use POSIX not operator (!) instead of -not | Denys Vlasenko | 2014-03-16 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | su: add a delay if the password is incorrect | Romain Naour | 2014-03-16 | 1 | -0/+1 | |
| | | | | | | | | | | Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | ash,hush: fix a thinko about 2^64-1 factorization | Denys Vlasenko | 2014-03-15 | 1 | -5/+11 | |
| | | | | | | | | | | | | | | function old new delta next_random 113 119 +6 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | hush: make "true" built-in | Denys Vlasenko | 2014-03-14 | 1 | -0/+1 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | random: cosmetic tweaks in debug code | Denys Vlasenko | 2014-03-13 | 1 | -2/+2 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | ash,hush: improve randomness of $RANDOM, add easy-ish way to test it | Denys Vlasenko | 2014-03-13 | 2 | -17/+135 | |
| | | | | | | | | | | | | | | | | function old new delta next_random 68 113 +45 change_random 103 121 +18 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | | ash: remove redundant comment | Ron Yorston | 2014-05-01 | 1 | -1/+0 | |
| | | ||||||
* | | ash: further tidying up of MinGW forkshell | Ron Yorston | 2014-04-30 | 1 | -41/+47 | |
| | | | | | | | | | | | | | | The forkpoint_fn in the forkshell structure was redundant as the fpid element indicated which function to call in the child. Explicitly set fpid before calling spawn_forkshell and replace the forkpoint_fn array with a function, forkshell_child. | |||||
* | | ash: tidy up MinGW forkshell | Ron Yorston | 2014-04-29 | 1 | -120/+129 | |
| | | | | | | | | | | | | | | Move some MinGW-specific code into sections at the top and bottom of the file. Exclude some code that isn't used in the MinGW port. | |||||
* | | ash: reset $RANDOM in subshell | Ron Yorston | 2014-04-28 | 1 | -0/+2 | |
| | | ||||||
* | | Move handling of Windows globbing out of upstream code | Ron Yorston | 2014-04-21 | 3 | -10/+5 | |
| | | ||||||
* | | lineedit: improve appearance of forward cursor movement | Ron Yorston | 2014-04-09 | 1 | -0/+40 | |
| | | ||||||
* | | Implement escape sequence for cursor down | Ron Yorston | 2014-04-09 | 1 | -21/+12 | |
| | | ||||||
* | | Use ANSI escape to move cursor back during line editing | Ron Yorston | 2014-04-07 | 1 | -0/+2 | |
| | | | | | | | | | | | | BusyBox attempts to optimise for slow terminals by using backspace for small movements. In the Windows console this results in the cursor becoming invisible during backward movement. | |||||
* | | Implement ANSI escape sequences for cursor up/forward | Ron Yorston | 2014-04-07 | 1 | -0/+30 | |
| | | | | | | | | | | These escape sequences are required for proper handling of line editing when the input exceeds the console width. | |||||
* | | Only change codepage of input character if top bit is set | Ron Yorston | 2014-03-24 | 1 | -2/+4 | |
| | | | | | | | | | | | | It seems that passing control characters through OemToCharBuff is not a good idea: some of them end up in the top half of the codepage. | |||||
* | | Provide fake getpwent_r to reduce changes from upstream | Ron Yorston | 2014-03-23 | 2 | -4/+3 | |
| | | ||||||
* | | Alter help message if configured with standalone shell | Ron Yorston | 2014-03-23 | 1 | -0/+9 | |
| | | ||||||
* | | Remove unnecessary differences from upstream BusyBox | Ron Yorston | 2014-03-23 | 2 | -2/+1 | |
| | | ||||||
* | | procps_scan: ensure command name is null terminated | Ron Yorston | 2014-03-23 | 1 | -1/+1 | |
| | | ||||||
* | | ps: exclude more unused code | Ron Yorston | 2014-03-23 | 3 | -2/+12 | |
| | | ||||||
* | | shell_common: exclude more unused ulimit code | Ron Yorston | 2014-03-23 | 1 | -7/+6 | |
| | | ||||||
* | | ash: set fake PPID value | Ron Yorston | 2014-03-20 | 1 | -3/+2 | |
| | | ||||||
* | | Add empty sys/syscall.h | Ron Yorston | 2014-03-20 | 2 | -1/+1 | |
| | | ||||||
* | | Implement vprintf replacement | Ron Yorston | 2014-03-20 | 2 | -1/+4 | |
| | | ||||||
* | | Implement getc replacement | Ron Yorston | 2014-03-20 | 2 | -0/+26 | |
| | | ||||||
* | | Implement read replacement to handle OEM codepages | Ron Yorston | 2014-03-20 | 2 | -0/+28 | |
| | | ||||||
* | | Fixes to write replacement | Ron Yorston | 2014-03-20 | 1 | -2/+2 | |
| | | ||||||
* | | clear: undo mingw32-specific changes | Ron Yorston | 2014-03-20 | 1 | -9/+0 | |
| | | ||||||
* | | Implement write replacement to handle OEM codepages | Ron Yorston | 2014-03-20 | 2 | -1/+77 | |
| | | ||||||
* | | Implement puts replacement to handle OEM codepages | Ron Yorston | 2014-03-19 | 2 | -4/+26 | |
| | | ||||||
* | | Use OEM codepage for console I/O | Ron Yorston | 2014-03-19 | 3 | -4/+87 | |
| | | | | | | | | | | | | | | | | | | | | Windows console applications use different codepages for console I/O and the rest of the API: http://msdn.microsoft.com/en-us/goglobal/bb688114.aspx#E2F Attempt to workaround this by converting characters when they're read from and written to the console. Not all possible paths are handled. | |||||
* | | 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 | 8 | -34/+6 | |
| | | ||||||
* | | Improved support for characters above 0x7f | Ron Yorston | 2014-03-17 | 2 | -3/+3 | |
| | | ||||||
* | | Convert argv[0] to lowercase before checking for '.exe' | Ron Yorston | 2014-03-17 | 1 | -5/+8 | |
| | | ||||||
* | | wget: add fseek calls to make ftp work; enable ftpget/ftpput | Ron Yorston | 2014-03-16 | 3 | -4/+16 | |
| | | ||||||
* | | Fix some compiler warnings | Ron Yorston | 2014-03-13 | 6 | -14/+16 | |
| | | ||||||
* | | Allow utimes to change times on directories | Ron Yorston | 2014-03-13 | 1 | -8/+21 | |
| | | ||||||
* | | Pretend chown succeeds so 'cp -rp' doesn't complain | Ron Yorston | 2014-03-13 | 1 | -1/+1 | |
| | | ||||||
* | | patch: fix and enable by default for mingw32 | Ron Yorston | 2014-03-12 | 2 | -2/+7 | |
| | | ||||||
* | | Enable 'tar -m' in mingw32_defconfig | Ron Yorston | 2014-03-12 | 1 | -2/+2 | |
| | |