aboutsummaryrefslogtreecommitdiff
path: root/include/applets.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch from Dennis Vlasenko simplifying the APPLET macros.landley2006-05-051-260/+260
| | | | git-svn-id: svn://busybox.net/trunk/busybox@15006 69ca8d6d-28ef-0310-b511-8ec308f3f277
* It was sitting there, in the patches directory, for years. It was delete itlandley2006-05-041-3/+4
| | | | | | | | or apply it. It's small, simple, evil, part of SUSv3, and we can switch it off. git-svn-id: svn://busybox.net/trunk/busybox@14999 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Dennis Vlasenko to add the option to compress help text.landley2006-04-271-1/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14949 69ca8d6d-28ef-0310-b511-8ec308f3f277
* New applet cksum, from Rob Sullivan.landley2006-04-181-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14917 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - enable dumpleases applet again; bad robaldot2006-04-181-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14909 69ca8d6d-28ef-0310-b511-8ec308f3f277
* enable udhcp applets again; bad robvapier2006-04-171-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14898 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Tito to unify deluser and delgroup, and generally shrink code.landley2006-04-101-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14793 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - new applet diff. Rob Sullivan writes:aldot2006-04-061-0/+1
| | | | | | | | | | | | | Here's my attempt at a mini diff applet - it's adapted from the code at http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/diff/, and only supports unified diffs. I've busyboxified everything to a reasonable degree, so I think the code is suitable enough to be included, but there's still a fair bit of cleaning up to be done. git-svn-id: svn://busybox.net/trunk/busybox@14760 69ca8d6d-28ef-0310-b511-8ec308f3f277
* setlogcons, from Jan Kaszka.landley2006-03-271-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14675 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Cleanup: remove double quotes that don't seem to be needed.landley2006-03-201-30/+30
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14585 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tito unified fdflush and freeramdisk. I tweaked the result a bit.landley2006-03-141-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14536 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Convert all the applets from #include to USE(). Had to fix some nonstandardlandley2006-02-231-738/+251
| | | | | | | naming along the way to get USE() macros for everything. git-svn-id: svn://busybox.net/trunk/busybox@14220 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix applet ordervapier2006-02-221-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14217 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add setarch/linux32/linux64 appletvapier2006-02-211-0/+7
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14156 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Re-add initrd support, unify halt/reboot/poweroff, add -n and -f options.landley2006-01-301-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13701 69ca8d6d-28ef-0310-b511-8ec308f3f277
* new applet. Thanks Roberto A. Fogliettavodz2006-01-251-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13592 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Aurelien Jacobs to add unlzma. (A new decompression type,landley2006-01-201-0/+6
| | | | | | | see www.7-zip.org) git-svn-id: svn://busybox.net/trunk/busybox@13454 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Nothing to see here. Move along.landley2005-12-131-0/+3
| | | | | | | | | | | | Not buying it, eh? I know I said new features before 1.1, but, well... (I was weak!) The config file and hotplug modes aren't implemented yet. Might take a stab at those tomorrow. (I _should_ go back to focusing on the bug triage list.) git-svn-id: svn://busybox.net/trunk/busybox@12856 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tito is using broken kernel headers that pollute the namespace with everylandley2005-12-061-2/+2
| | | | | | | | | | | | | CONFIG_ symbol in the kernel, and this clashes with busybox's CONFIG_TR and CONFIG_WATCHDOG, causing applets.h to barf if they're not switched on (since the broken headers don't affect kconfig or the makefiles). Since such broken kernel headers are common enough to crop up every few months, a simple work around is to move TR and WATCHDOG from CONFIG_ to ENABLE_ early. git-svn-id: svn://busybox.net/trunk/busybox@12707 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add BB_APPLET_RUNLEVEL used by emdebian via /etc/init.d/rc.aldot2005-10-281-0/+3
| | | | | | | Note that we leave the buggy CONFIG_* namespace now, so please fix any applet you thouch. git-svn-id: svn://busybox.net/trunk/busybox@11965 69ca8d6d-28ef-0310-b511-8ec308f3f277
* New applet, fuser, from Tony J. White. (Needs some cleanup.)landley2005-10-281-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11954 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add a switch_root utility (like kconfig's utils/run_init.c, although notlandley2005-10-271-0/+3
| | | | | | | | actuall using any of that code). This is needed because pivot_root doesn't work right under initramfs. (See the menuconfig help.) git-svn-id: svn://busybox.net/trunk/busybox@11935 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import the very fat e2fsck/fsck appletsvapier2005-09-241-0/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11623 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make e2label and findfs optionalvapier2005-09-241-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11616 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add applet nohup(1)aldot2005-09-211-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11538 69ca8d6d-28ef-0310-b511-8ec308f3f277
* First cleanup pass, from Rob Sullivan. More to be done...landley2005-09-181-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11493 69ca8d6d-28ef-0310-b511-8ec308f3f277
* New applet "less", from Rob Sullivan.landley2005-09-151-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11472 69ca8d6d-28ef-0310-b511-8ec308f3f277
* sysctl was seriously broken. And since in some cases 'CONFIG_SYSCTL'andersen2005-09-121-1/+1
| | | | | | | | could be included into application space via the kernel config option of the same name, nasty compilation problems could result. git-svn-id: svn://busybox.net/trunk/busybox@11433 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bernhard Fischer provided a mountpoint(1) applet. This is apparently somethinglandley2005-08-201-0/+3
| | | | | | | sysvinit provides, and which is used by the debian init scripts. git-svn-id: svn://busybox.net/trunk/busybox@11219 69ca8d6d-28ef-0310-b511-8ec308f3f277
* commiting:pgf2005-08-011-0/+3
| | | | | | | | 0000028 03-16-05 patch: new setsid applet git-svn-id: svn://busybox.net/trunk/busybox@11015 69ca8d6d-28ef-0310-b511-8ec308f3f277
* applying patch for bug 72:pgf2005-08-011-0/+3
| | | | | | | | | 0000072: Add applet to redirect console output via ioctl(..., TIOCCONS) applet name changed to setconsole, since suse has a very similar utility. better to treat differences as bugs than invent a new command. git-svn-id: svn://busybox.net/trunk/busybox@11008 69ca8d6d-28ef-0310-b511-8ec308f3f277
* new config display applet, from bug 46. i've changed the namepgf2005-08-011-0/+3
| | | | | | | | of the applet from "config" to "bbconfig", and renamed the source filenames and symbols to match appropriately. git-svn-id: svn://busybox.net/trunk/busybox@11006 69ca8d6d-28ef-0310-b511-8ec308f3f277
* applying fix from;pgf2005-07-191-1/+1
| | | | | | | | 0000092: looks like the initializer for .need_suid was missing. git-svn-id: svn://busybox.net/trunk/busybox@10865 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rodney Radford submitted ipcs and ipcrm (system V IPC stuff). They could uselandley2005-06-201-0/+6
| | | | | | | some more work to shrink them down. git-svn-id: svn://busybox.net/trunk/busybox@10556 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import initial fat mke2fsvapier2005-06-111-0/+7
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10526 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import tune2fs supportvapier2005-06-111-0/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10525 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add readprofile applet support.lethal2005-05-201-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10350 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Small comm implementatin from Rob Sullivan. Needed to build perl.landley2005-05-111-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10298 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import ether-wake applet by haveaniceday Bug 252vapier2005-05-111-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10294 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import eject by Peter Willis / Tito Ragusavapier2005-05-111-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10288 69ca8d6d-28ef-0310-b511-8ec308f3f277
* David Brownell submitted a new applet, zcip, based on RFC 3927. This islandley2005-04-301-0/+3
| | | | | | | | | version 0418b. It compiled. git-svn-id: svn://busybox.net/trunk/busybox@10206 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove extra whitespacevapier2005-04-231-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10164 69ca8d6d-28ef-0310-b511-8ec308f3f277
* stat implementation based upon coreutilsvapier2005-04-231-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10163 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import lsattr and chattr from e2fsprogsvapier2005-04-221-0/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10151 69ca8d6d-28ef-0310-b511-8ec308f3f277
* printenv / sum definesvapier2005-04-211-0/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10149 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix whitespacevapier2005-04-191-23/+23
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10137 69ca8d6d-28ef-0310-b511-8ec308f3f277
* import fakeidentd module started by Thomas Lundquistvapier2005-04-171-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10123 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add aliases == and [[ for = and [ to support more bash scriptsvapier2005-04-141-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10096 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add 'nice' and replace 'renice' with a new implementation.mjn32005-02-131-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9868 69ca8d6d-28ef-0310-b511-8ec308f3f277
* The login applet should always be setuid rootandersen2004-08-261-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9169 69ca8d6d-28ef-0310-b511-8ec308f3f277