aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* update bb_getopt_ulflags special for 'ps' applet, usaging '-' as first group ↵"Vladimir N. Oleynik"2005-10-052-19/+50
| | | | | | | | char from bb_opt_complementally is new feature: set argv is options; use new bb_getopt_ulflags for ps # define terminal_width 80->79 for unwide use stdout file descriptor for get_terminal_width_height. (its must)
* - Fix spurious rebuilds for (parallel) out-of-tree builds.Bernhard Reutner-Fischer2005-10-051-8/+12
| | | | | | | Make sure that the directories are order-only prerequisites. Otherwise we may have object files created after the timestamp of the directory was updated which would lead to spurious rebuilds (as some of the dentries may be older than the dir itself).
* - fix building out-of-tree;Bernhard Reutner-Fischer2005-10-056-106/+149
| | | | | | | | | | | | | | | | | to test, checkout the source (let's assume /scratch/src/busybox), then mkdir /tmp/bb ; cd /tmp/bb make top_srcdir=/scratch/src/busybox O="$(pwd)" -f /scratch/src/busybox/Makefile allyesconfig check - default to O=$(pwd) if no O was specified. Now you can just specify the top_srcdir (without O=/somewhere) to create the obj-tree in pwd. - make "make configtarget buildtarget" work. Previously this didn't work due to how HAVE_DOT_CONFIG was evaluated. Two separate steps were needed before, e.g. make config ; make busybox. - remove some unneeded variables from Rules.mak (BB_SRC_DIR from Mr. ldoolitt@recycle.lbl) which suggest that the stuff fixed above didn't work before. - move selinux libraries to where they belong (from Makefile to Rules.mak) - update the docs to mention svn instead of cvs and provide an example for building out-of-tree in INSTALL.
* as Tito points out, e2fsck and fsck need more dependenciesMike Frysinger2005-10-051-2/+2
|
* dont typecast lvalue since gcc hates thatMike Frysinger2005-10-051-1/+1
|
* ps selinux logic correction, but do not tested too"Vladimir N. Oleynik"2005-10-041-4/+3
|
* use updated bb_getopt_ulflags() for ps applet"Vladimir N. Oleynik"2005-10-042-27/+58
|
* - add option 'w' to ps (wide output, optional feature defaults to off).Bernhard Reutner-Fischer2005-10-043-39/+48
| | | | | | | | | | | - move to ENABLE_ and use shorter boilerplate. sizes without selinux-support: text data bss dec hex filename 356 0 0 356 164 procps/ps.o.with-w 300 0 0 300 12c procps/ps.o.no-w 302 0 0 302 12e procps/ps.o.oorig
* - add prototype for llist_add_to_end to libbb.hBernhard Reutner-Fischer2005-10-041-0/+1
|
* Add find -exec support from Rob Sullivan, and convert CONFIG_ to ENABLE_Rob Landley2005-10-043-44/+78
| | | | while we're in the area.
* speed up * 2"Vladimir N. Oleynik"2005-10-031-105/+94
|
* sync inetd with slackware-10.2 inetd (OpenBSD-1.79), have destroy bug 455"Vladimir N. Oleynik"2005-10-032-910/+1494
|
* excellent shrinkage patch by TitoMike Frysinger2005-10-024-367/+307
|
* clean out unneeded E2FSCK variablesMike Frysinger2005-10-021-4/+1
|
* remove debug warningMike Frysinger2005-10-021-1/+1
|
* reorder arches into alphabetical orderMike Frysinger2005-10-021-198/+201
|
* fixup whitespaceMike Frysinger2005-10-021-14/+14
|
* remove all Elf32 hardcodes to make sure the elf handling is 64bit cleanMike Frysinger2005-10-021-47/+53
|
* svdavidson writes in Bug 459: add support for x86_64 relocations from ↵Mike Frysinger2005-10-021-1/+72
| | | | modutils 2.4.27
* typoBernhard Reutner-Fischer2005-09-301-1/+1
|
* - remove duplicate entry of resolve.c in BLKID_SRCBernhard Reutner-Fischer2005-09-301-2/+3
| | | | - use the sourcedir to look for includes rather than the builddir
* change interface to bb_xasprintf() - more perfect for me."Vladimir N. Oleynik"2005-09-2916-49/+33
| | | | | ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers reduce 100 bytes don't care in sum
* forgotten putenv"Vladimir N. Oleynik"2005-09-291-2/+1
|
* don't out \r to syslog"Vladimir N. Oleynik"2005-09-291-1/+1
|
* - rename llist_add_to.c to llist.cBernhard Reutner-Fischer2005-09-294-40/+53
| | | | - move llist_add_to_end() from ifupdown.c to libbb/llist.c
* getty must chdir(/). Use bb_getopt_ulflags. Indent. error() perfect"Vladimir N. Oleynik"2005-09-291-221/+180
|
* more busybox's style for fsck.c, size reduce"Vladimir N. Oleynik"2005-09-291-201/+142
|
* busybox.c: ENABLE_LOCALE logic correct."Vladimir N. Oleynik"2005-09-291-1/+1
|
* reorder include <sys/types.h> and <sys/types.h>."Vladimir N. Oleynik"2005-09-291-1/+1
|
* more const, inline, forward declaration usage, strip 20k source size ;-)"Vladimir N. Oleynik"2005-09-282-1178/+459
|
* allow people to adjtime locationMike Frysinger2005-09-282-2/+18
|
* move e2fsck/* to e2fsck.c, one e2fsck_main and jornal exported, small ↵"Vladimir N. Oleynik"2005-09-2730-17233/+15465
| | | | automatic size reduction
* fix building w/out et headers and w/out debugMike Frysinger2005-09-274-5/+3
|
* as pointed out in Bug 17, use uint32_t instead of unsigned long since the ↵Mike Frysinger2005-09-271-20/+20
| | | | code expects the size of the info variables to be 32bits and sizeof(long) on 64bit hosts is not 32bits
* pass EXTRA_CFLAGS to final link since it may contain things that affect ↵Mike Frysinger2005-09-271-1/+1
| | | | linking (such as -m32)
* eat misappropriated whitespaceMike Frysinger2005-09-271-66/+66
|
* uncuddle function scope bracketsMike Frysinger2005-09-271-116/+116
|
* - remove unused variable TOPDIRBernhard Reutner-Fischer2005-09-262-5/+3
|
* add "make help"Rob Landley2005-09-261-0/+30
|
* revert wait zombie, it have as linux-specific signal(SIG_CHLD,SIG_IGN) ↵"Vladimir N. Oleynik"2005-09-261-3/+0
| | | | already, do not confuse me\!
* correct set prompt if CONFIG_ASH_EXPAND_PRMT enabled, small automatic ↵"Vladimir N. Oleynik"2005-09-261-3/+12
| | | | space->tabs convert by my personal editor
* spwd bulid now, (typo)"Vladimir N. Oleynik"2005-09-261-1/+1
|
* Patch from Amir Shalem to make busybox compile on a uClibc that has no shadowRob Landley2005-09-251-3/+5
| | | | password support.
* whitespace sucksMike Frysinger2005-09-251-23/+23
|
* fix building with debugging enabled #413Mike Frysinger2005-09-255-682/+485
|
* this should fix parallel building with .depend/bb_config.hMike Frysinger2005-09-251-3/+2
|
* Stop gcc4 from nit-picking about signedness of char *.Rob Landley2005-09-251-1/+2
|
* Cristian Ionescu-Idbohrn writes to fix a warning: networking/ifconfig.c uses ↵Mike Frysinger2005-09-241-1/+1
| | | | an uchar ptr to work with a char ptr so change the uchar to char
* Cristian Ionescu-Idbohrn says: touchup whitespace/displayMike Frysinger2005-09-241-6/+6
|
* touchup argc/argv handling to shrink a bit and fix a segfault when given ↵Mike Frysinger2005-09-241-11/+12
| | | | wrong number of parameters as noted and fixed by Cristian Ionescu-Idbohrn