oweals/busybox.git
18 years agoPatch from Tito:
Rob Landley [Thu, 25 May 2006 18:53:06 +0000 (18:53 -0000)]
Patch from Tito:
Remove -v verbose -V version -q quiet flags
Remove parse_opt_v2();
Rename parse_opt_v3() to parse_xfermode()
Remove if_strcat()
Rearrange code in  dump_identity() to reduce size
Modify some strings so that they could be optimized by the compiler
Minor code clean up
Remove unneeded #define <shm.h>

#if BB_BIG_ENDIAN && !defined(__USE_XOPEN)
# define __USE_XOPEN
#endif    
Must be before #include <unistd.h> and #include "busybox.h"
(noticed by Bernhard Fischer <rep.nop@aon.at>)

Remove duplicate code in do_time()

18 years agoRemove a pointless #define.
Rob Landley [Thu, 25 May 2006 18:31:11 +0000 (18:31 -0000)]
Remove a pointless #define.

18 years agomake the testsuite a little less brittle:
Bernhard Reutner-Fischer [Thu, 25 May 2006 13:24:02 +0000 (13:24 -0000)]
make the testsuite a little less brittle:
- 'function fn_name\n{' breaks on older FreeBSD default shells, so use the more
  widely supported 'fn_name () {'. This needs more fixing..
- test for integers ought to use the proper operators
- test for strings ought to use quoting of the strings to be fair to strange
  implementations of test(1)
- make sure not to ignore return-codes != 0 from commands; Some shells exit
  immediately on this (much like explicitely requesting set -e in e.g. bash)

TODO:
*) Some older shells do not allow a space after the test-condition in an "if"
statement. This doesn't work:
if [ $status -ne 0 ] ; then
as opposed to this:
if [ $status -ne 0 ]; then
or this
if [ $status -ne 0 ]
then

*) strict spacing between commands. In some shells you have to say:
foo ; bar ; baz
The affected shells barf on stuff like ommitting the space, so this doesn't
work:
foo; bar   ;baz

*) $() vs. ``
The former isn't really portable as opposed to the latter.

*) fix frong assumption that the testsuite is run from the source-dir.
This is a complete misconception and renders the testsuite completely useless.

That said, i note that IMO a test-harness ought to do it's best to work in
a wide variety of environments, everything else defeats it's purpose.

18 years agoTwo more issues pointed out by Bernhard.
Rob Landley [Wed, 24 May 2006 17:58:00 +0000 (17:58 -0000)]
Two more issues pointed out by Bernhard.

18 years agoYann Morin spotted some leftover flotsam from halfway through the recent
Rob Landley [Wed, 24 May 2006 17:45:47 +0000 (17:45 -0000)]
Yann Morin spotted some leftover flotsam from halfway through the recent
llist.c interface change that accidentally got checked in.  My bad.

18 years agoIt takes _talent_ to implement a version of nohup that does everything except
Rob Landley [Tue, 23 May 2006 00:28:06 +0000 (00:28 -0000)]
It takes _talent_ to implement a version of nohup that does everything except
the actual blocking of HUP.

18 years ago- set x bit
Bernhard Reutner-Fischer [Sun, 21 May 2006 22:06:59 +0000 (22:06 -0000)]
- set x bit

18 years agoConvert to a global struct, the way sed was. Now I have two, I can work out
Rob Landley [Sun, 21 May 2006 18:33:27 +0000 (18:33 -0000)]
Convert to a global struct, the way sed was.  Now I have two, I can work out
the infrastructure to merge global structs into a union...

18 years agoMinor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessary
Rob Landley [Sun, 21 May 2006 18:30:35 +0000 (18:30 -0000)]
Minor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessary
memset, collate variable declarations...

18 years agoNew version of nohup that's much smaller, less paranoid, consistent,
Rob Landley [Sun, 21 May 2006 18:28:13 +0000 (18:28 -0000)]
New version of nohup that's much smaller, less paranoid, consistent,
vaguely portable, and licensed GPLv2 "or later".

