aboutsummaryrefslogtreecommitdiff
path: root/scripts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Introduce FEATURE_CYGWIN_TTYNguyễn Thái Ngọc Duy2009-05-101-0/+1
| | | | | | | | | | | | | This feature allows terminal-aware applications to access Cygwin-based terminal emulator, like rxvt, by allowing access to termios structure managed by Cygwin. The way this works is really intrusive. It examines Cygwin's (unofficial) shared information to find out termios data and manipulate directly on that (without locking, for now). Different Cygwin versions may change share info layout. This patch only supports cygwin-1.7.0-46. Support for other versions can be added later.
* defconfig.mingw32: add more features that work recentlyNguyễn Thái Ngọc Duy2009-05-061-13/+17
|
* add "default" config (at least it compiles)Nguyễn Thái Ngọc Duy2009-04-231-0/+664
|
* trylink: link with ws2_32, required by MinGW compatibility layerNguyễn Thái Ngọc Duy2009-04-231-0/+1
|
* whitespace fixesvda2007-05-305-31/+31
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18703 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - busybox.c was removed a while agoaldot2007-05-151-3/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18617 69ca8d6d-28ef-0310-b511-8ec308f3f277
* deluser: add optional support for removing users from groupsvda2007-04-151-0/+1
| | | | | | | (by Tito <farmatito@tiscali.it>) git-svn-id: svn://busybox.net/trunk/busybox@18449 69ca8d6d-28ef-0310-b511-8ec308f3f277
* style fixesvda2007-04-131-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18433 69ca8d6d-28ef-0310-b511-8ec308f3f277
* style fixes. No code changesvda2007-04-121-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18409 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rename: run_applet_by_name -> run_applet_and_exitvda2007-04-111-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18402 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rename two config options:vda2007-04-101-2/+2
| | | | | | | | | | FEATURE_SH_STANDALONE_SHELL => FEATURE_SH_STANDALONE FEATURE_EXEC_PREFER_APPLETS => FEATURE_PREFER_APPLETS Make SH_STANDALONE depend on PREFER_APPLETS. getopt.c: more randomconfig-induced fixes git-svn-id: svn://busybox.net/trunk/busybox@18394 69ca8d6d-28ef-0310-b511-8ec308f3f277
* adding small script, mostly for documentational purposesvda2007-04-081-0/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18365 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - clean up addgroup, fix adding users to existing groups and make it ↵aldot2007-04-051-0/+1
| | | | | | optional (Tito) git-svn-id: svn://busybox.net/trunk/busybox@18335 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - bail out if either file does not existaldot2007-04-051-0/+5
| | | | | | | Avoids filling my scrollback-buffer with superfluous information ;) git-svn-id: svn://busybox.net/trunk/busybox@18334 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - sed -e "s/char[[:space:]]*\*[[:space:]]*argv\[\]/char **argv/g"aldot2007-04-042-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18327 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - update defconfigaldot2007-03-281-3/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18269 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - move additional fancy options not mandated by SUSv3 into a FANCY optionaldot2007-03-281-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18263 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - rough prototype for split(1). TODO: Still needs some love since it's way ↵aldot2007-03-251-0/+1
| | | | | | | | | | too big.. text data bss dec hex filename 602 4 0 606 25e coreutils/split.o git-svn-id: svn://busybox.net/trunk/busybox@18236 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make clean deletes .kernelrelease nowvda2007-03-181-1/+1
| | | | | | | trylink deleted empty linker stderr on success git-svn-id: svn://busybox.net/trunk/busybox@18153 69ca8d6d-28ef-0310-b511-8ec308f3f277
* dont use obsolete function index() as pointed out by src.obsolete.funcsvapier2007-03-171-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18132 69ca8d6d-28ef-0310-b511-8ec308f3f277
* build system: produce link map. Rather useful when youvda2007-03-151-3/+3
| | | | | | | are wondering why your busybox is much bigger that you hoped for. git-svn-id: svn://busybox.net/trunk/busybox@18125 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Do not fail password check if shadow password does not exist -vda2007-03-131-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | fall back to ordinary one Reduced usage of functions returning datain static buffers. (mostly passwd/group/shadow related): function old new delta correct_password 143 193 +50 sulogin_main 490 533 +43 adduser_main 732 774 +42 passwd_main 1875 1915 +40 addgroup_main 330 365 +35 bb_internal_getspnam 38 - -38 bb_internal_fgetpwent 38 - -38 bb_internal_fgetgrent 38 - -38 static.resultbuf 168 88 -80 static.buffer 1872 1104 -768 ------------------------------------------------------------------------------ (add/remove: 0/3 grow/shrink: 5/2 up/down: 210/-962) Total: -752 bytes git-svn-id: svn://busybox.net/trunk/busybox@18085 69ca8d6d-28ef-0310-b511-8ec308f3f277
* update defconfigvda2007-03-111-19/+40
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18065 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add chrt applet.aldot2007-03-091-0/+1
| | | | | | | | | text data bss dec hex filename 769 0 0 769 301 miscutils/chrt.o and could use some further shrinkage git-svn-id: svn://busybox.net/trunk/busybox@18055 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add selinux applets to the IMA workaroundaldot2007-03-091-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@18049 69ca8d6d-28ef-0310-b511-8ec308f3f277
* stop using bash'isms ('function')vda2007-02-251-1/+1
| | | | | | | runtest: do not depend on busybox.links git-svn-id: svn://busybox.net/trunk/busybox@17973 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - check if the compiler supports -fwhole-program -- 4.0 does notaldot2007-02-121-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17863 69ca8d6d-28ef-0310-b511-8ec308f3f277
* mkconfigs: remove echo "`...`" contortionvda2007-02-041-11/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17748 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add TODOvda2007-02-031-1/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17737 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - minor tweakaldot2007-02-021-2/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17727 69ca8d6d-28ef-0310-b511-8ec308f3f277
* disable -Wold-style-definition for gcc 3.xvda2007-01-291-0/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17638 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make -Werror configurablevda2007-01-271-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17551 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Unify ping and ping6. ping has -4 and -6 which forcevda2007-01-241-1/+0
| | | | | | | | | | | name resolution into IP or IPv6 only, otherwise we take address family returned by host2sockaddr() in lsa->sa.sa_family. IOW: "ping ::1" with do IPv6 ping, "ping 127.0.0.1" will do IPv4 ping. ping6 is aliased to "ping -6". git-svn-id: svn://busybox.net/trunk/busybox@17513 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add hostcc-option checkeraldot2007-01-231-0/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17487 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add an unsupported makefile for IMA compilesaldot2007-01-231-0/+130
| | | | | | | Nice for catching eventual breakage early on.. git-svn-id: svn://busybox.net/trunk/busybox@17485 69ca8d6d-28ef-0310-b511-8ec308f3f277
* clean up commented out old codevda2007-01-221-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17479 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove obsolete FEATURE_WGET_IP6_LITERALvda2007-01-221-1/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17454 69ca8d6d-28ef-0310-b511-8ec308f3f277
* defconfig: refreshvda2007-01-221-17/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17453 69ca8d6d-28ef-0310-b511-8ec308f3f277
* cmdedit is not a 'command' editing anymore, it's just editing (generic),vda2007-01-221-7/+7
| | | | | | | so rename stuff accordingly. git-svn-id: svn://busybox.net/trunk/busybox@17451 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Introduce FEATURE_EDITING_FANCY_KEYS, so that user can disablevda2007-01-211-0/+1
| | | | | | | less-known keys (e.g. Ctrl-B/E/F) git-svn-id: svn://busybox.net/trunk/busybox@17440 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Introduce FEATURE_EXEC_PREFER_APPLETS = "re-execute our ownvda2007-01-211-0/+1
| | | | | | | | | executable if we asked to exec someting with argv[0] == known_applet" Use it in init. Also respect PATH in init, remove explicit "/sbin" etc from exec. Patch by Gabriel L. Somlo <somlo@cmu.edu> git-svn-id: svn://busybox.net/trunk/busybox@17426 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fixes for amd64 compilationvda2007-01-201-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17394 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - replace some occurances of "kernel" with busyboxaldot2007-01-174-14/+14
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17347 69ca8d6d-28ef-0310-b511-8ec308f3f277
* whitespace fixes (leading spaces to tab)vda2007-01-131-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17265 69ca8d6d-28ef-0310-b511-8ec308f3f277
* next part of ipv6-ization is here: wget & httpdvda2007-01-121-1/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17257 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Trailing whitespace removal over entire treevda2007-01-118-54/+54
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17252 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add arp to defconfigaldot2007-01-071-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17178 69ca8d6d-28ef-0310-b511-8ec308f3f277
* "kernel" => "busybox"vda2007-01-062-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@17171 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rt_names: stop allocating 5k in rwdatavda2006-12-311-1/+2
| | | | | | | objsizes: don't show build machinery's object modules git-svn-id: svn://busybox.net/trunk/busybox@17122 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fixdep.c: avoit doing memcmp in most casesvda2006-12-301-3/+3
| | | | | | | | uidgid_get.c: add forgotten copyright notice pwd/grp/shadow: avoid collisions with libc names git-svn-id: svn://busybox.net/trunk/busybox@17112 69ca8d6d-28ef-0310-b511-8ec308f3f277