ff3a61b71d
Do not define 'AUTOCONF_INCLUDED'
2005-08-02 00:59:44 +00:00
4240364098
commiting:
...
0000028 03-16-05 patch: new setsid applet
2005-08-01 22:52:09 +00:00
f1dbd4a6f7
fix bbconfigopts.h depend
2005-08-01 20:49:32 +00:00
fcafa4bfc1
screw around with whitespace
2005-08-01 20:48:00 +00:00
b831753676
commiting:
...
0000073: Add option to inetd applet to run in foreground
this option was already there for uclinux -- this just exposes
it in the normal case as well.
2005-08-01 19:39:47 +00:00
156dc41cbc
commiting patch from bug 71:
...
0000071: patch: implement "--color" option for ls coloring control
2005-08-01 19:33:30 +00:00
fc2256a6ca
applying patch for bug 72:
...
0000072: Add applet to redirect console output via ioctl(..., TIOCCONS)
applet name changed to setconsole, since suse has a very similar
utility. better to treat differences as bugs than invent a new command.
2005-08-01 18:12:30 +00:00
41a72ecd19
applying patch from bug 24:
...
0000024 03-16-05 patch: allow init to set controlling tty
2005-08-01 16:43:13 +00:00
79c142d938
new config display applet, from bug 46. i've changed the name
...
of the applet from "config" to "bbconfig", and renamed the
source filenames and symbols to match appropriately.
2005-08-01 16:04:40 +00:00
a39bba33c8
allow suppression of default client-id. fixes bug 000037. allows
...
busybox to match kernel and u-boot behavior with respect to client-id.
2005-08-01 14:31:13 +00:00
9d6e0833bc
patch by pkj in Bug 3 to not export all make variables
2005-07-31 22:50:17 +00:00
d84a35f649
patch by apgo in Bug 345 to not use ether_hostton() with uClibc
2005-07-31 22:49:12 +00:00
15ca58648a
patch by srowe in Bug 359 to fix fgrep aliasing
2005-07-31 22:41:05 +00:00
66c37d1390
typecast to int
2005-07-31 22:22:20 +00:00
2e3054f413
use socklen_t instead of size_t with socket related functions
2005-07-31 22:20:02 +00:00
1c1655a301
move -s from LDFLAGS to STRIPCMD
2005-07-31 22:11:33 +00:00
7e64db23d0
use defines instead of const integers
2005-07-31 22:09:33 +00:00
e11ff718ac
shrink the flag setting by reversing the operation
2005-07-31 22:06:38 +00:00
6f978dbacd
eat leading whitespace with preprocessor
2005-07-31 21:05:19 +00:00
08c20362f5
replace for loops with one function call
2005-07-31 20:51:58 +00:00
de7f9b7332
Ahem: add new faq entry to list at top of FAQ.html
2005-07-31 04:27:19 +00:00
c7a3e1be8f
Fix "nm --size-sort" on the busybox binary and document how to make it work.
2005-07-31 04:25:00 +00:00
e70aa9de7e
only declare do_swap if we need it
2005-07-30 09:43:58 +00:00
223b887960
touchup syntax
2005-07-30 09:42:05 +00:00
198ea3c86a
cleanup the error message so we dont use glibcism of %m and cast a pointer to an int (bad on 64bit arches)
2005-07-30 09:29:10 +00:00
f28c7ec7e5
cleanup syntax
2005-07-30 09:24:49 +00:00
0d3ca7289e
tell people to ignore the dups/e0 warnings
2005-07-30 08:59:38 +00:00
cc428da83f
punt unused variable
2005-07-30 08:58:19 +00:00
d6a2d41db2
tell people to ignore the save_name warning
2005-07-30 08:57:35 +00:00
14445fd9a1
in order to make sure the INET6 prototypes are exported, we would have to include the libbb.h header file ... but then we have to worry about including too early/etc...
...
since simply defining the prototype in an internal header file doesnt hurt anyone, lets not worry about the header file crap and just always prototype the inet6 functions
2005-07-30 08:54:43 +00:00
b953134bba
apgo in Bug 322 writes: kill off CONFIG_FEATURE_MTAB_FILENAME
2005-07-30 08:48:10 +00:00
69024551bf
rename the accept/reject names since accept overrides the accept() socket function
2005-07-30 07:30:26 +00:00
f7eaf5a012
apgo in Bug 351 says: punt parse_version_number since it is no longer used
2005-07-30 07:29:22 +00:00
bb9a0ad95a
commiting fix from:
...
0000353: [PATCH] start-stop-daemon -q is not quiet
2005-07-29 14:58:09 +00:00
b3b756dab3
further refine check_gcc usage so it is only called the bare min number of times
2005-07-28 22:26:25 +00:00
c99e2c5f4c
dont output anything when running in silent mode
2005-07-28 22:14:35 +00:00
088ee4134b
From Rich Paul:
...
I've noticed that when I compile busybox on my laptop, it compiles more
slowly than one would expect, and although it's a (more-or-less)
multiprocessor system and I use -j5, make never seems to run more than
one job at a time.
I believe I have found the culprit: each time a file is compiled, gcc
runs about 5 times. This is because the $(check_gcc) macros and the
TARGET_ARCH macros are late binding.
The attached patch cuts the compilation time by 66%, from 1.5 minutes to
30 seconds. Your mileage may very. These statements have not been
evaluated by the FDA.
2005-07-28 19:38:52 +00:00
ef8f423e90
Erik pointed out that in the last try at the #ifdef cleanup
...
infrastructure, the compiler isn't smart enough to replace const static
int with the constant, and allocates space for each set of them,
bloating the executable something fierce. Oops.
So now, we #define ENABLE_XXX to 0 or 1 for each CONFIG_XXX (which
is still there so the 1000+ #ifdef/#ifndef tests don't have to be
replaced wholesale). Changed the test instance in networking/ifconfig.c
to use this.
2005-07-28 19:36:33 +00:00
e5ba382b99
move the ifdef to after libbb.h include, so it can do some good.
2005-07-27 14:20:52 +00:00
193c8c7383
#ifdef reduction infrastructure, based on an argument between Shaun Jackman,
...
Rob Landley, and others.
Currently CONFIG options are defined or undefined, so we chop out code with
#ifdefs, ala:
#ifdef CONFIG_THING
stuff();
#endif
This creates a new header file, bb_config.h, which sets the CONFIG entry to 1
or 0, and lets us do:
if(CONFIG_THING) stuff();
And let the compiler do dead code elimination to get rid of it. (Note: #ifdef
will still work because for the 1 case it's a static const int, not a #define.)
2005-07-27 06:55:36 +00:00
77804ce53d
The change in getty.c in Busybox 1.01 caused the /etc/issue file to not
...
be displayed unless CONFIG_FEATURE_UTMP is set. This was not the intended
result.
2005-07-27 06:05:38 +00:00
4d00896d05
use toplevel ARFLAGS and update default ARFLAGS to be quiet
2005-07-27 01:09:24 +00:00
6fafa5aa9f
2005-04-05 Shaun Jackman <sjackman@gmail.com>
...
* libbb/printf.c: Check for __NEWLIB_H__ before __GLIBC__.
2005-07-26 23:05:03 +00:00
03e827a422
2005-03-19 Shaun Jackman <sjackman@gmail.com>
...
* networking/ping.c (ping): Change the type of fromlen to socklen_t.
2005-07-26 23:00:59 +00:00
dbc049fda4
remove unused variable ret as reported by apgo in Bug 350 and touchup syntax along the way
2005-07-26 22:57:51 +00:00
6e05312ba9
no longer used as reported by apgo in Bug 348
2005-07-26 22:51:57 +00:00
726b2cb5da
just punt all the f_frsize crap since not all linux headers support it Bug 346
2005-07-26 22:39:56 +00:00
1429017968
ifdef all of loop.c with CONFIG_FEATURE_MOUNT_LOOP. won't
...
compile due to CONFIG_FEATURE_MOUNT_LOOP_MAX otherwise. reported
by Stephane Billiart.
2005-07-22 19:58:32 +00:00
37dd6247dd
applying fix for:
...
0000093: Patch for dpkg - can't handle scripts
Attached patch is needed to fix dpkg's support for preinst,
postinst etc script files.
2005-07-22 13:17:41 +00:00
7b86134032
remove duplicate check against chaddr.
2005-07-21 20:23:56 +00:00