aboutsummaryrefslogtreecommitdiff
path: root/include/applets.h
AgeCommit message (Collapse)Author
2006-06-22CONFIG_DHCP -> CONFIG_APP_DHCP.Rob Landley
2006-06-07- add applet taskset to set/retrieve the CPU affinity of a processBernhard Reutner-Fischer
text data bss dec hex filename 584 0 0 584 248 taskset.o.gcc-2.95 509 0 0 509 1fd taskset.o.gcc-3.3 505 0 0 505 1f9 taskset.o.gcc-3.4 506 0 0 506 1fa taskset.o.gcc-4.0 498 0 0 498 1f2 taskset.o.gcc-4.1 495 0 0 495 1ef taskset.o.gcc-4.2-HEAD
2006-06-02fix fdflish typo (reported by erik hovland)Paul Fox
2006-06-01The common case APPLET() macro only needs three arguments.Rob Landley
2006-05-31Add catv (separate applet instead of cat -v). Also cleanup cat.c comments,Rob Landley
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. */
2006-05-08add back in udhcp supportMike Frysinger
2006-05-07The udhcp was deleted from busybox in 14634. Bolting an external project toRob Landley
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.
2006-05-06fix udhcp againMike Frysinger
2006-05-05Patch from Dennis Vlasenko simplifying the APPLET macros.Rob Landley
2006-05-04It was sitting there, in the patches directory, for years. It was delete itRob Landley
or apply it. It's small, simple, evil, part of SUSv3, and we can switch it off.
2006-04-27Patch from Dennis Vlasenko to add the option to compress help text.Rob Landley
2006-04-18New applet cksum, from Rob Sullivan.Rob Landley
2006-04-18- enable dumpleases applet again; bad robBernhard Reutner-Fischer
2006-04-17enable udhcp applets again; bad robMike Frysinger
2006-04-10Patch from Tito to unify deluser and delgroup, and generally shrink code.Rob Landley
2006-04-06- new applet diff. Rob Sullivan writes:Bernhard Reutner-Fischer
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.
2006-03-27setlogcons, from Jan Kaszka.Rob Landley
2006-03-20Cleanup: remove double quotes that don't seem to be needed.Rob Landley
2006-03-14Tito unified fdflush and freeramdisk. I tweaked the result a bit.Rob Landley
2006-02-23Convert all the applets from #include to USE(). Had to fix some nonstandardRob Landley
naming along the way to get USE() macros for everything.
2006-02-22fix applet orderMike Frysinger
2006-02-21add setarch/linux32/linux64 appletMike Frysinger
2006-01-30Re-add initrd support, unify halt/reboot/poweroff, add -n and -f options.Rob Landley
2006-01-25new applet. Thanks Roberto A. Foglietta"Vladimir N. Oleynik"
2006-01-20Patch from Aurelien Jacobs to add unlzma. (A new decompression type,Rob Landley
see www.7-zip.org)
2005-12-13Nothing to see here. Move along.Rob Landley
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.)
2005-12-06Tito is using broken kernel headers that pollute the namespace with everyRob Landley
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.
2005-10-28- add BB_APPLET_RUNLEVEL used by emdebian via /etc/init.d/rc.Bernhard Reutner-Fischer
Note that we leave the buggy CONFIG_* namespace now, so please fix any applet you thouch.
2005-10-28New applet, fuser, from Tony J. White. (Needs some cleanup.)Rob Landley
2005-10-27Add a switch_root utility (like kconfig's utils/run_init.c, although notRob Landley
actuall using any of that code). This is needed because pivot_root doesn't work right under initramfs. (See the menuconfig help.)
2005-09-24import the very fat e2fsck/fsck appletsMike Frysinger
2005-09-24make e2label and findfs optionalMike Frysinger
2005-09-21- add applet nohup(1)Bernhard Reutner-Fischer
2005-09-18First cleanup pass, from Rob Sullivan. More to be done...Rob Landley
2005-09-15New applet "less", from Rob Sullivan.Rob Landley
2005-09-12sysctl was seriously broken. And since in some cases 'CONFIG_SYSCTL'Eric Andersen
could be included into application space via the kernel config option of the same name, nasty compilation problems could result.
2005-08-20Bernhard Fischer provided a mountpoint(1) applet. This is apparently somethingRob Landley
sysvinit provides, and which is used by the debian init scripts.
2005-08-01commiting:Paul Fox
0000028 03-16-05 patch: new setsid applet
2005-08-01applying patch for bug 72:Paul Fox
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.
2005-08-01new config display applet, from bug 46. i've changed the namePaul Fox
of the applet from "config" to "bbconfig", and renamed the source filenames and symbols to match appropriately.
2005-07-19applying fix from;Paul Fox
0000092: looks like the initializer for .need_suid was missing.
2005-06-20Rodney Radford submitted ipcs and ipcrm (system V IPC stuff). They could useRob Landley
some more work to shrink them down.
2005-06-11import initial fat mke2fsMike Frysinger
2005-06-11import tune2fs supportMike Frysinger
2005-05-20Add readprofile applet support.Paul Mundt
2005-05-11Small comm implementatin from Rob Sullivan. Needed to build perl.Rob Landley
2005-05-11import ether-wake applet by haveaniceday Bug 252Mike Frysinger
2005-05-11import eject by Peter Willis / Tito RagusaMike Frysinger
2005-04-30David Brownell submitted a new applet, zcip, based on RFC 3927. This isRob Landley
version 0418b. It compiled.
2005-04-23remove extra whitespaceMike Frysinger