aboutsummaryrefslogtreecommitdiff
path: root/include/applets.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Add catv (separate applet instead of cat -v). Also cleanup cat.c comments,Rob Landley2006-05-311-0/+1
| | | | | | | | | | | | | | | | | | the following of which (from cat.c) belongs in svn history instead of the source code: /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) * * This is a new implementation of 'cat' which aims to be SUSv3 compliant. * * Changes from the previous implementation include: * 1) Multiple '-' args are accepted as required by SUSv3. The previous * implementation would close stdin and segfault on a subsequent '-'. * 2) The '-u' options is required by SUSv3. Note that the specified * behavior for '-u' is done by default, so all we need do is accept * the option. */
* add back in udhcp supportMike Frysinger2006-05-081-0/+3
|
* The udhcp was deleted from busybox in 14634. Bolting an external project toRob Landley2006-05-071-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | the side of the tree doesn't _COUNT_, and I will not ship it. Udhcp was deleted shortly after I posted my philosophy for what should and shouldn't go into busybox: http://www.busybox.net/lists/busybox/2006-March/019484.html I complained about the change t the time. I've complained repeatedly since. But nobody felt like fixing it. External dependencies are something to be minimized. I don't care about the ability for packages to build outside busybox: something is either part of busybox, or it isn't. If I convert any part of the external udhcp repository to use libbb, I've broken the external package. Any random cleanups that touch that directory suddenly have to worry about external dependencies that are NOT OUR PROBLEM. Therefore, that directory is not and cannot be part of busybox. Wishful thinking isn't going to change that. I will not ship something I can't maintain. I'll try to get a new dhcp client and server in before the ship window closes, but I have a half-dozen other projects pending. I'm sorry this happened, but I'm not the one who removed it, and I'm not the one who ignored the project maintainer's repeated complaints about the situation for the next month and a half.
* fix udhcp againMike Frysinger2006-05-061-3/+3
|
* Patch from Dennis Vlasenko simplifying the APPLET macros.Rob Landley2006-05-051-260/+260
|
* It was sitting there, in the patches directory, for years. It was delete itRob Landley2006-05-041-3/+4
| | | | | or apply it. It's small, simple, evil, part of SUSv3, and we can switch it off.
* Patch from Dennis Vlasenko to add the option to compress help text.Rob Landley2006-04-271-1/+0
|
* New applet cksum, from Rob Sullivan.Rob Landley2006-04-181-0/+1
|
* - enable dumpleases applet again; bad robBernhard Reutner-Fischer2006-04-181-1/+1
|
* enable udhcp applets again; bad robMike Frysinger2006-04-171-2/+2
|
* Patch from Tito to unify deluser and delgroup, and generally shrink code.Rob Landley2006-04-101-4/+4
|
* - new applet diff. Rob Sullivan writes:Bernhard Reutner-Fischer2006-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.
* setlogcons, from Jan Kaszka.Rob Landley2006-03-271-0/+1
|
* Cleanup: remove double quotes that don't seem to be needed.Rob Landley2006-03-201-30/+30
|
* Tito unified fdflush and freeramdisk. I tweaked the result a bit.Rob Landley2006-03-141-1/+1
|
* Convert all the applets from #include to USE(). Had to fix some nonstandardRob Landley2006-02-231-738/+251
| | | | naming along the way to get USE() macros for everything.
* fix applet orderMike Frysinger2006-02-221-3/+3
|
* add setarch/linux32/linux64 appletMike Frysinger2006-02-211-0/+7
|
* Re-add initrd support, unify halt/reboot/poweroff, add -n and -f options.Rob Landley2006-01-301-4/+4
|
* new applet. Thanks Roberto A. Foglietta"Vladimir N. Oleynik"2006-01-251-0/+3
|
* Patch from Aurelien Jacobs to add unlzma. (A new decompression type,Rob Landley2006-01-201-0/+6
| | | | see www.7-zip.org)
* Nothing to see here. Move along.Rob 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.)
* Tito is using broken kernel headers that pollute the namespace with everyRob Landley2005-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.
* - add BB_APPLET_RUNLEVEL used by emdebian via /etc/init.d/rc.Bernhard Reutner-Fischer2005-10-281-0/+3
| | | | Note that we leave the buggy CONFIG_* namespace now, so please fix any applet you thouch.
* New applet, fuser, from Tony J. White. (Needs some cleanup.)Rob Landley2005-10-281-0/+3
|
* Add a switch_root utility (like kconfig's utils/run_init.c, although notRob Landley2005-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.)
* import the very fat e2fsck/fsck appletsMike Frysinger2005-09-241-0/+10
|
* make e2label and findfs optionalMike Frysinger2005-09-241-2/+2
|
* - add applet nohup(1)Bernhard Reutner-Fischer2005-09-211-0/+3
|
* First cleanup pass, from Rob Sullivan. More to be done...Rob Landley2005-09-181-3/+3
|
* New applet "less", from Rob Sullivan.Rob Landley2005-09-151-0/+3
|
* sysctl was seriously broken. And since in some cases 'CONFIG_SYSCTL'Eric 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.
* Bernhard Fischer provided a mountpoint(1) applet. This is apparently somethingRob Landley2005-08-201-0/+3
| | | | sysvinit provides, and which is used by the debian init scripts.
* commiting:Paul Fox2005-08-011-0/+3
| | | | | 0000028 03-16-05 patch: new setsid applet
* applying patch for bug 72:Paul Fox2005-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.
* new config display applet, from bug 46. i've changed the namePaul Fox2005-08-011-0/+3
| | | | | of the applet from "config" to "bbconfig", and renamed the source filenames and symbols to match appropriately.
* applying fix from;Paul Fox2005-07-191-1/+1
| | | | | 0000092: looks like the initializer for .need_suid was missing.
* Rodney Radford submitted ipcs and ipcrm (system V IPC stuff). They could useRob Landley2005-06-201-0/+6
| | | | some more work to shrink them down.
* import initial fat mke2fsMike Frysinger2005-06-111-0/+7
|
* import tune2fs supportMike Frysinger2005-06-111-0/+9
|
* Add readprofile applet support.Paul Mundt2005-05-201-0/+3
|
* Small comm implementatin from Rob Sullivan. Needed to build perl.Rob Landley2005-05-111-0/+3
|
* import ether-wake applet by haveaniceday Bug 252Mike Frysinger2005-05-111-0/+3
|
* import eject by Peter Willis / Tito RagusaMike Frysinger2005-05-111-0/+3
|
* David Brownell submitted a new applet, zcip, based on RFC 3927. This isRob Landley2005-04-301-0/+3
| | | | | | version 0418b. It compiled.
* remove extra whitespaceMike Frysinger2005-04-231-2/+2
|
* stat implementation based upon coreutilsMike Frysinger2005-04-231-0/+3
|
* import lsattr and chattr from e2fsprogsMike Frysinger2005-04-221-0/+6
|
* printenv / sum definesMike Frysinger2005-04-211-0/+6
|
* fix whitespaceMike Frysinger2005-04-191-23/+23
|