Re: CONFIG_FEATURE_FLOAT_SLEEP

2008-07-16 Thread Loïc Grenié
2008/7/16 Denys Vlasenko [EMAIL PROTECTED]: Applied. But I changed these options to boolean. It's easier to do randomconfig tests this way. Also, one option less to record in .config Fine with me. Loïc ___ busybox mailing list

Re: LIBBB: config_*()

2008-07-16 Thread Bernhard Fischer
On Tue, Jul 15, 2008 at 11:05:53PM +0200, Denys Vlasenko wrote: Making testsuite clever enough to correctly exclude tests depending on .config requires some serious work. No, it shouldn't. I've added optional quite some time ago (see e.g. pidof.tests) and i really hope that it still does what

Re: SENDMAIL: CC

2008-07-16 Thread Ralf Friedl
[EMAIL PROTECTED] wrote: My! Seems I discovered the source of your do CC to the list messages. BB sendmail, when used with -t option, just swallows Cc: headers. For completeness you should also add support for BCC. Regards Ralf Friedl ___ busybox

include ../include/autoconf.h and LINUXINCLUDE?

2008-07-16 Thread Robert P. J. Day
(i've been away from BB for quite some time and am just getting back to it, so forgive what will undoubtedly be some dumb questions for a while.) i'm curious about the need for the hack(?) as is found in, for example, applets/usage.c: ... /* Just #include autoconf.h doesn't work for builds

SELINIX?

2008-07-16 Thread Robert P. J. Day
this can't be deliberate, can it? $ grep -r SELINIX * procps/ps.c:#define SELINIX_O_PREFIX label, procps/ps.c:#define DEFAULT_O_STR(SELINIX_O_PREFIX ... etc etc ... rday p.s. i once had commit access to the busybox repo. if the powers that be feel safe about it, i'm willing to start

SENDMAIL: Bcc

2008-07-16 Thread dronnikov
Headers (Cc,Bcc) patch for sendmail. Denys, please consider applying. TIA, -- Vladimir sendmail.patch Description: Binary data ___ busybox mailing list busybox@busybox.net http://busybox.net/cgi-bin/mailman/listinfo/busybox

weird code snippet in cpio.c

2008-07-16 Thread Robert P. J. Day
from archival/cpio.c: ... #if ENABLE_GETOPT_LONG ENABLE_DESKTOP applet_long_options = extract\0 No_argument i list\0 No_argument t #if ENABLE_FEATURE_CPIO_O create\0 No_argument o format\0 Required_argument H

Re: include ../include/autoconf.h and LINUXINCLUDE?

2008-07-16 Thread Denys Vlasenko
On Wednesday 16 July 2008 18:21, Robert P. J. Day wrote: (i've been away from BB for quite some time and am just getting back to it, so forgive what will undoubtedly be some dumb questions for a while.) i'm curious about the need for the hack(?) as is found in, for example,

Re: SELINIX?

2008-07-16 Thread Denys Vlasenko
On Wednesday 16 July 2008 18:36, Robert P. J. Day wrote: this can't be deliberate, can it? $ grep -r SELINIX * procps/ps.c:#define SELINIX_O_PREFIX label, procps/ps.c:#define DEFAULT_O_STR(SELINIX_O_PREFIX ... etc etc ... rday Is anything wrong with it? -- vda

Re: weird code snippet in cpio.c

2008-07-16 Thread Denys Vlasenko
On Wednesday 16 July 2008 20:37, Robert P. J. Day wrote: from archival/cpio.c: ... #if ENABLE_GETOPT_LONG ENABLE_DESKTOP applet_long_options = extract\0 No_argument i list\0 No_argument t #if ENABLE_FEATURE_CPIO_O create\0

[PATCH] bugfix: install -d behave like GNU install (-161 bytes)

2008-07-16 Thread Natanael Copa
Hi, busybox install -d will create all directories with the owner and mode specified with -o and -m. That is not what GNU coreutils install does. It only set the permissions on the last element in path. The attatched patch fixes this and save some bytes on the way. with my gcc-3.4.6, i386,

Re: SELINIX?

2008-07-16 Thread Robert P. J. Day
On Wed, 16 Jul 2008, Denys Vlasenko wrote: On Wednesday 16 July 2008 18:36, Robert P. J. Day wrote: this can't be deliberate, can it? $ grep -r SELINIX * procps/ps.c:#define SELINIX_O_PREFIX label, procps/ps.c:#define DEFAULT_O_STR(SELINIX_O_PREFIX ... etc etc ... rday Is

Re: SELINIX?

2008-07-16 Thread Peter Korsgaard
Denys == Denys Vlasenko [EMAIL PROTECTED] writes: Denys On Wednesday 16 July 2008 18:36, Robert P. J. Day wrote: this can't be deliberate, can it? $ grep -r SELINIX * procps/ps.c:#define SELINIX_O_PREFIX label, procps/ps.c:#define DEFAULT_O_STR(SELINIX_O_PREFIX ... etc etc ...

Re: weird code snippet in cpio.c

2008-07-16 Thread Robert P. J. Day
On Wed, 16 Jul 2008, Denys Vlasenko wrote: On Wednesday 16 July 2008 20:37, Robert P. J. Day wrote: from archival/cpio.c: ... #if ENABLE_GETOPT_LONG ENABLE_DESKTOP applet_long_options = extract\0 No_argument i list\0 No_argument t

Re: SELINIX?

2008-07-16 Thread Robert P. J. Day
On Wed, 16 Jul 2008, Peter Korsgaard wrote: Denys == Denys Vlasenko [EMAIL PROTECTED] writes: Denys On Wednesday 16 July 2008 18:36, Robert P. J. Day wrote: this can't be deliberate, can it? $ grep -r SELINIX * procps/ps.c:#define SELINIX_O_PREFIX label, procps/ps.c:#define

Re: SELINIX?

2008-07-16 Thread Denys Vlasenko
On Wednesday 16 July 2008 22:48, Robert P. J. Day wrote: On Wed, 16 Jul 2008, Denys Vlasenko wrote: On Wednesday 16 July 2008 18:36, Robert P. J. Day wrote: this can't be deliberate, can it? $ grep -r SELINIX * procps/ps.c:#define SELINIX_O_PREFIX label,

Re: [PATCH] bugfix: install -d behave like GNU install (-161 bytes)

2008-07-16 Thread Denys Vlasenko
On Thursday 17 July 2008 06:48, Natanael Copa wrote: Hi, busybox install -d will create all directories with the owner and mode specified with -o and -m. That is not what GNU coreutils install does. It only set the permissions on the last element in path. indeed. The attatched patch fixes

Re: weird code snippet in cpio.c

2008-07-16 Thread Denys Vlasenko
On Wednesday 16 July 2008 22:58, Robert P. J. Day wrote: On Wed, 16 Jul 2008, Denys Vlasenko wrote: On Wednesday 16 July 2008 20:37, Robert P. J. Day wrote: from archival/cpio.c: ... #if ENABLE_GETOPT_LONG ENABLE_DESKTOP applet_long_options = extract\0

[PATCH] use if/endif construct to fix tar config display

2008-07-16 Thread Robert P. J. Day
Remove all of the depends on TAR directives and replace them with a single surrounding if/endif. Not only does this shorten the Config.in file, but it fixes the indentation issue. Signed-off-by: Robert P. J. Day [EMAIL PROTECTED] --- the if/endif directives can be used in a number of places

Re: weird code snippet in cpio.c

2008-07-16 Thread Robert P. J. Day
On Wed, 16 Jul 2008, Denys Vlasenko wrote: On Wednesday 16 July 2008 22:58, Robert P. J. Day wrote: On Wed, 16 Jul 2008, Denys Vlasenko wrote: On Wednesday 16 July 2008 20:37, Robert P. J. Day wrote: from archival/cpio.c: ... #if ENABLE_GETOPT_LONG ENABLE_DESKTOP

Re: SENDMAIL: Bcc

2008-07-16 Thread Denys Vlasenko
On Wednesday 16 July 2008 19:36, [EMAIL PROTECTED] wrote: Headers (Cc,Bcc) patch for sendmail. Denys, please consider applying. Oops... it seems that svn has changed, rejects... can you rediff? -- vda ___ busybox mailing list busybox@busybox.net

Re: LIBBB: config_*()

2008-07-16 Thread Denys Vlasenko
On Wednesday 16 July 2008 09:53, Bernhard Fischer wrote: On Tue, Jul 15, 2008 at 11:05:53PM +0200, Denys Vlasenko wrote: Making testsuite clever enough to correctly exclude tests depending on .config requires some serious work. No, it shouldn't. I've added optional quite some time ago (see

removing erroneous comments from Config.in files

2008-07-16 Thread Robert P. J. Day
a number of Config.in files start with: # # For a description of the syntax of this configuration file, # see scripts/kbuild/config-language.txt. # there is, of course, no such file in the BB source tree -- that's the file as it's referenced in the kernel source tree. so it would make

some unnecessary preprocessor tests in libbb/

2008-07-16 Thread Robert P. J. Day
some redundant or misleading preprocessor tests under libbb/. first, given this range restriction in Config.in: config MD5_SIZE_VS_SPEED int MD5: Trade Bytes for Speed default 2 range 0 3 duplicating that range test in md5.c is redundant: #if CONFIG_MD5_SIZE_VS_SPEED

Re: some unnecessary preprocessor tests in libbb/

2008-07-16 Thread Poly-poly man
On Wednesday 16 July 2008 07:08:29 pm Robert P. J. Day wrote: some redundant or misleading preprocessor tests under libbb/. first, given this range restriction in Config.in: config MD5_SIZE_VS_SPEED int MD5: Trade Bytes for Speed default 2 range 0 3 duplicating

Re: some unnecessary preprocessor tests in libbb/

2008-07-16 Thread Robert P. J. Day
On Wed, 16 Jul 2008, Poly-poly man wrote: On Wednesday 16 July 2008 07:08:29 pm Robert P. J. Day wrote: some redundant or misleading preprocessor tests under libbb/. first, given this range restriction in Config.in: config MD5_SIZE_VS_SPEED int MD5: Trade Bytes for Speed

SENDMAIL: Bcc

2008-07-16 Thread dronnikov
Headers (Cc,Bcc) patch for sendmail rediffed. Please consider applying. TIA, -- Vladimir sendmail.patch Description: Binary data ___ busybox mailing list busybox@busybox.net http://busybox.net/cgi-bin/mailman/listinfo/busybox

my mail

2008-07-16 Thread alex pamies
[EMAIL PROTECTED] _ News, entertainment and everything you care about at Live.com. Get it now! http://www.live.com/getstarted.aspx___ busybox mailing list busybox@busybox.net

help me plz!!

2008-07-16 Thread alex pamies
From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: help me plz!!Date: Thu, 17 Jul 2008 02:25:19 + hi, plz, when i turn on my pc and the ubuntu is loading, after that i got this message:BusyBox v1.1.3 (Debian 1:1.1.3-5ubuntu12) Built-in shell (ash)Enter 'help' for a list of built-in commands. i

Re: SENDMAIL: Bcc

2008-07-16 Thread Vladimir Dronnikov
Sent a patch. -- Vladimir ___ busybox mailing list busybox@busybox.net http://busybox.net/cgi-bin/mailman/listinfo/busybox