aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Use Windows library for cryptographic checksumscng_backendRon Yorston2025-06-099-9/+155
* win32: update implementation of select(2)Ron Yorston2025-05-261-2/+5
* win32: update implementation of strptime(3)Ron Yorston2025-05-261-18/+18
* win32: update inet_pton(3) implementationRon Yorston2025-05-261-0/+1
* win32: update glob(3) implementationRon Yorston2025-05-261-1/+1
* Merge branch 'busybox' into mergeRon Yorston2025-05-1920-119/+286
|\
| * cpio: error out if the file to be achived is >=4GBDenys Vlasenko2025-04-211-0/+6
| * rpm2cpio: extract cpio even if compression is not knownDenys Vlasenko2025-04-201-1/+6
| * libbb/archival: make setup_unzip_on_fd() return bytes read if not compressedDenys Vlasenko2025-04-207-23/+25
| * runit: fix setuidgid help textJ. Neuschäfer2025-04-171-1/+2
| * archival: disallow path traversals (CVE-2023-39810)Denys Vlasenko2025-04-165-2/+48
| * syslogd: Fix 'OPT_locallog' check regression in 'syslogd_main'Grant Erickson2025-04-081-1/+1
| * udhcpd: send DHCPOFFERs as unicast (unless clients specifically asks for bcast)Denys Vlasenko2025-04-071-16/+42
| * Makefile: fix passing of EXTRA_LDLIBSDenys Vlasenko2025-04-061-1/+5
| * init: improve log message when a process exits: show exit codeSébastien Parisot2025-04-061-3/+15
| * udhcpc6: fix copy-paste error in "generate a consistent IAID" commitDenys Vlasenko2025-02-091-1/+1
| * udhcpc6: generate a consistent IAIDZhou Siqi2025-02-091-2/+27
| * udhcpc6: move block comment, no code changesDenys Vlasenko2025-02-091-61/+61
| * udhcpc6: improvementsLaurent Bercot2025-02-092-32/+72
* | build system: include stack unwind tablesRon Yorston2025-05-186-0/+22
* | Update PDCursesRon Yorston2025-04-1027-360/+420
* | win32: fake directories in readdir(2)Ron Yorston2025-03-171-5/+23
* | win32: enhanced support for SIGPIPEFRP-5579-g5749feb35Ron Yorston2025-02-081-4/+0
* | win32: retry when command needs elevated privilegesRon Yorston2025-02-034-12/+71
* | make: fix detection of target rule with inline commandRon Yorston2025-01-221-2/+16
* | make: fix single-suffix inference rule regressionRon Yorston2025-01-212-3/+24
* | make: phony targets and double colon rulesRon Yorston2025-01-161-7/+12
* | make: minor tweaksRon Yorston2025-01-161-32/+37
* | make: support GNU/BSD suffixes and inference rulesRon Yorston2025-01-143-71/+224
* | win32: fix compilation with FEATURE_SH_NOFORK disabledRon Yorston2024-12-312-3/+5
* | Merge branch 'busybox' into mergeRon Yorston2024-12-307-208/+422
|\|
| * cut: code shrinkDenys Vlasenko2024-12-211-6/+5
| * cut: code shrinkDenys Vlasenko2024-12-211-9/+13
| * cut: fix up -D/-s behavior with -FDenys Vlasenko2024-12-202-5/+36
| * cut: remove unnecessary initialization of regmatch_tDenys Vlasenko2024-12-201-1/+1
| * cut: shorten error messages on bad syntax even moreDenys Vlasenko2024-12-161-10/+6
| * cut: shorten error messages on bad syntaxDenys Vlasenko2024-12-161-3/+3
| * cut: terminate cut_list[] so that we don't need "size of the array" variableDenys Vlasenko2024-12-161-20/+25
| * cut: we can't get empty cut_list[], remove the check for thatDenys Vlasenko2024-12-161-8/+11
| * cut: disallow -f '' and -f '-'Denys Vlasenko2024-12-151-15/+19
| * cut: fix -F n-m to match toyboxDenys Vlasenko2024-12-142-3/+28
| * cut: simplify getopt32 codeDenys Vlasenko2024-12-131-11/+8
| * cut: "it's legal to pass an empty list" seems to be untrueDenys Vlasenko2024-12-131-46/+44
| * cut: whitespace fixesDenys Vlasenko2024-12-131-3/+3
| * cut: tweak commentsDenys Vlasenko2024-12-131-3/+2
| * cut: fix handling of -d ''Denys Vlasenko2024-12-132-1/+13
| * cut: prevent infinite loop if -F REGEX matches empty delimiterDenys Vlasenko2024-12-131-1/+3
| * cut: tweak --helpDenys Vlasenko2024-12-112-11/+10
| * cut: fix -d$'\n' --output-delimiter=@@ behaviorDenys Vlasenko2024-12-102-7/+53
| * cut: implement --output-delimiterDenys Vlasenko2024-12-102-10/+49