summaryrefslogtreecommitdiff
path: root/win32 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement read replacement to handle OEM codepagesRon Yorston2014-03-201-0/+26
|
* Fixes to write replacementRon Yorston2014-03-201-2/+2
|
* Implement write replacement to handle OEM codepagesRon Yorston2014-03-201-1/+75
|
* Implement puts replacement to handle OEM codepagesRon Yorston2014-03-191-4/+24
|
* Use OEM codepage for console I/ORon Yorston2014-03-192-4/+83
| | | | | | | | | | 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.
* Drop CONFIG_WIN32_NET settingRon Yorston2014-03-172-11/+1
|
* Fix some compiler warningsRon Yorston2014-03-135-13/+15
|
* Allow utimes to change times on directoriesRon Yorston2014-03-131-8/+21
|
* Remove unused mingw_utime; update utimes to handle read-only filesRon Yorston2014-03-121-41/+20
|
* Import mempcpy from gnulibRon Yorston2014-03-112-0/+27
|
* mingw: dummy implementation of times/sysconfRon Yorston2014-01-301-0/+19
|
* win32: use emulated localtime_r in strptimeRon Yorston2014-01-211-3/+1
|
* date: improve emulation of %e formatRon Yorston2014-01-211-15/+20
|
* win32: use strptime from gnulibRon Yorston2014-01-203-5/+649
|
* date: add dummy stimeRon Yorston2014-01-191-0/+6
|
* date: emulate %e formatRon Yorston2014-01-191-0/+31
|
* Implement POSIX-compliant mktemp for WIN32Ron Yorston2014-01-071-0/+14
|
* Revise mingw_stat to minimise changes from upstream BusyBoxRon Yorston2014-01-071-8/+34
|
* Make dummy resource.hRon Yorston2014-01-061-0/+0
|
* Extend WIN32 statfs to include type, fsid and namelenRon Yorston2014-01-063-20/+57
|
* Make dummy paths.hRon Yorston2014-01-051-0/+0
|
* Move mingw32 poll.h from sysRon Yorston2014-01-022-1/+1
|
* df: limited implementation for WIN32Ron Yorston2013-04-035-0/+147
|
* winansi: skip DECTCEM sequence to avoid ugliness in viRon Yorston2012-10-101-0/+7
|
* Revised quoting of command line arguments for WIN32Ron Yorston2012-10-051-7/+7
| | | | | | | | | | | | | | | | * We only need to quote an argument if it contains whitespace. * There's no point in quoting ? or * because Windows still expands them. Anyhow, if the command line comes from a BusyBox shell it will usually have handled the globbing, so we should turn off Windows globbing for any wildcard that has made it through the shell without expansion. This means that BusyBox commands run from cmd.exe won't do wildcard expansion, though. * Backslashes only need to be doubled if they occur immediately before double quotes. * Double quotes need to be escaped with a backslash.
* mingw32: fix off-by-one errors in spawn routinesRon Yorston2012-05-101-2/+2
| | | | | | | | | | | There are two changes here. The first, in mingw_spawn_1, removes a post-increment of argv which should have no effect. The second, in mingw_spawn, should fix a reported problem with xargs: https://github.com/pclouds/busybox-w32/issues/19 Basically, 'find . -type f | xargs md5sum' was failing to process the first file.
* Use win32_execable_file() in test, which and execable.cRon Yorston2012-05-091-0/+32
|
* mingw32: make access(2) check file format for executablesRon Yorston2012-05-091-1/+69
|
* mingw32: make system return wait status, not exit codeRon Yorston2012-05-041-1/+1
|
* mingw32: allow whitespace after '#!' in shell scriptsRon Yorston2012-05-031-1/+9
|
* mingw32: add system.c to KbuildRon Yorston2012-05-011-0/+1
|
* mingw32: implement system(3) call using sh instead of cmd.exeRon Yorston2012-05-011-0/+77
|
* ash: set working directory and environment on first startupRon Yorston2012-04-261-1/+5
|
* win32/uname.c: if networking is enabled use gethostnameRon Yorston2012-04-241-0/+8
|
* win32: add pw_shell to struct passwdRon Yorston2012-04-231-0/+1
|
* win32: support fancy prompts and (limited) tilde expansionRon Yorston2012-04-231-1/+29
|
* win32: implement ioctlRon Yorston2012-04-233-1/+26
|
* win32: add popen implementation that uses shellRon Yorston2012-04-233-1/+224
|
* Some fixes to #! parsingRon Yorston2012-04-211-7/+8
|
* strsep is in upstream BusyBox: no need for MINGW32 versionRon Yorston2012-04-181-18/+0
|
* kill: no special treatment for MINGW32Ron Yorston2012-04-181-1/+1
|
* Detect and execute shell scripts based on presence of '#!'Ron Yorston2012-04-171-20/+54
|
* Make fake fcntl(F_DUPFD) for WIN32Ron Yorston2012-04-031-12/+40
|
* Update mingw.c from latest git/compatRon Yorston2012-03-301-51/+64
|
* Fix incorrect struct in WIN32 uname.cRon Yorston2012-03-301-3/+3
|
* Use gnulib poll, importing the version from gitRon Yorston2012-03-304-69/+660
|
* Merge commit 'da4441c44f6efccb6f7b7588404d9c6bfb7b6af8' into mergeRon Yorston2012-03-221-0/+0
| | | | | | | Conflicts: libbb/vfork_daemon_rexec.c networking/wget.c procps/ps.c
* Add code to find console dimensions in WIN32Ron Yorston2012-02-201-0/+17
|
* Fix off-by-one error in cursor positioningRon Yorston2012-02-171-1/+1
|
* Always reset console mode when returning keyRon Yorston2012-02-161-16/+24
|