18 years ago- fix wrong path to scripts/usage; It is in the builddir and not in the srcdir.
Bernhard Reutner-Fischer [Sun, 21 May 2006 15:05:49 +0000 (15:05 -0000)]
- fix wrong path to scripts/usage; It is in the builddir and not in the srcdir.
- flag .depend as .NOTPARALLEL to workaround bug in make-3.80 and make-3.81
Some more details on the second workaround (i.e. kludge):
make-3.80 silently fails, while make-3.81 is at least self-conscious enough to
admit:
include/usage_compressed.h: .config scripts/usage
#  Implicit rule search has not been done.
#  File does not exist.
#  File has not been updated.
#  Dependencies commands running (THIS IS A BUG).
#  commands to execute (from `/home/cow/src/bb2/Makefile', line 430):
        $(Q)$(SHELL) $(top_srcdir)/scripts/usage_compressed "$(top_builddir)/scripts" > $@

I'm giving up on trying to run the rest of the prerequisites of .depend in
parallel and just (try to) indicate that the prerequisites of .depend are
not to be run in parallel.

While this makes `make distclean defconfig;make -j´ work for me, it is not a
real -- longterm -- solution; FIXME

18 years ago- check for existing usage binary, so it get's more obvious that the toplevel
Bernhard Reutner-Fischer [Sun, 21 May 2006 10:45:01 +0000 (10:45 -0000)]
- check for existing usage binary, so it get's more obvious that the toplevel
  Makefile uses the wrong path to the binary (it's in top_builddir and not in top_srcdir)

18 years ago- there is no _usage.h anymore, so don't rm it in distclean.
Bernhard Reutner-Fischer [Sun, 21 May 2006 10:04:46 +0000 (10:04 -0000)]
- there is no _usage.h anymore, so don't rm it in distclean.

18 years ago- do not create usage_compressed.h if CONFIG_FEATURE_COMPRESS_USAGE is not set
Bernhard Reutner-Fischer [Sun, 21 May 2006 09:02:12 +0000 (09:02 -0000)]
- do not create usage_compressed.h if CONFIG_FEATURE_COMPRESS_USAGE is not set

18 years ago- there is no "sh". Use $(SHELL)
Bernhard Reutner-Fischer [Sun, 21 May 2006 08:25:45 +0000 (08:25 -0000)]
- there is no "sh". Use $(SHELL)

18 years ago- silence warning about no return in function returning non-void
Bernhard Reutner-Fischer [Sat, 20 May 2006 14:14:05 +0000 (14:14 -0000)]
- silence warning about no return in function returning non-void
- put CONFIG_DEBUG_CROND_OPTION into config
no changes in size when debugging is disabled.

18 years agoPatch from Robert P. Day to remove #ifdefed out SLIP support code that we
Rob Landley [Fri, 19 May 2006 22:54:42 +0000 (22:54 -0000)]
Patch from Robert P. Day to remove #ifdefed out SLIP support code that we
have no CONFIG option to enable, and which existing SLIP users don't seem
to miss.

18 years agoRemove unused function parameter, from Garrett.
Rob Landley [Fri, 19 May 2006 22:42:23 +0000 (22:42 -0000)]
Remove unused function parameter, from Garrett.

18 years agoAdd diffutils and dhcp to list of packages we provide replacements for.
Rob Landley [Fri, 19 May 2006 22:14:19 +0000 (22:14 -0000)]
Add diffutils and dhcp to list of packages we provide replacements for.

18 years ago- backout erroneously checked in snippet..
Bernhard Reutner-Fischer [Fri, 19 May 2006 20:48:22 +0000 (20:48 -0000)]
- backout erroneously checked in snippet..

18 years agoFirst quick stab at organizing TODO under whose TODO item it is.
Rob Landley [Fri, 19 May 2006 20:47:55 +0000 (20:47 -0000)]
First quick stab at organizing TODO under whose TODO item it is.

18 years agoA pending item in my tree I might as well check in: I plan to migrate calloc()
Rob Landley [Fri, 19 May 2006 20:36:49 +0000 (20:36 -0000)]
A pending item in my tree I might as well check in: I plan to migrate calloc()
and bb_calloc() calls to bb_xzalloc() which allocates prezeroed memory but
only takes one argument (the size).

18 years ago- remove emacs layout block as suggested by Robert P.J. Day
Bernhard Reutner-Fischer [Fri, 19 May 2006 19:29:19 +0000 (19:29 -0000)]
- remove emacs layout block as suggested by Robert P.J. Day
- use shorter boilerplate while at it

18 years ago- forgot to make busybox_unstripped depend on the applets in IMA mode.
Bernhard Reutner-Fischer [Fri, 19 May 2006 18:37:34 +0000 (18:37 -0000)]
- forgot to make busybox_unstripped depend on the applets in IMA mode.

18 years ago- use shorter boilerplate.
Bernhard Reutner-Fischer [Fri, 19 May 2006 18:35:03 +0000 (18:35 -0000)]
- use shorter boilerplate.

18 years ago- redirect stdout of scripts/config/conf to /nil for
Bernhard Reutner-Fischer [Fri, 19 May 2006 18:33:34 +0000 (18:33 -0000)]
- redirect stdout of scripts/config/conf to /nil for
  allyesconfig, allnoconfig, defconfig, allbareconfig
- fix invalid call to "make"; use $(MAKE) instead.

18 years ago- remove SIGIOT as suggested by landley.
Bernhard Reutner-Fischer [Fri, 19 May 2006 17:54:05 +0000 (17:54 -0000)]
- remove SIGIOT as suggested by landley.

18 years agoPatch from tito to replace shared memory usage with mlock(), slightly tweaked
Rob Landley [Fri, 19 May 2006 17:24:26 +0000 (17:24 -0000)]
Patch from tito to replace shared memory usage with mlock(), slightly tweaked
by me.

18 years agofix indenting in help output for ifconfig
Mike Frysinger [Fri, 19 May 2006 16:14:31 +0000 (16:14 -0000)]
fix indenting in help output for ifconfig

18 years ago- typo s/allbaseconfig/allbareconfig/
Bernhard Reutner-Fischer [Fri, 19 May 2006 14:02:51 +0000 (14:02 -0000)]
- typo s/allbaseconfig/allbareconfig/
I thought Robert Day pointed this out, but i cannot find the mail in the archives..

18 years ago- replace _PATH_DEVNULL with bb_dev_null
Bernhard Reutner-Fischer [Fri, 19 May 2006 13:12:21 +0000 (13:12 -0000)]
- replace _PATH_DEVNULL with bb_dev_null

18 years ago- do not use non-standard u_int.
Bernhard Reutner-Fischer [Fri, 19 May 2006 13:02:27 +0000 (13:02 -0000)]
- do not use non-standard u_int.
- do not use _PATH_DEVNULL gnuism but bb_dev_null.
Thanks to Rich Felker.

18 years ago- make it C89 compatible; Declarations in the middle of a function is of course
Bernhard Reutner-Fischer [Fri, 19 May 2006 12:48:56 +0000 (12:48 -0000)]
- make it C89 compatible; Declarations in the middle of a function is of course
  fine in C99, but it really serves no purpose other than breaking compilation
  on C89 compilers.
  Thanks to Rich Felker for pointing this out.

18 years ago- use uint32_t instead of __u32
Bernhard Reutner-Fischer [Fri, 19 May 2006 12:44:16 +0000 (12:44 -0000)]
- use uint32_t instead of __u32
  Thanks to Rich Felker for pointing this out.

18 years ago- Rich Felker writes:
Bernhard Reutner-Fischer [Fri, 19 May 2006 12:41:13 +0000 (12:41 -0000)]
- Rich Felker writes:
SIGIOT is not defined in any standard i can find and it seems to be
useless (alias for SIGABRT) on linux. i put it in #ifdef but it's
probably best just to remove it and cut down the size a bit.

18 years ago- remove superfluous legacy includes.
Bernhard Reutner-Fischer [Fri, 19 May 2006 12:38:30 +0000 (12:38 -0000)]
- remove superfluous legacy includes.
This applet should be converted to use llist; __NEED_DLLIST

18 years ago- include strings.h
Bernhard Reutner-Fischer [Fri, 19 May 2006 12:30:00 +0000 (12:30 -0000)]
- include strings.h
  Thanks to Rich Felker for pointing this out.

18 years ago- fix invalid mode
Bernhard Reutner-Fischer [Fri, 19 May 2006 12:22:11 +0000 (12:22 -0000)]
- fix invalid mode

18 years ago- single KERNEL_VERSION(a,b,c) macro in platform.h
Bernhard Reutner-Fischer [Fri, 19 May 2006 11:54:02 +0000 (11:54 -0000)]
- single KERNEL_VERSION(a,b,c) macro in platform.h
- rename get_kernel_revision() to get_linux_version_code
from Robert P. J. Day

18 years ago- cleanup memory if opening aliases failed and cleanup was requested.
Bernhard Reutner-Fischer [Fri, 19 May 2006 11:24:28 +0000 (11:24 -0000)]
- cleanup memory if opening aliases failed and cleanup was requested.

18 years agoFluff out info on morris accounts.
Rob Landley [Thu, 18 May 2006 21:53:51 +0000 (21:53 -0000)]
Fluff out info on morris accounts.

18 years agoAvoid a memory leak pointed out by Lucas C. Villa Real.
Rob Landley [Thu, 18 May 2006 20:41:43 +0000 (20:41 -0000)]
Avoid a memory leak pointed out by Lucas C. Villa Real.

18 years agoTypo fix.
Rob Landley [Wed, 17 May 2006 21:04:53 +0000 (21:04 -0000)]
Typo fix.

18 years agoPatch from Bernhard Fischer to remove some useless bits.
Rob Landley [Wed, 17 May 2006 20:24:53 +0000 (20:24 -0000)]
Patch from Bernhard Fischer to remove some useless bits.

18 years agoAnnounce 1.1.3.
Rob Landley [Wed, 17 May 2006 19:59:24 +0000 (19:59 -0000)]
Announce 1.1.3.

18 years agoTypo that hits big endian systems.
Rob Landley [Wed, 17 May 2006 19:47:58 +0000 (19:47 -0000)]
Typo that hits big endian systems.

18 years agoThe gnu extension to have realpath() malloc its buffer when handed a NULL
Rob Landley [Wed, 17 May 2006 04:09:14 +0000 (04:09 -0000)]
The gnu extension to have realpath() malloc its buffer when handed a NULL
isn't implemented in uClibc, so we can't use it.

18 years agoRob Sullivan cleaned up the longstanding patch from Hideki IWAMOTO to add
Rob Landley [Tue, 16 May 2006 16:52:12 +0000 (16:52 -0000)]
Rob Sullivan cleaned up the longstanding patch from Hideki IWAMOTO to add
ibs and obs support to dd, and made it configurable.  I cleaned it up a bit
further and moved conv= into the same config option.

18 years agoLargeish cleanup patch from Tito, mostly if statement therapy.
Rob Landley [Tue, 16 May 2006 15:32:30 +0000 (15:32 -0000)]
Largeish cleanup patch from Tito, mostly if statement therapy.

18 years agoMake md5 calculation always go through an the buffer so that A) we don't
Rob Landley [Tue, 16 May 2006 02:38:26 +0000 (02:38 -0000)]
Make md5 calculation always go through an the buffer so that A) we don't
handle packets out of sequence if some data goes through the buffer and
some doesn't, B) it works on systems that can't handle aligned access,
C) we just have one code path to worry about.

While we're at it, sizeof() and RESERVE_CONFIG_BUFFER() really don't combine
well, which is why md5sum has been reading and processing data 4 bytes at a
time.  I suspect that the existence of CONFIG_MD5_SIZE_VS_SPEED to do loop
unrolling and such in the algorithm was an attempt to work around that bug.

18 years agoRemove some out of date bits.
Rob Landley [Mon, 15 May 2006 21:02:36 +0000 (21:02 -0000)]
Remove some out of date bits.

18 years agoThe one line fix to Bernhard Fischer's "profoundly".
Rob Landley [Mon, 15 May 2006 18:38:11 +0000 (18:38 -0000)]
The one line fix to Bernhard Fischer's "profoundly".

18 years ago- patch from Robert P. J. Day to use filter instead of findstring.
Bernhard Reutner-Fischer [Mon, 15 May 2006 10:04:50 +0000 (10:04 -0000)]
- patch from Robert P. J. Day to use filter instead of findstring.

18 years agopull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the mailing...
Mike Frysinger [Sat, 13 May 2006 02:33:41 +0000 (02:33 -0000)]
pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the mailing list

18 years agopull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the mailing...
Mike Frysinger [Sat, 13 May 2006 02:33:09 +0000 (02:33 -0000)]
pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the mailing list

18 years agofix whitespace
Mike Frysinger [Sat, 13 May 2006 02:27:52 +0000 (02:27 -0000)]
fix whitespace

18 years agoPatch from Lucas C. Villa Real adding "source" as a synonym for the "." command.
Rob Landley [Fri, 12 May 2006 20:44:16 +0000 (20:44 -0000)]
Patch from Lucas C. Villa Real adding "source" as a synonym for the "." command.

18 years agoimplement -print0 for find
Paul Fox [Fri, 12 May 2006 14:47:20 +0000 (14:47 -0000)]
implement -print0 for find

18 years agoAutodetect parts of a multipart file, from Robert P. Day's suggestion.
Rob Landley [Fri, 12 May 2006 01:42:33 +0000 (01:42 -0000)]
Autodetect parts of a multipart file, from Robert P. Day's suggestion.

18 years agoBusybox is licensed under GPLv2 or later. Shipping another license with the
Rob Landley [Thu, 11 May 2006 21:19:22 +0000 (21:19 -0000)]
Busybox is licensed under GPLv2 or later.  Shipping another license with the
project would confuse the issue.

Some of these files are available elsewhere under other license terms,
but that's not directly relevant to busybox.

18 years agoBug fix from Vladimir Oleynik, and suggestion I add my copyright notice
Rob Landley [Thu, 11 May 2006 18:25:24 +0000 (18:25 -0000)]
Bug fix from Vladimir Oleynik, and suggestion I add my copyright notice
to the file.

18 years agoTabs weren't lining up in the help text.
Rob Landley [Thu, 11 May 2006 17:33:10 +0000 (17:33 -0000)]
Tabs weren't lining up in the help text.

18 years agoMore about configuring busybox.
Rob Landley [Thu, 11 May 2006 17:21:13 +0000 (17:21 -0000)]
More about configuring busybox.

18 years agoRename the devfs device names option so it doesn't bite people so often.
Rob Landley [Thu, 11 May 2006 16:39:52 +0000 (16:39 -0000)]
Rename the devfs device names option so it doesn't bite people so often.

18 years agoPatch from Vladamir Oleynik, reducing memory consumption.
Rob Landley [Thu, 11 May 2006 15:23:23 +0000 (15:23 -0000)]
Patch from Vladamir Oleynik, reducing memory consumption.

18 years agoRemove reference to programming.html, update description of FAQ.
Rob Landley [Thu, 11 May 2006 15:02:32 +0000 (15:02 -0000)]
Remove reference to programming.html, update description of FAQ.

18 years agoReorganize FAQ, update a few entries, and consolidate with programming.html.
Rob Landley [Thu, 11 May 2006 15:00:32 +0000 (15:00 -0000)]
Reorganize FAQ, update a few entries, and consolidate with programming.html.

18 years agoback out default implicit %.o rule for now
Mike Frysinger [Thu, 11 May 2006 05:33:31 +0000 (05:33 -0000)]
back out default implicit %.o rule for now

18 years agomove the dir related rules to the end so the E2FSPROGS_AR rule is the default
Mike Frysinger [Thu, 11 May 2006 04:39:09 +0000 (04:39 -0000)]
move the dir related rules to the end so the E2FSPROGS_AR rule is the default

18 years agodont use tabs people
Mike Frysinger [Thu, 11 May 2006 04:37:25 +0000 (04:37 -0000)]
dont use tabs people

18 years agofix no previous prototype warning
Mike Frysinger [Thu, 11 May 2006 02:36:51 +0000 (02:36 -0000)]
fix no previous prototype warning

18 years agofix no previous prototype warning
Mike Frysinger [Thu, 11 May 2006 02:35:55 +0000 (02:35 -0000)]
fix no previous prototype warning

18 years agotypecast bbig to kill format warnings
Mike Frysinger [Thu, 11 May 2006 02:31:45 +0000 (02:31 -0000)]
typecast bbig to kill format warnings

18 years agorename
Mike Frysinger [Thu, 11 May 2006 02:10:13 +0000 (02:10 -0000)]
rename

18 years agoremove files not related to busybox
Mike Frysinger [Thu, 11 May 2006 02:09:39 +0000 (02:09 -0000)]
remove files not related to busybox

18 years agoadd implicit rule for %.a to help debugging in subdirs
Mike Frysinger [Wed, 10 May 2006 18:12:16 +0000 (18:12 -0000)]
add implicit rule for %.a to help debugging in subdirs

18 years agoShut up the warning "implicit declaration of strlen".
Rob Landley [Wed, 10 May 2006 17:41:21 +0000 (17:41 -0000)]
Shut up the warning "implicit declaration of strlen".

18 years agoaccept() takes a socklen_t, not an int
Mike Frysinger [Wed, 10 May 2006 17:18:11 +0000 (17:18 -0000)]
accept() takes a socklen_t, not an int

18 years agofix whitespace in comment example
Mike Frysinger [Wed, 10 May 2006 17:17:09 +0000 (17:17 -0000)]
fix whitespace in comment example

18 years agosome more useful debug info from Jason Holden
Mike Frysinger [Wed, 10 May 2006 17:14:32 +0000 (17:14 -0000)]
some more useful debug info from Jason Holden

18 years agoadd a default .o rule for easier debug
Mike Frysinger [Wed, 10 May 2006 17:12:12 +0000 (17:12 -0000)]
add a default .o rule for easier debug

18 years ago- add helptext for --retries
Bernhard Reutner-Fischer [Wed, 10 May 2006 16:11:02 +0000 (16:11 -0000)]
- add helptext for --retries

18 years agotouchup whitespace/english a bit more
Mike Frysinger [Wed, 10 May 2006 15:59:07 +0000 (15:59 -0000)]
touchup whitespace/english a bit more

18 years agowhitespace between if and (
Mike Frysinger [Wed, 10 May 2006 15:23:12 +0000 (15:23 -0000)]
whitespace between if and (

18 years ago- typo in error-message: s/algotithm/algorithm
Bernhard Reutner-Fischer [Wed, 10 May 2006 07:59:32 +0000 (07:59 -0000)]
- typo in error-message: s/algotithm/algorithm
- whitespace cleanup

18 years agoclean more files
Mike Frysinger [Wed, 10 May 2006 05:19:27 +0000 (05:19 -0000)]
clean more files

18 years agoReplace isnan() and isinf() with inline tests so uClibc doesn't want us to
Rob Landley [Tue, 9 May 2006 23:14:39 +0000 (23:14 -0000)]
Replace isnan() and isinf() with inline tests so uClibc doesn't want us to
link sort against libm.  This adds 22 bytes for glibc but is a win for uClibc,
and since glibc is bigger than all of busybox it seems kind of silly to worry
about it.

18 years agoSplit CONFIG_DEBUG from CONFIG_DEBUG_PESSIMIZE, and consolidate some Rules.mak
Rob Landley [Tue, 9 May 2006 22:08:56 +0000 (22:08 -0000)]
Split CONFIG_DEBUG from CONFIG_DEBUG_PESSIMIZE, and consolidate some Rules.mak
stuff along the way.

18 years ago- fix bug in make help introduced by landley in r15022:
Bernhard Reutner-Fischer [Tue, 9 May 2006 11:29:56 +0000 (11:29 -0000)]
- fix bug in make help introduced by landley in r15022:

Development:
  bloatcheck             - show size difference between busybox_unstripped
  /bin/sh: -c: line 0: unexpected EOF while looking for matching `''
  /bin/sh: -c: line 1: syntax error: unexpected end of file
  make[1]: *** [help] Error 2
  make: *** [help] Error 2

