| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge branch 'busybox' into merge | Ron Yorston | 2020-01-08 | 2 | -9/+21 |
|\ |
|
| * | bc: fix comparison bug, closes 12336 | Denys Vlasenko | 2019-11-23 | 1 | -1/+4 |
| * | hdparm: placate "warning: taking the absolute value of unsigned type" | Denys Vlasenko | 2019-10-25 | 1 | -1/+1 |
| * | bc: Add 'U' suffix in UINT_MAX preprocessor check | Kang-Che Sung | 2019-09-12 | 1 | -2/+2 |
| * | dc: Parse error & fix out of bounds read in xc_program_printString | Brian Foley | 2019-09-05 | 1 | -2/+4 |
| * | dc: Fix segfault when executing strings generated using asciify | Brian Foley | 2019-09-05 | 1 | -2/+8 |
| * | dc: execute shouldn't pop if stack head is not a string | Brian Foley | 2019-09-05 | 1 | -1/+2 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-08-16 | 19 | -73/+78 |
|\| |
|
| * | libbb: reduce the overhead of single parameter bb_error_msg() calls | James Byrne | 2019-07-02 | 19 | -71/+76 |
| * | bc: placate compiler warnings | Denys Vlasenko | 2019-06-08 | 1 | -2/+2 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-05-27 | 3 | -11/+24 |
|\| |
|
| * | dc: make 4 % 0 emit error messgaes and set result to 0 | Denys Vlasenko | 2019-05-16 | 1 | -7/+12 |
| * | dc: code shrink | Denys Vlasenko | 2019-05-09 | 1 | -6/+16 |
| * | Optionally re-introduce bb_info_msg() | James Byrne | 2019-04-30 | 2 | -5/+3 |
* | | less: use alternate screen buffer | Ron Yorston | 2019-04-07 | 1 | -1/+5 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-03-31 | 4 | -33/+111 |
|\| |
|
| * | man: add "/usr/share/man" as another default MANPATH, fix col override | Denys Vlasenko | 2019-03-30 | 1 | -20/+13 |
| * | man: don't skip default path which appears in config file | Ron Yorston | 2019-03-26 | 1 | -1/+5 |
| * | ts: do call localtime() when neither -s nor -i specified | Denys Vlasenko | 2019-03-26 | 1 | -1/+1 |
| * | ts: use gettimeofday - we don't use nanoseconds here | Denys Vlasenko | 2019-03-26 | 1 | -13/+9 |
| * | ts: replace overlapping strcpy with shorter code | Denys Vlasenko | 2019-03-26 | 1 | -1/+2 |
| * | ts: fix incorrect (copy-pasted) copyright attribution | Denys Vlasenko | 2019-03-26 | 1 | -4/+3 |
| * | ts: new applet | Denys Vlasenko | 2019-03-26 | 1 | -0/+88 |
| * | do not duplicate CONFIG_PID_FILE_PATH and ".pid" strings | Denys Vlasenko | 2019-03-17 | 2 | -3/+3 |
* | | win32: interpret absolute paths as relative to %SYSTEMDRIVE% | Ron Yorston | 2019-03-28 | 1 | -1/+13 |
* | | man: proper handling of default path and config file | Ron Yorston | 2019-03-28 | 1 | -0/+4 |
* | | man: don't skip default path which appears in config file | Ron Yorston | 2019-03-28 | 1 | -1/+5 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-02-12 | 2 | -87/+360 |
|\| |
|
| * | i2c_tools.c: i2ctransfer | Nikolaus Voss | 2019-02-11 | 1 | -5/+3 |
| * | i2ctransfer: new applet | Nikolaus Voss | 2019-02-10 | 1 | -1/+177 |
| * | bc: implement pass-by-reference code from upstream | Denys Vlasenko | 2019-01-25 | 1 | -86/+185 |
* | | iconv: depends on PLATFORM_MINGW32 | Ron Yorston | 2019-01-10 | 1 | -0/+1 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-01-10 | 36 | -110/+7501 |
|\| |
|
| * | bc: code shrink | Denys Vlasenko | 2019-01-09 | 1 | -14/+14 |
| * | bc: remove "empty expression" check/message, parsing fails in these cases anyway | Denys Vlasenko | 2019-01-08 | 1 | -3/+4 |
| * | bc: zbc_parse_expr_empty_ok() is unused except by zbc_parse_expr(), fold it in | Denys Vlasenko | 2019-01-08 | 1 | -36/+25 |
| * | bc: disallow invalid syntax like "{ print 1 print 2 }" | Denys Vlasenko | 2019-01-08 | 1 | -15/+21 |
| * | sleep: support "inf" | Denys Vlasenko | 2019-01-07 | 1 | -1/+0 |
| * | bc: shorten "limits" output | Denys Vlasenko | 2019-01-04 | 1 | -4/+1 |
| * | bc: formatting changes, added a FIXME comment, no logic changes | Denys Vlasenko | 2019-01-04 | 1 | -5/+8 |
| * | bc: support void functions (GNU compat) | Denys Vlasenko | 2019-01-04 | 1 | -19/+56 |
| * | dc: fit returning of string | Denys Vlasenko | 2019-01-04 | 1 | -5/+13 |
| * | dc: fix '?' | Denys Vlasenko | 2019-01-04 | 1 | -9/+4 |
| * | bc: eliminate struct BcInstPtr::results_len_before_call, it is redundant | Denys Vlasenko | 2019-01-04 | 1 | -10/+1 |
| * | bc: add a palceholder comment for "void" return | Denys Vlasenko | 2019-01-04 | 1 | -11/+15 |
| * | bc: remove extra div/0 test, remove test for string function parameter | Denys Vlasenko | 2019-01-04 | 1 | -8/+7 |
| * | bc: fix "...; return}" to work, disallow "return ()" | Denys Vlasenko | 2019-01-03 | 1 | -8/+5 |
| * | bc: make error line number also size_t, like everything else | Denys Vlasenko | 2019-01-02 | 1 | -6/+8 |
| * | bc: speed up string printing, fix print "" | Denys Vlasenko | 2019-01-02 | 1 | -44/+22 |
| * | bc: upstream fixes | Denys Vlasenko | 2019-01-01 | 1 | -83/+94 |