aboutsummaryrefslogtreecommitdiff
path: root/miscutils
AgeCommit message (Collapse)Author
2006-04-05- make sure that the label expected_hwif_error is visible even whenBernhard Reutner-Fischer
CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF isn't set.
2006-03-30Clarify.Rob Landley
2006-03-29add public-domain releasePaul Fox
2006-03-24- commentary typosBernhard Reutner-Fischer
2006-03-23fixup styleMike Frysinger
2006-03-23dont printf arguments given by user for security sanityMike Frysinger
2006-03-13- revert back to r14406Bernhard Reutner-Fischer
2006-03-13Patch from Denis Vlasenko to add xstat() and use it.Rob Landley
2006-03-09- backout using features which are not available with the previous stableBernhard Reutner-Fischer
version of make (3.71.1).
2006-03-06Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley
definitions. (That should only be on prototypes.)
2006-03-04Patch from Robert P. Day, moving byte order checks to use platform.h macros.Rob Landley
2006-03-02- remove unused lists *-mBernhard Reutner-Fischer
2006-03-02- use absolute path for top_builddir and top_srcdir.Bernhard Reutner-Fischer
Fixes make trying to include the very same file in an endless loop.
2006-03-01- fixes parallel builds (make -j)Bernhard Reutner-Fischer
- use less resources for the buildsystem itself
2006-02-28more security: don't start shell code from argv"Vladimir N. Oleynik"
2006-02-28Cosmetic cleanup from tito.Rob Landley
2006-02-27- whitespace cleanup from Tito.Bernhard Reutner-Fischer
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-22Patch from Denis Vlasenko to constify things and fix a few typos.Rob Landley
2006-02-21Don't build directory libraries unless we're building an applet that needs it.Rob Landley
Cherry-picked from Devin Bayer's big MacOS X patch.
2006-02-02make the build system puuuuuuuuuuurtyMike Frysinger
2006-02-01removed anoinig warnings"Vladimir N. Oleynik"
2006-01-31protect potential overflow for x86_64"Vladimir N. Oleynik"
2006-01-30fix up yet more annoying signed/unsigned and mixed type errorsEric Andersen
2006-01-30make certain we dereference the pointer as a time_t, esp on x86_64Eric 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-30removed warning "comparison between signed and unsigned". Change very very ↵"Vladimir N. Oleynik"
old code: use int instead short
2006-01-25just whitespaceTim Riker
2006-01-15- shared libbusybox.Bernhard Reutner-Fischer
- IMA compilation option (aka IPO, IPA,..) Please holler if i broke something..
2006-01-10can 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-16Ahem. Vladimir checked in a different fix bug didn't close out the bug.Rob Landley
Reverting...
2005-12-16Less would segfault if it had no tty. (Bug 600.)Rob Landley
2005-12-15fopen(TTY...) to bb_xfopen(), close bug 600"Vladimir N. Oleynik"
2005-12-06restore 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-28Rob Sullivan sent in some cleanups, which I beat on slightly.Rob Landley
2005-10-20another more const"Vladimir N. Oleynik"
2005-10-15data --> code"Vladimir N. Oleynik"
2005-10-08Coprolith polishing time: Tito switched devfsd over from CONFIG_ to ENABLE_.Rob Landley
2005-09-29change 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-24use the shorter license headerMike Frysinger
2005-09-24use brief license lineMike Frysinger
2005-09-22quick patch - have removed stranges for me"Vladimir N. Oleynik"
2005-09-21moved 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.hBernhard 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-19remove duplicate depend, its work for bb_mkdepend"Vladimir N. Oleynik"
2005-09-19correct build bbconfig applet, correct previous change"Vladimir N. Oleynik"
2005-09-19corect build bbconfig applet, Thanks, Bernhard Fischer"Vladimir N. Oleynik"
2005-09-191) read from stdin work now"Vladimir N. Oleynik"
2) destroy segfault in number_process 3) removes dead code complex patch my and Tito