18 years agoConvert sed's static variables to a single global structure.
Rob Landley [Tue, 9 May 2006 03:53:55 +0000 (03:53 -0000)]
Convert sed's static variables to a single global structure.

18 years agoMove sed over to the generic llist_t for append. Saves about 90 bytes.
Rob Landley [Mon, 8 May 2006 22:17:23 +0000 (22:17 -0000)]
Move sed over to the generic llist_t for append.  Saves about 90 bytes.

18 years agoMake bloatcheck work when building out of tree.
Rob Landley [Mon, 8 May 2006 20:48:12 +0000 (20:48 -0000)]
Make bloatcheck work when building out of tree.

18 years ago- fix build
Bernhard Reutner-Fischer [Mon, 8 May 2006 20:20:32 +0000 (20:20 -0000)]
- fix build

18 years agoFiddling with llist to make memory management easier. Specifically, the
Rob Landley [Mon, 8 May 2006 19:03:07 +0000 (19:03 -0000)]
Fiddling with llist to make memory management easier.  Specifically, the
option to delete the contents of the list when we delete the list is a
good thing.

18 years agoTweak suggested by Matt Mackall when I submitted the bloat-o-meter changes
Rob Landley [Mon, 8 May 2006 18:30:33 +0000 (18:30 -0000)]
Tweak suggested by Matt Mackall when I submitted the bloat-o-meter changes
back to linux-kernel...

