aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - pass -static via CC rather than LDaldot2006-01-312-14/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13754 69ca8d6d-28ef-0310-b511-8ec308f3f277
* more destroy potential overflow for x86_64.vodz2006-01-311-1/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13753 69ca8d6d-28ef-0310-b511-8ec308f3f277
* destroy potential overflow for x86_64. Added ATTRIBUTE_UNUSEDvodz2006-01-311-3/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13752 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add and use ATTRIBUTE_ALIGNED(num_bytes)aldot2006-01-313-7/+10
| | | | | | | - remove unused parameter pindex from fdisk.c, xbsd_initlabel() git-svn-id: svn://busybox.net/trunk/busybox@13751 69ca8d6d-28ef-0310-b511-8ec308f3f277
* changed strange mix signed<->unsignedvodz2006-01-311-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13750 69ca8d6d-28ef-0310-b511-8ec308f3f277
* protect potential overflow for x86_64vodz2006-01-311-2/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13749 69ca8d6d-28ef-0310-b511-8ec308f3f277
* quick analize signed->unsigned: protect overflow of map[char], getchar->EOF. ↵vodz2006-01-311-12/+12
| | | | | | Use ATTRIBUTE_UNUSE. git-svn-id: svn://busybox.net/trunk/busybox@13747 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - fix typo i introduced yesterday.aldot2006-01-311-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13746 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Not on libbusybox.so: it's GPL, no API barrier, no stability promise.landley2006-01-311-0/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13744 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Turn defconfig into what make allyesconfig is today. Turn allyesconfiglandley2006-01-311-2/+8
| | | | | | | | | back into allyesconfig. (Memo: apparently SELINUX doesn't compile anymore.) Make defconfig shouldn't switch on libbusybox.so, but allyesconfig does. git-svn-id: svn://busybox.net/trunk/busybox@13743 69ca8d6d-28ef-0310-b511-8ec308f3f277
* hopefully the last of the annoying signed/unsigned and mixed type errorsandersen2006-01-306-21/+27
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13733 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix up yet more annoying signed/unsigned and mixed type errorsandersen2006-01-3013-46/+49
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13732 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make certain we dereference the pointer as a time_t, esp on x86_64andersen2006-01-301-1/+1
| | | | | | | where it might otherwise not be dereferenced as such by default git-svn-id: svn://busybox.net/trunk/busybox@13730 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix up annoying signed/unsigned and mixed type errorsandersen2006-01-309-15/+17
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13729 69ca8d6d-28ef-0310-b511-8ec308f3f277
* clean up yet more annoying signed/unsigned mismatches and fixupandersen2006-01-309-26/+28
| | | | | | | yet more incorrect types git-svn-id: svn://busybox.net/trunk/busybox@13725 69ca8d6d-28ef-0310-b511-8ec308f3f277
* passing around an int as a void* is a very bad ideaandersen2006-01-301-10/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13724 69ca8d6d-28ef-0310-b511-8ec308f3f277
* sort out yet more type issuesandersen2006-01-306-9/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13722 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - very minor tweak: save 1 byte.aldot2006-01-301-65/+65
| | | | | | | | | | | | | | | | | | | statistics: text data bss dec hex filename 867 0 12 879 36f fold.o.oorig.gcc-3.3 843 0 12 855 357 fold.o.oorig.gcc-3.4 780 0 12 792 318 fold.o.oorig.gcc-4.0 761 0 12 773 305 fold.o.oorig.gcc-4.1-HEAD 761 0 12 773 305 fold.o.oorig.gcc-4.2-HEAD 866 0 12 878 36e fold.o.gcc-3.3 842 0 12 854 356 fold.o.gcc-3.4 779 0 12 791 317 fold.o.gcc-4.0 760 0 12 772 304 fold.o.gcc-4.1-HEAD 760 0 12 772 304 fold.o.gcc-4.2-HEAD git-svn-id: svn://busybox.net/trunk/busybox@13721 69ca8d6d-28ef-0310-b511-8ec308f3f277
* with 2.4 kernel headers, lo_file_name is char, but with 2.6andersen2006-01-301-3/+3
| | | | | | | | headers we get a u8 for lo_file_name, so always cast to (char *) when treating it as such. git-svn-id: svn://busybox.net/trunk/busybox@13720 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fixup a few types to prevent gcc (rightfully) whining about mixingandersen2006-01-301-4/+4
| | | | | | | signed and unsigned, unmatches pointer target types, etc git-svn-id: svn://busybox.net/trunk/busybox@13719 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add some ATTRIBUTE_UNUSED.aldot2006-01-3013-146/+31
| | | | | | | - use shorter boilerplate while at it. git-svn-id: svn://busybox.net/trunk/busybox@13718 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - make linking against libcrypt optional by looking if pw_encrypt() oraldot2006-01-301-2/+8
| | | | | | | correct_password() is configured. Fixes allnoconfig pulling in -lcrypt. git-svn-id: svn://busybox.net/trunk/busybox@13715 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed warning "comparison between signed and unsigned".vodz2006-01-301-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13712 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed warning "comparison between signed and unsigned". Added ↵vodz2006-01-301-7/+7
| | | | | | ATTRIBUTE_UNUSED. My whitespace git-svn-id: svn://busybox.net/trunk/busybox@13711 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed warning "comparison between signed and unsigned". Added ↵vodz2006-01-301-28/+28
| | | | | | ATTRIBUTE_UNUSED. My whitespace git-svn-id: svn://busybox.net/trunk/busybox@13710 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed warning "comparison between signed and unsigned".vodz2006-01-301-3/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13709 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed warning "comparison between signed and unsigned". Added ↵vodz2006-01-301-8/+7
| | | | | | ATTRIBUTE_UNUSED. Whitespace git-svn-id: svn://busybox.net/trunk/busybox@13708 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed warning "comparison between signed and unsigned". Change very very ↵vodz2006-01-301-7/+7
| | | | | | old code: use int instead short git-svn-id: svn://busybox.net/trunk/busybox@13707 69ca8d6d-28ef-0310-b511-8ec308f3f277
* removed warning "comparison between signed and unsigned". Reduced sizevodz2006-01-301-43/+41
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13705 69ca8d6d-28ef-0310-b511-8ec308f3f277
* support GNU suffixes for fancy mode: b(512), k(1024) and m(1024*1024)vodz2006-01-301-0/+16
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13704 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove outdated and do not corected comment. Use bb_xasprintf instead ↵vodz2006-01-301-10/+4
| | | | | | xmalloc+set+set+strcpy. git-svn-id: svn://busybox.net/trunk/busybox@13703 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Re-add initrd support, unify halt/reboot/poweroff, add -n and -f options.landley2006-01-307-121/+73
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13701 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Note on SVN 13424: Don't mix "default y" and select of something earlier landley2006-01-301-1/+1
| | | | | | | | | in the menu hierarchy or else make allnoconfig winds up leaving whatever the select points to as "y". (In this case, "make allnoconfig" is leaving CONFIG_TEST as "y".) git-svn-id: svn://busybox.net/trunk/busybox@13693 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Move SUSv2 obsolete feature disabling to debug menu, invert meaning oflandley2006-01-305-71/+32
| | | | | | | | | | | symbol (switched on to remove now: test your apps to make sure they _don't_ do this, because as some point we should just yank it), fixup head/tail/fold. Also tweak "make allyesconfig" so anything starting with CONFIG_DEBUG gets left switched off. Possibly other things we want to put in the debug menu? git-svn-id: svn://busybox.net/trunk/busybox@13692 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove foo.txt and reenable -funsigned-char now that ash is fixed.landley2006-01-301-2/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13691 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remind me to implement bb_fork_exec()...landley2006-01-291-0/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13651 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add explanations of encrypted passwords, and fork vs vfork.landley2006-01-291-0/+115
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13650 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add a macro to check for ld and as flagsaldot2006-01-272-8/+27
| | | | | | | | | | Very unreliable as e.g the ld check will see the flags supported by each emulation, not just the active one. good enough for now.. Fix would be to crate one or more dummy .c files and accually try if a flag works. git-svn-id: svn://busybox.net/trunk/busybox@13638 69ca8d6d-28ef-0310-b511-8ec308f3f277
* for change previous log: close bug 186vodz2006-01-261-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13616 69ca8d6d-28ef-0310-b511-8ec308f3f277
* close bug 190vodz2006-01-261-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13614 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use LC_ALL, not LANG, for forcing Cvapier2006-01-252-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13613 69ca8d6d-28ef-0310-b511-8ec308f3f277
* C99 say: "char" declaration may be signed or unsigned defaultvodz2006-01-251-10/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13607 69ca8d6d-28ef-0310-b511-8ec308f3f277
* added support /prefix for IPV4 form IPV6 code. Close bug 461vodz2006-01-251-3/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13604 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - Simplify the prereq and add more documentation.aldot2006-01-251-41/+41
| | | | | | | - Fix regex for allyesconfig. git-svn-id: svn://busybox.net/trunk/busybox@13603 69ca8d6d-28ef-0310-b511-8ec308f3f277
* +#include <sys/socket.h>vodz2006-01-251-237/+238
| | | | | | | remove unused 'int i' form main whitespacing only git-svn-id: svn://busybox.net/trunk/busybox@13593 69ca8d6d-28ef-0310-b511-8ec308f3f277
* new applet. Thanks Roberto A. Fogliettavodz2006-01-257-0/+494
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13592 69ca8d6d-28ef-0310-b511-8ec308f3f277
* support 64 arith. Close bug 136vodz2006-01-252-18/+42
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13591 69ca8d6d-28ef-0310-b511-8ec308f3f277
* close bug 638vodz2006-01-251-1/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13588 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add more bash-like dot-dirs cmdedit featurevodz2006-01-252-98/+109
| | | | | | | Close bug 648. Restore my whitespace git-svn-id: svn://busybox.net/trunk/busybox@13587 69ca8d6d-28ef-0310-b511-8ec308f3f277
* ignore whitespacetimr2006-01-251-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13586 69ca8d6d-28ef-0310-b511-8ec308f3f277