aboutsummaryrefslogtreecommitdiff
path: root/libbb/messages.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2006-06-10- don't check for toolchain-setting for make targets that don't need themaldot2-2/+16
- we already depend on sed, so do away with tr. Avoids pulling in yet another dependency. git-svn-id: svn://busybox.net/trunk/busybox@15358 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-10- revert incorrect select changealdot1-7/+5
git-svn-id: svn://busybox.net/trunk/busybox@15357 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-10- fix two segfaults (reported by Horst Kronstorfer)aldot1-147/+139
- remove dangling file if get fails (spotted and fixed by Jason Schoon) - shrink it (Bernhard Fischer) Thanks, all! text data bss dec hex filename 2684 0 0 2684 a7c networking/tftp.o.orig 2748 0 0 2748 abc networking/tftp.o.allfixed 2666 0 0 2666 a6a networking/tftp.o.+shrink git-svn-id: svn://busybox.net/trunk/busybox@15355 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-10- use bb_xbindaldot1-1/+1
Thanks Erik Hovland git-svn-id: svn://busybox.net/trunk/busybox@15351 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-10- use bb_xchdir instead of ignoring eventual errors of chdiraldot2-3/+3
Thanks to Erik Hovland git-svn-id: svn://busybox.net/trunk/busybox@15350 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-10- fix bug #887, in bb_get_chomped_line_from_file(), the last char was removedaldot1-9/+14
unconditionally, even if it was not a newline. This was apparently broken by r14254 - whitespace while at it. git-svn-id: svn://busybox.net/trunk/busybox@15348 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-09add ordering warning on enum Locationpgf1-0/+1
git-svn-id: svn://busybox.net/trunk/busybox@15347 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-09- make sure that we see string_insert only if we need it.aldot1-2/+2
git-svn-id: svn://busybox.net/trunk/busybox@15346 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-08remove leading "Enable" from the config option text. not only is itpgf1-12/+12
redundant, but it made the menuconfig shortcut mechanism mostly useless, since so many of the entries started with 'E'. git-svn-id: svn://busybox.net/trunk/busybox@15345 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-08made "test" an ash built-in.pgf8-232/+270
moved the contents of libbb/bb_echo.c back into coreutils/echo.c, which is a more reasonable place for them than libbb. this forces anyone who wants echo and test to be builtin to ash to also have them available as applets. their cost is very small, and the number of people who wouldn't want them as applets is also very small. added warning about shell builtins vs. CONFIG_FEATURE_SH_STANDALONE_SHELL, which conflicts with their use. thanks to nathanael copa for debugging help. some string size optimization in test.c may have been lost with this commit, but this is a good new baseline. git-svn-id: svn://busybox.net/trunk/busybox@15344 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-08Patch from Erik Hovland, via Tito.landley1-2/+2
git-svn-id: svn://busybox.net/trunk/busybox@15341 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-08Some day, maybe gcc will be able to optimize out static functions that arelandley1-1/+2
never used so we don't have to #ifdef them. Wouldn't that be nice? git-svn-id: svn://busybox.net/trunk/busybox@15340 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07need prototype for new vfork_daemon()vapier1-0/+1
git-svn-id: svn://busybox.net/trunk/busybox@15335 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07initial support for no-mmu systemsvapier1-0/+4
git-svn-id: svn://busybox.net/trunk/busybox@15334 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07sometimes daemonizing and vfork()/exit() is okvapier1-5/+19
git-svn-id: svn://busybox.net/trunk/busybox@15333 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07bb_xdaemon() isnt available on no-mmu systemsvapier1-1/+3
git-svn-id: svn://busybox.net/trunk/busybox@15332 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07comment all fieldsvapier1-4/+4
git-svn-id: svn://busybox.net/trunk/busybox@15331 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07hint at where the Magic comes fromvapier1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@15330 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07- do away with the comment that noted that the current implementationaldot1-1/+1
unly supports linux. git-svn-id: svn://busybox.net/trunk/busybox@15329 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07Fix from Tito to read from stdin only when it's not a tty.landley2-4/+4
git-svn-id: svn://busybox.net/trunk/busybox@15328 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07- spellingaldot1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@15327 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07add reference to proc(5)vapier1-0/+1
git-svn-id: svn://busybox.net/trunk/busybox@15326 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07- reuse strings and messages. Saves about 600Baldot22-86/+77
git-svn-id: svn://busybox.net/trunk/busybox@15325 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07Consolidate devfs garbage and mark it as obsolete.landley2-13/+16
git-svn-id: svn://busybox.net/trunk/busybox@15324 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07use bb_xbind/bb_xlistenvapier1-5/+2
git-svn-id: svn://busybox.net/trunk/busybox@15323 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07whitespacevapier1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@15322 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07whitespacevapier1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@15321 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07add a --noclobber flagvapier1-2/+8
git-svn-id: svn://busybox.net/trunk/busybox@15320 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07add support for cleaning out previous busybox installvapier1-0/+18
git-svn-id: svn://busybox.net/trunk/busybox@15319 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07dont install emtpy libdirsvapier1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@15318 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07dont mix tabs and spaces, kthxvapier1-13/+13
git-svn-id: svn://busybox.net/trunk/busybox@15317 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07remove cvs $Id tagvapier1-3/+0
git-svn-id: svn://busybox.net/trunk/busybox@15316 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07- add applet taskset to set/retrieve the CPU affinity of a processaldot6-0/+109
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 git-svn-id: svn://busybox.net/trunk/busybox@15315 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07Tito writes: this patch fixes two potential bugs with the -i -I flags that ↵vapier1-2/+2
could be reset during option parsing git-svn-id: svn://busybox.net/trunk/busybox@15307 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07- fix the build if we have ftpput without ftpget (speeling reeoe)aldot2-3/+3
Thanks to Stephane Billiart git-svn-id: svn://busybox.net/trunk/busybox@15305 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-07Callers to identify() converted the endianness of the buffer. So didlandley1-16/+16
identify(). This meant big endian systems had a NUXI problem. Removed the redundant conversion from the callers, and made some in-passing cleanups while I was there. git-svn-id: svn://busybox.net/trunk/busybox@15301 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06Remove a config entry that leaked in from my tree before I decided tolandley1-7/+1
implement cat -v as a separate applet. git-svn-id: svn://busybox.net/trunk/busybox@15300 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06Whack the one last warning in make allbareconfig...landley1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@15299 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06import support for microblaze relocations from uClinux-distvapier1-0/+59
git-svn-id: svn://busybox.net/trunk/busybox@15297 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06make the default prompt suck less when using fancy promptsvapier1-2/+11
git-svn-id: svn://busybox.net/trunk/busybox@15296 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06fix from uClinux-dist for proper exit status if reading /proc/modules failedvapier1-5/+5
git-svn-id: svn://busybox.net/trunk/busybox@15295 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06merge blackfin/microblaze from uClinux-distvapier1-0/+17
git-svn-id: svn://busybox.net/trunk/busybox@15294 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06use vfork() instead of vork() since the only thing we do is execve() an app ↵vapier1-1/+1
after fork (allows time to work on no-mmu) git-svn-id: svn://busybox.net/trunk/busybox@15293 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-06only check __GNU_LIBRARY__ if it is actually definedvapier1-2/+2
git-svn-id: svn://busybox.net/trunk/busybox@15292 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-05Header cleanup on two more networking files (move libbb.h to the top andlandley3-26/+17
remove #includes that libbb.h already does), plus a minor cleanup of libbb.h to move #includes towards the top of the file where we can see 'em. git-svn-id: svn://busybox.net/trunk/busybox@15287 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-05Confirming it's not needed.landley1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@15286 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-05- add note about need to unify the 4 itoa() implementations.aldot1-0/+3
git-svn-id: svn://busybox.net/trunk/busybox@15285 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-04- add testcase for grep bug (http://busybox.net/bugs/view.php?id=887)aldot1-0/+2
The patch for bug #887 seems to work for me.. git-svn-id: svn://busybox.net/trunk/busybox@15283 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-04- add note about ingroup and is_a_group_memberaldot1-0/+2
git-svn-id: svn://busybox.net/trunk/busybox@15282 69ca8d6d-28ef-0310-b511-8ec308f3f277
2006-06-04- add note about removing superfluous fmt specifiersaldot1-2/+7
git-svn-id: svn://busybox.net/trunk/busybox@15281 69ca8d6d-28ef-0310-b511-8ec308f3f277