18 years agoThe changes svn 14960 made to Rules.mak broke building out of tree
Rob Landley [Mon, 8 May 2006 18:18:02 +0000 (18:18 -0000)]
The changes svn 14960 made to Rules.mak broke building out of tree
(with O=directory), and reverting them fixes building out of tree.  I'd be
happy to fix them up instead of reverting them if I had the foggiest idea
what they were trying to do, but I don't, and this at least gets building
out of tree working again...

18 years agoThe if() is cheaper than the extra function parameter. According to make
Rob Landley [Mon, 8 May 2006 15:35:46 +0000 (15:35 -0000)]
The if() is cheaper than the extra function parameter.  According to make
bloatcheck, this saves 112 bytes on x86...

18 years agoRemove a link that leaked in from the pending llist_t changes.
Rob Landley [Mon, 8 May 2006 15:08:25 +0000 (15:08 -0000)]
Remove a link that leaked in from the pending llist_t changes.

18 years agore-enable udhcp in a few more places
Mike Frysinger [Mon, 8 May 2006 03:24:36 +0000 (03:24 -0000)]
re-enable udhcp in a few more places

18 years agoadd back in udhcp support
Mike Frysinger [Mon, 8 May 2006 03:20:50 +0000 (03:20 -0000)]
add back in udhcp support