Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-30 | fix up yet more annoying signed/unsigned and mixed type errors | Eric Andersen | |
2006-01-30 | make certain we dereference the pointer as a time_t, esp on x86_64 | Eric Andersen | |
where it might otherwise not be dereferenced as such by default | |||
2006-01-30 | - add some ATTRIBUTE_UNUSED. | Bernhard Reutner-Fischer | |
- use shorter boilerplate while at it. | |||
2006-01-30 | removed warning "comparison between signed and unsigned". Change very very ↵ | "Vladimir N. Oleynik" | |
old code: use int instead short | |||
2006-01-25 | just whitespace | Tim Riker | |
2006-01-15 | - shared libbusybox. | Bernhard Reutner-Fischer | |
- IMA compilation option (aka IPO, IPA,..) Please holler if i broke something.. | |||
2006-01-10 | can use TMPDIR if user's HOMEDIR do not found. Noticed by Bernhard | "Vladimir N. Oleynik" | |
2005-12-21 | - fix check for group and user, remove some whitespace while at it. | Bernhard Reutner-Fischer | |
2005-12-16 | Ahem. Vladimir checked in a different fix bug didn't close out the bug. | Rob Landley | |
Reverting... | |||
2005-12-16 | Less would segfault if it had no tty. (Bug 600.) | Rob Landley | |
2005-12-15 | fopen(TTY...) to bb_xfopen(), close bug 600 | "Vladimir N. Oleynik" | |
2005-12-06 | restore compare_string_array new interface (make broken by landley) | "Vladimir N. Oleynik" | |
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-28 | Rob Sullivan sent in some cleanups, which I beat on slightly. | Rob Landley | |
2005-10-20 | another more const | "Vladimir N. Oleynik" | |
2005-10-15 | data --> code | "Vladimir N. Oleynik" | |
2005-10-08 | Coprolith polishing time: Tito switched devfsd over from CONFIG_ to ENABLE_. | Rob Landley | |
2005-09-29 | change interface to bb_xasprintf() - more perfect for me. | "Vladimir N. Oleynik" | |
ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers reduce 100 bytes don't care in sum | |||
2005-09-24 | use the shorter license header | Mike Frysinger | |
2005-09-24 | use brief license line | Mike Frysinger | |
2005-09-22 | quick patch - have removed stranges for me | "Vladimir N. Oleynik" | |
2005-09-21 | moved include/bbconfigopts.h from miscutils to to top Makefile before ↵ | "Vladimir N. Oleynik" | |
generate .depend. Remove allyesconfig build problem, noticed by Bernhard Fischer | |||
2005-09-20 | - rename libbb's password helpers as suggested in libbb.h | Bernhard Reutner-Fischer | |
my_getpwnam -> bb_xgetpwnam /* dies on error */ my_getgrnam -> bb_xgetgrnam /* dies on error */ my_getgrgid -> bb_getgrgid my_getpwuid -> bb_getpwuid my_getug -> bb_getug | |||
2005-09-19 | remove duplicate depend, its work for bb_mkdepend | "Vladimir N. Oleynik" | |
2005-09-19 | correct build bbconfig applet, correct previous change | "Vladimir N. Oleynik" | |
2005-09-19 | corect build bbconfig applet, Thanks, Bernhard Fischer | "Vladimir N. Oleynik" | |
2005-09-19 | 1) read from stdin work now | "Vladimir N. Oleynik" | |
2) destroy segfault in number_process 3) removes dead code complex patch my and Tito | |||
2005-09-19 | quick patchs: drop founded memory leak, more libbb, more C-compatibility, ↵ | "Vladimir N. Oleynik" | |
size reduction | |||
2005-09-18 | Bernhard Fischer writes: | Mike Frysinger | |
Attached patch moves bbconfig's entry in Config.in in the alphabetically correct place. | |||
2005-09-18 | First cleanup pass, from Rob Sullivan. More to be done... | Rob Landley | |
2005-09-16 | more C-compatibily, Thanks Bernhard Fischer | "Vladimir N. Oleynik" | |
2005-09-16 | small change for highlihting flags, more busyboxes: indent, forward ↵ | "Vladimir N. Oleynik" | |
declaration, paste BSS | |||
2005-09-15 | New applet "less", from Rob Sullivan. | Rob Landley | |
2005-09-14 | split libbb: moved xregcomp separatelly for speed up recompile | "Vladimir N. Oleynik" | |
2005-09-14 | removed strange extern void xregcomp(... from some applets, but declared ↵ | "Vladimir N. Oleynik" | |
from libbb.h | |||
2005-09-08 | Tito sent in a few patches converting instances of CONFIG_FEATURE_CLEAN_UP to | Rob Landley | |
ENABLE_FEATURE_CLEAN_UP. | |||
2005-09-05 | destroy bug [0000381] | "Vladimir N. Oleynik" | |
2005-09-05 | 1) bb_opt_complementaly -> bb_opt_complementally | "Vladimir N. Oleynik" | |
2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally | |||
2005-09-01 | According to bug #63, crond is unhappy with crontab lines that don't end in a | Rob Landley | |
newline, or lines that have trailing spaces. | |||
2005-08-20 | Bernhard Fischer provided a mountpoint(1) applet. This is apparently something | Rob Landley | |
sysvinit provides, and which is used by the debian init scripts. | |||
2005-08-10 | Major rewrite of mount, umount, losetup. Untangled lots of code, shrunk | Rob Landley | |
things down a bit, fixed a number of funky corner cases, added support for several new features (things like mount --move, mount --bind, lazy unounts, automatic detection of loop mounts, and so on). Probably broke several other things, but it's fixable. (Bang on it, tell me what doesn't work for you...) Note: you no longer need to say "-o loop". It does that for you when necessary. Still need to add "user mount" support, which involves making mount suid. Not too hard to do under the new infrastructure, just haven't done it yet... The previous code had the following notes, that belong in the version control comments: - * 3/21/1999 Charles P. Wright <cpwright@cpwright.com> - * searches through fstab when -a is passed - * will try mounting stuff with all fses when passed -t auto - * - * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab. - * - * 1999-10-07 Erik Andersen <andersen@codepoet.org>. - * Rewrite of a lot of code. Removed mtab usage (I plan on - * putting it back as a compile-time option some time), - * major adjustments to option parsing, and some serious - * dieting all around. - * - * 1999-11-06 mtab support is back - andersee - * - * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's - * mount to add loop support. - * - * 2000-04-30 Dave Cinege <dcinege@psychosis.com> - * Rewrote fstab while loop and lower mount section. Can now do - * single mounts from fstab. Can override fstab options for single - * mount. Common mount_one call for single mounts and 'all'. Fixed - * mtab updating and stale entries. Removed 'remount' default. - * | |||
2005-08-01 | commiting: | Paul Fox | |
0000028 03-16-05 patch: new setsid applet | |||
2005-08-01 | new config display applet, from bug 46. i've changed the name | Paul Fox | |
of the applet from "config" to "bbconfig", and renamed the source filenames and symbols to match appropriately. | |||
2005-07-31 | eat leading whitespace with preprocessor | Mike Frysinger | |
2005-07-27 | use toplevel ARFLAGS and update default ARFLAGS to be quiet | Mike Frysinger | |
2005-07-18 | Fixup makedevs to handle regular files, and also fix | Eric Andersen | |
it to properly update file permissions as specified. | |||
2005-07-18 | a bit more polish | Eric Andersen | |
2005-07-18 | a bit of polish on makedevs | Eric Andersen | |
2005-07-18 | the makedevs config option was pretty much totally broken | Eric Andersen | |
2005-07-18 | Fixup device table based makedevs so it actually works | Eric Andersen | |