Question

2013-12-04 Thread snoweyes
hello: I would like to ask a question ! when you use busybox command , eg udhcpc you can not get the right pid number in the udhcpc_main function. when you use getpid() to get a value 495 , but the real num is 499 maybe. but the write_pidfile() function in udhcpc_main can use getpid() to write

Re: Question

2013-12-05 Thread Harald Becker
Hi SnowEyes ! >I would like to ask a question ! No trouble, to ask, but I do not fully understand your question. This is probably a Unix related question not a Busybox specific one. I like to help you with your question, but need some more information, wan't you want to do.

Re: Question

2013-12-05 Thread Bob Dunlop
On Thu, Dec 05 at 01:10, snoweyes wrote: > when you use busybox command , eg udhcpc > you can not get the right pid number in the udhcpc_main function. > when you use getpid() to get a value 495 , but the real num is 499 maybe. I'm not sure I see the problem. After startup udhcpc_main() calls wr

syslogd question

2007-06-21 Thread Dennis Smith
Hello, I am using busybox ver. 1.00 I am using syslogd with some logging code I wrote for my project. Currently I can configure the logging level... to say 4, then all log messages at levels higher then that, 5, 6, and 7 do not show up in my /var/log/messages file. What I want to be able to do

httpd question

2007-08-05 Thread Grandtec Jako
Hi, I use busybox v1.00 version at PC board. I use "ifconfig eth0 192.168.168.214 up" , and "httpd -p 80 -h /cgi-bin -c /etc/httpd.conf -r "Web Server Authentication" &" commands. Then I open webpage at http://192.168.168.214. Now, I have two questions. Q1. If I open webpage at first http://192.

cttyhack question

2008-07-06 Thread Poly-p man
I'm working on (almost done with) an init rewrite for my distro... I started getting the "no controlling tty" message as soon as I "fixed" my terminal opening code (close all fd's, open() the correct one, dup() twice)... The help message for cttyhack says that I can't open /dev/console... I didn'

env question

2010-12-08 Thread Christopher Barry
Hi, I've tried doing: #!/usr/bin/env - /bin/bash and #!/usr/bin/env -i /bin/bash at the top of a script to clear out it's environment prior to running it, but it throws an error. Is there a better way to accomplish what I'm trying to do? Thanks -C ___

udhcpc question

2010-12-20 Thread Christopher Barry
All, Anyone know the correct incantation to release an ip on an interface with udhcpc? I can't seem to make it work for some reason. Running BB 1.16.1 Thanks, -C ___ busybox mailing list busybox@busybox.net http://lists.busybox.net/mailman/listinfo/bu

udhcpd question

2009-08-23 Thread Outback Dingo
is it possible to list dhcp lease info for multiple interfaces / different networks while on runnning 1 udhcpd process ??? or do i need multliple, as in one for each interface ? thanks in advance ___ busybox mailing list busybox@busybox.net http://lists.b

environment question

2009-10-31 Thread Christopher Barry
Hi everyone, Probably an over-asked question. Q: I start udhcpc from scriptA. udhcpc runs scriptB on a bound event. Will scriptB see the environment of scriptA, i.e. can I access functions defined in scriptA from scriptB, or would I need to re-source these into scriptB? Thanks, -C

udhcpc question

2010-01-20 Thread Christopher Barry
Hi all, I'm running a script in the initramfs that spawns a udhcpc instance for every nic device found in a subshell in the background. I noticed that a syslogd and a klogd instance seemed to be being started for every udhcpc instance. I thought it was because I was specifying --syslog on the udhc

Busybox question

2016-12-06 Thread רותם קציר
Hi there, I am currently making A project which in I am setting up an ssh connection from putty to my router. I read that busy box is only A set of programs. My question is how can I make the busy box ,that openes when I create the connection, behave to let me comtrol my router and use simple

CONFIG_SYSROOT question

2020-05-10 Thread daggs
Greetings, I'm building busybox using a cross compiler, I pass the prefix in the CONFIG_CROSS_COMPILER_PREFIX, so do I need to set CONFIG_SYSROOT? Thanks, Dagg. ___ busybox mailing list busybox@busybox.net http://lists.busybox.net/mailman/listinfo/bus

Busybox --> telnetd question

2007-04-30 Thread Praba Rajah
Hello, I am new to Linux and busybox world. I have a target-board with arm processer with linux 2.6.17-rc4 and busybox-1.5.0. I want to transfer files to/from my pc to the target-board. I can able to transfer files between target-board and PC from target-board using busybox "tf

Busybox --> telnetd question

2007-05-01 Thread Praba Rajah
Thank you very much Franklin!. Please see my comments below. >> Hello, >> >> I am new to Linux and busybox world. >> >> I have a target-board with arm processer with Linux 2.6.17-rc4 and >> busybox-1.5.0. I want to transfer files to/from my pc to the target-board. >> >> I can able to tr

Arm compiler question

2007-06-01 Thread Miller, Jeff (eng)
To use 1.5.1 I need to upgrade from my 2.95.3 arm-linux-* toolchain but when I use the 4.0.1 and 4.0.2 arm-elf-* distributions I get compile errors because headers such as byteswap.h are missing. Can anybody clue me in as to whether I need to be looking for an arm-linux-* distribution or an add on

Re: syslogd question

2007-06-21 Thread Denis Vlasenko
On Thursday 21 June 2007 21:07, Dennis Smith wrote: > Hello, > > I am using busybox ver. 1.00 > > I am using syslogd with some logging code I wrote for my project. > > Currently I can configure the logging level... to say 4, then all log > messages at levels > higher then that, 5, 6, and 7 do n

Re: httpd question

2007-08-06 Thread Denis Vlasenko
On Monday 06 August 2007 02:05, Grandtec Jako wrote: > Hi, > > I use busybox v1.00 version at PC board. > I use "ifconfig eth0 192.168.168.214 up" , and "httpd -p 80 -h /cgi-bin -c > /etc/httpd.conf -r "Web Server Authentication" &" commands. > Then I open webpage at http://192.168.168.214. > Now

syslogd facility question

2008-05-20 Thread Kevin Holland
Does anyone have a version of syslogd where you can pick the log file location depending on the facility, in busybox? Thanks Kevin ___ busybox mailing list busybox@busybox.net http://busybox.net/cgi-bin/mailman/listinfo/busybox

Re: env question

2010-12-08 Thread Loïc Grenié
2010/12/7 Christopher Barry : > Hi, > > I've tried doing: > #!/usr/bin/env - /bin/bash > and > #!/usr/bin/env -i /bin/bash > > at the top of a script to clear out it's environment prior to running > it, but it throws an error. What error ? Loïc

Re: env question

2010-12-08 Thread Yann E. MORIN
Christopher, Loic, All, On Wednesday 08 December 2010 21:41:14 Loïc Grenié wrote: > 2010/12/7 Christopher Barry : > > I've tried doing: > > #!/usr/bin/env - /bin/bash > > and > > #!/usr/bin/env -i /bin/bash > > > > at the top of a script to clear out it's environment prior to running > > it, but i

Re: udhcpc question

2010-12-21 Thread Denys Vlasenko
On Monday 20 December 2010 20:07, Christopher Barry wrote: > All, > > Anyone know the correct incantation to release an ip on an interface > with udhcpc? I can't seem to make it work for some reason. > Running BB 1.16.1 What do you mean by "release IP"? $ udhcpc --help BusyBox v1.18.0 (2010-11-2

Re: udhcpc question

2010-12-22 Thread Cristian Ionescu-Idbohrn
On Wed, 22 Dec 2010, Denys Vlasenko wrote: > On Monday 20 December 2010 20:07, Christopher Barry wrote: > > All, > > > > Anyone know the correct incantation to release an ip on an interface > > with udhcpc? I can't seem to make it work for some reason. > > Running BB 1.16.1 > > What do you mean by

Re: udhcpc question

2010-12-22 Thread David Collier
kill -SIGUSR2 seems to work for me. D In article <1292872065.3231.169.ca...@monolith.infinux.org>, christopher.ba...@rackwareinc.com (Christopher Barry) wrote: > *From:* Christopher Barry > *To:* BusyBox > *Date:* Mon, 20 Dec 2010 14:07:45 -0500 > > All, > > Anyone know the correct incan

install behavior question

2011-09-06 Thread Christopher Barry
The path listed in the "make install behavior" defaults to ./_install. Does --install symlink creation use this as well, or does it always use '/'? Thanks, -C ___ busybox mailing list busybox@busybox.net http://lists.busybox.net/mailman/listinfo/busybo

Initial Path - Question...

2008-11-02 Thread Michael D. Setzer II
I have the g4l project that uses busybox plus a number of other programs. A number of the additional programs I was building and installing manually into directories in the path. As it turns out, some of the programs make install puts the files in the /usr/local/bin or /usr/local/sbin. I then

Question about xcip

2009-01-08 Thread zhurungang
Hi all: I have create a rootfs for my embeded board, and do zcip command on it. But it tell me "poll error", is there any device I need to create miss? And how to fix it? Can anybody kindly help me? Thanks a lot!

Re: udhcpd question

2009-08-23 Thread Denys Vlasenko
On Monday 24 August 2009 04:55, Outback Dingo wrote: > is it possible to list dhcp lease info for multiple interfaces / different > networks while on runnning 1 udhcpd process ??? > or do i need multliple, as in one for each interface ? thanks in advance Look in examples/udhcp/udhcpd.conf. udhcpd

Re: environment question

2009-10-31 Thread Mike Frysinger
On Saturday 31 October 2009 11:00:02 Christopher Barry wrote: > Probably an over-asked question. > Q: I start udhcpc from scriptA. udhcpc runs scriptB on a bound event. > Will scriptB see the environment of scriptA, i.e. can I access functions > defined in scriptA from scriptB, or wou

Re: environment question

2009-10-31 Thread Allan Clark
On Sat, Oct 31, 2009 at 19:55, Mike Frysinger wrote: > On Saturday 31 October 2009 11:00:02 Christopher Barry wrote: > > Probably an over-asked question. > > Q: I start udhcpc from scriptA. udhcpc runs scriptB on a bound event. > > Will scriptB see the environment of scrip

Re: environment question

2009-10-31 Thread Mike Frysinger
On Saturday 31 October 2009 16:26:44 Allan Clark wrote: > On Sat, Oct 31, 2009 at 19:55, Mike Frysinger wrote: > > On Saturday 31 October 2009 11:00:02 Christopher Barry wrote: > > > Probably an over-asked question. > > > Q: I start udhcpc from scriptA. udhcpc ru

Re: environment question

2009-10-31 Thread Denys Vlasenko
On Saturday 31 October 2009 16:00, Christopher Barry wrote: > Hi everyone, > > > Probably an over-asked question. > Q: I start udhcpc from scriptA. udhcpc runs scriptB on a bound event. > Will scriptB see the environment of scriptA, Yes... > i.e. can I access functions

error code question

2009-11-13 Thread Christopher Barry
Q: does BB fsck use these error codes? (taken from fsck 1.41.4 (27-Jan-2009)) man 8 fsck The exit code returned by fsck is the sum of the following conditions: 0- No errors 1- File system errors corrected 2- System should be rebooted 4

ash PS1 question.

2009-11-18 Thread Rob Landley
If I export PS1 before I run ash, it has no effect. Apparently ash unconditionally overwrites any existing PS1 value. Is there a way around this? Rob -- Latency is more important than throughput. It's that simple. - Linus Torvalds ___ busybox mailing

Re: udhcpc question

2010-01-20 Thread Denys Vlasenko
On Wednesday 20 January 2010 20:49, Christopher Barry wrote: > Hi all, > > I'm running a script in the initramfs that spawns a udhcpc instance for > every nic device found in a subshell in the background. I noticed that a > syslogd and a klogd instance seemed to be being started for every udhcpc >

Re: udhcpc question

2010-01-21 Thread Christopher Barry
On Thu, 2010-01-21 at 02:44 +0100, Denys Vlasenko wrote: > On Wednesday 20 January 2010 20:49, Christopher Barry wrote: > > Hi all, > > > > I'm running a script in the initramfs that spawns a udhcpc instance for > > every nic device found in a subshell in the background. I noticed that a > > syslo

Question about nslookup

2010-03-19 Thread Didier Kryn
Hello. I am working in the field of Particle Physics and setting up the init sequence of a group of diskless single board computers (Emerson Network Power MVME3100). I have made an initramfs with a statically linked busybox and a collection of scripts. I want to automate the init pr

quick config question

2010-04-21 Thread Christopher Barry
The Init Utilities-->Init config option: is that a built-in, or will that enable the init script script in the initramfs to be run? I can't remember how I configured my last BB version. Thanks, -C ___ busybox mailing list busybox@busybox.net http://l

Question on $@ vs $@$@

2024-08-13 Thread Steffen Nurpmeso
Hello. I include bug-bash even though i think bash is correct, but there lots of people of expertise are listening, so, thus. Sorry for cross-posting, nonetheless. Given this snippet (twox() without argument it is) one() { echo "$# 1<$1>"; } two() { one "$@"; } twox() { one "$@$@"; } two

BusyBox post compiled question

2015-12-04 Thread Tim B
Hiya, Is there any way to add a command to BusyBox after it has been compiled ? I would like to add RPM or some another package manager to an existing build of BusyBox and have had no luck in doing so. I have looked all over the website and internet to no avail. Any help would be greatly apprec

busy box initialization question

2007-04-18 Thread romank
Hello, I am trying (the key word) to use busybox with mdev on avr32 platform. My kernel loads right and fails to load busybox. The kernel says "Kernel panic-not syncing:No init found" I am using 2.6.20 linux kernel and busybox 1.2.1 and 1.5.1. I am using a image from atmel with busybox 1.2.1 ins

Re: Busybox --> telnetd question

2007-04-30 Thread Franklin
Praba Rajah's messages: > Hello, > > I am new to Linux and busybox world. > > I have a target-board with arm processer with linux 2.6.17-rc4 and > busybox-1.5.0. I want to transfer files to/from my pc to the target-board. > > I can able to transfer files between target-board and PC from > tar

Re: Busybox --> telnetd question

2007-05-01 Thread Denis Vlasenko
On Wednesday 02 May 2007 01:48, Praba Rajah wrote: > Is there any lrzsz package for arm7 or 9 processors? I can only see armv41. You can also use http for file transfer. busybox includes both wget (for retrieving files) and httpd (for providing files). > >> My telnetd is running in my target

RE: Arm compiler question

2007-06-01 Thread Martinb_ARM_NOMMU_KISSDVD
: busybox@busybox.net Onderwerp: Arm compiler question To use 1.5.1 I need to upgrade from my 2.95.3 arm-linux-* toolchain but when I use the 4.0.1 and 4.0.2 arm-elf-* distributions I get compile errors because headers such as byteswap.h are missing. Can anybody clue me in as to whether I need to

Re: Arm compiler question

2007-06-02 Thread Denis Vlasenko
t; Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Miller, Jeff (eng) > Verzonden: vrijdag 1 juni 2007 14:38 > Aan: busybox@busybox.net > Onderwerp: Arm compiler question > > > > To use 1.5.1 I need to upgrade from my 2.95.3 arm-linux-* toolchain but when > I use the 4.

powerpc: question concerning insmod

2008-07-03 Thread beck0778
Hello, I am attempting to build busybox-1.11.0 for powerpc. I have unsuccessfully tried: 1) custom-built cross compiling toolchain built with crosstool (gcc 4.1.0, glibc 2.3.6) 2) vendor-provided cross compiling toolchain (gcc 3.4.3, glibc 2.3.3) 3) vendor-provided native powerpc toolchain (g

A question of philosophy

2011-02-03 Thread David Collier
Denys, your suggestion above for fixing tar to work with stdin is wonderful - and I'm sure it will work. But it illustrates the different world-views that you and I have. In an illuminating way. You think/speak as if busybox is infinitely mutable, and an issue can be changed by improving it. I t

patch for fuser -- question

2011-05-22 Thread Maksym Kryzhanovskyy
Hi Denis, can I ask? A few weeks ago I sent a patch to the list for fuser applet, but I have not received a reply. The patch is forbidden, queued or st. else? Please let me know. Thanks. Max ___ busybox mailing list busybox@busybox.net http://lists.bu

Re: install behavior question

2011-09-09 Thread Denys Vlasenko
On Tuesday 06 September 2011 20:23, Christopher Barry wrote: > The path listed in the "make install behavior" defaults to ./_install. > Does --install symlink creation use this as well, or does it always use > '/'? if (ENABLE_FEATURE_INSTALLER && strcmp(argv[1], "--install") == 0) {

Re: install behavior question

2011-09-11 Thread Christopher Barry
On Sat, 2011-09-10 at 04:53 +0200, Denys Vlasenko wrote: > On Tuesday 06 September 2011 20:23, Christopher Barry wrote: > > The path listed in the "make install behavior" defaults to ./_install. > > Does --install symlink creation use this as well, or does it always use > > '/'? > > > if

yet another init question

2008-10-30 Thread Steve Iribarne (GMail)
Hello List. I have upgraded my busybox from 1.2.1 to 1.11.3. Yes I know it's about time. :) I had u-boot with 1.2.1 of busybox working just peachy. Now I get the dreaded... <... snip > cfi_cmdset_0002: Disabling erase-suspend-program due to code brokenness. cf: Octeon bootbus compact fla

Re: Question about mdev

2008-10-31 Thread Bernhard Reutner-Fischer
On Thu, Oct 30, 2008 at 06:28:38PM -0400, hartleys wrote: >Hello all! redirected to more appropriate list.. > >I have a question about mdev. I hope someone can offer an idea. > >I have the mmc_spi.c driver build into my linux kernel. When I first >boot, and a mmc card is install

Re: Question about mdev

2008-10-31 Thread Denys Vlasenko
On Friday 31 October 2008 10:04, Bernhard Reutner-Fischer wrote: > On Thu, Oct 30, 2008 at 06:28:38PM -0400, hartleys wrote: > >Hello all! > > redirected to more appropriate list.. > > > >I have a question about mdev. I hope someone can offer an idea. > > > >

Re: Initial Path - Question...

2008-11-03 Thread Steve Iribarne (GMail)
I'm not really sure I understand 100% of the issue here. On Sun, Nov 2, 2008 at 10:26 PM, Michael D. Setzer II <[EMAIL PROTECTED]> wrote: > I have the g4l project that uses busybox plus a number of other programs. > A number of the additional programs I was building and installing manually > int

Re: Initial Path - Question...

2008-11-03 Thread Rob Landley
On Monday 03 November 2008 00:26:30 Michael D. Setzer II wrote: > I have the g4l project that uses busybox plus a number of other programs. > A number of the additional programs I was building and installing manually > into directories in the path. As it turns out, some of the programs make > insta

Re: Initial Path - Question...

2008-11-03 Thread Michael D. Setzer II
On 3 Nov 2008 at 8:31, Steve Iribarne (GMail) wrote: Date sent: Mon, 3 Nov 2008 08:31:39 -0800 From: "Steve Iribarne (GMail)" <[EMAIL PROTECTED]> To: "Michael D. Setzer II" <[EMAIL PROTECTED]> Subject:

Re: Initial Path - Question...

2008-11-03 Thread Michael D. Setzer II
On 3 Nov 2008 at 15:34, Rob Landley wrote: From: Rob Landley <[EMAIL PROTECTED]> To: busybox@busybox.net Subject:Re: Initial Path - Question... Date sent: Mon, 3 Nov 2008 15:34:38 -0500 Copies to: "Michae

Re: Initial Path - Question...

2008-11-03 Thread Denys Vlasenko
On Monday 03 November 2008 22:33, Michael D. Setzer II wrote: > > > I added an export to command to the .bash_profile to fix the issue, but > > > was > > > wondering if there is a better way, or if this is how things are suppose > > > to > > > be. Not sure where the PATH value is set. > > > > We

Re: Initial Path - Question...

2008-11-04 Thread Bernhard Reutner-Fischer
On Tue, Nov 04, 2008 at 11:44:27PM +1000, Michael D. Setzer II wrote: >I've just added to the .bash_profile >export PATH=/usr/local/sbin:/sbin:/usr/sbin:/usr/local/bin:/bin:/usr/bin > >That seems to work... Let me point out that you would normally have a stanza like the one below in your /etc/pro

Re: Initial Path - Question...

2008-11-04 Thread Michael D. Setzer II
walter harms <[EMAIL PROTECTED]>, busybox@busybox.net Subject: Re: Initial Path - Question... > On Tue, Nov 04, 2008 at 11:44:27PM +1000, Michael D. Setzer II wrote: > > >I've just added to the .bash_profile > >export PATH=/usr/local/sbin:/sbin:/usr/sbin:/us

Re: Initial Path - Question...

2008-11-04 Thread walter harms
Denys Vlasenko schrieb: > On Monday 03 November 2008 22:33, Michael D. Setzer II wrote: I added an export to command to the .bash_profile to fix the issue, but was wondering if there is a better way, or if this is how things are suppose to be. Not sure where the PATH value is set.

Re: Initial Path - Question...

2008-11-04 Thread Michael D. Setzer II
ubject:Re: Initial Path - Question... > > > Denys Vlasenko schrieb: > > On Monday 03 November 2008 22:33, Michael D. Setzer II wrote: > >>>> I added an export to command to the .bash_profile to fix the issue, but > >>>> was > >>>

Stupid question I know...

2009-03-02 Thread Steve Iribarne (GMail)
It seems to me (google searching and the like) that history should work in busybox. For some reason I can't get it to work. I just get the normal... ~ # history -sh: history: not found Where in the heck do I set this in the configuration? I looked and looked and can't seem to find it. What a

another request-options question

2009-10-19 Thread Christopher Barry
Hi all, Thanks for BusyBox. Very nice piece of work. This question is specific to udhcpc, hopefully this is the right place to pose it. I'm defining an option in ISC dhcpd to send a non-standard server IP to clients. I'm planning on using -O to have the client ask for it. Will t

Re: error code question

2009-11-14 Thread Denys Vlasenko
On Saturday 14 November 2009 06:27, Christopher Barry wrote: > Q: does BB fsck use these error codes? (taken from fsck 1.41.4 (27-Jan-2009)) > man 8 fsck > > The exit code returned by fsck is the sum of the following conditions: > 0- No errors > 1- File system error

Re: ash PS1 question.

2009-11-23 Thread Denys Vlasenko
On Thursday 19 November 2009 03:16, Rob Landley wrote: > If I export PS1 before I run ash, it has no effect. Apparently ash > unconditionally overwrites any existing PS1 value. > > Is there a way around this? works for me. I added this debug print: initvar(); <--- this one set

Re: ash PS1 question.

2009-11-23 Thread Rob Landley
On Monday 23 November 2009 19:48:47 Denys Vlasenko wrote: > On Thursday 19 November 2009 03:16, Rob Landley wrote: > > If I export PS1 before I run ash, it has no effect. Apparently ash > > unconditionally overwrites any existing PS1 value. > > > > Is there a way around this? > > works for me. I a

Question: Static variable initialization

2010-02-22 Thread Harald Becker
Hi! Just a question about initialization of static variables in busybox: Is it proved that those variables get initialized to zero even without any initializer? In the past I had several troubles with programs on different systems relying on this assumption. -- Harald

some question about mdev

2010-03-10 Thread loody
Dear all: I register uvcvideo.ko in kernel and mdev make the device node for me. But I find the node mdev make is "b 81 0" instead of "c 81 0", video node is char device not block device. Would someone please give me a hint where the mdev decides which type of node it will make? appreciate your hel

Re: Question about nslookup

2010-03-19 Thread Denys Vlasenko
On Fri, Mar 19, 2010 at 2:40 PM, Didier Kryn wrote: >   I am working in the field of Particle Physics and setting up the init > sequence of a group of diskless single board computers (Emerson Network > Power MVME3100). I have made an initramfs with a statically linked busybox > and a collection of

Re: Question about nslookup

2010-03-19 Thread Didier Kryn
Denys Vlasenko a écrit : On Fri, Mar 19, 2010 at 2:40 PM, Didier Kryn wrote: I am working in the field of Particle Physics and setting up the init sequence of a group of diskless single board computers (Emerson Network Power MVME3100). I have made an initramfs with a statically linked busy

Re: Question about nslookup

2010-03-19 Thread Denys Vlasenko
On Fri, Mar 19, 2010 at 3:53 PM, Didier Kryn wrote: >> It is likely /etc/resolv.conf >> > >   In principle, there is always a DNS available through a broadcast > request. (1) Why do you think so? (2) Documentation says that without /etc/resolv.conf, libc assumes that DNS server is on 127.0.0

Re: Question about nslookup

2010-03-19 Thread Didier Kryn
Denys Vlasenko a écrit : On Fri, Mar 19, 2010 at 3:53 PM, Didier Kryn wrote: It is likely /etc/resolv.conf In principle, there is always a DNS available through a broadcast request. (1) Why do you think so? (2) Documentation says that without /etc/resolv.conf, libc assumes

Re: Question about nslookup

2010-03-19 Thread Denys Vlasenko
On Fri, Mar 19, 2010 at 5:26 PM, Didier Kryn wrote: > fact is that even with the correct resolv.conf (the same > as outside the chroot) it does not work. > Of course the next step will be to > obtain the resolv.conf from the dhcp answer. strace, and/or tcpdump log will show what's going on. > Ma

Re: Question about nslookup

2010-03-19 Thread Denys Vlasenko
On Fri, Mar 19, 2010 at 9:13 PM, Denys Vlasenko wrote: > On Fri, Mar 19, 2010 at 5:26 PM, Didier Kryn wrote: >> fact is that even with the correct resolv.conf (the same >> as outside the chroot) it does not work. >> Of course the next step will be to >> obtain the resolv.conf from the dhcp answer

Re: quick config question

2010-04-21 Thread Denys Vlasenko
On Wed, Apr 21, 2010 at 4:42 PM, Christopher Barry wrote: > > The Init Utilities-->Init config option: is that a built-in, or will > that enable the init script script in the initramfs to be run? It enables init applet. -- vda ___ busybox mailing list

Re: quick config question

2010-04-21 Thread Christopher Barry
On Thu, 2010-04-22 at 00:03 -0400, Denys Vlasenko wrote: > On Wed, Apr 21, 2010 at 4:42 PM, Christopher Barry > wrote: > > > > The Init Utilities-->Init config option: is that a built-in, or will > > that enable the init script script in the initramfs to be run? > > It enables init applet. so to

Re: quick config question

2010-04-26 Thread Denys Vlasenko
init script will be run instead. Is that correct? I am not sure. You omitted a lot of context in your question. What /init script? When do you want it to be run? Why it does not run now? etc... -- vda ___ busybox mailing list busybox@busybox.net http://lists.busybox.net/mailman/listinfo/busybox

Re: quick config question

2010-04-26 Thread Rob Landley
an either: > > > > 1. rebuild BB with that disabled, or > > 2. delete the /sbin/init symlink > > > > and my /init script will be run instead. Is that correct? > > I am not sure. You omitted a lot of context in your question. > What /init script? When do

Re: sorry my question

2010-05-02 Thread Denys Vlasenko
On Wednesday 14 April 2010 11:10, edison_c...@novatek.com.tw wrote: > Sorry for my disturbance~ > > I’ve a problem with using Busybox ver. 1.16.1 : > > When I use “ mount -t cifs -o username=x,password=x //host/xxx /mnt/cifs ” > command to mount my SMB server, > > I always get the response : m

some question about mdev

2010-05-22 Thread loody
mount.( from the information in /proc/partitions, it seems some place for data saving.) My question is: can we get any attributes, like file formats or partition information from kernel such that mdev can choose whether it can pass the partition to scripts that described in mdev.conf. appreciate

Question on udhcpc script

2021-02-01 Thread Bhattiprolu RaviKumar
All, We are using busybox to get DHCPv6 address. However, I am bit confused on the part of the script /etc/udhcpc.d/50default: wait_for_ipv6_default_route() { *printf "Waiting for IPv6 default route to appear"* while [ $IF_WAIT_DELAY -gt 0 ]; do *if [ -z "$(ip -6

Question on mount helpers

2023-09-26 Thread Carl Chave
On Alpine linux, busybox is configured with CONFIG_FEATURE_MOUNT_HELPERS=y and a nilfs2 filesystem does successfully mount from fstab with busybox mount, however, the nilfs_cleanerd process is not automatically started. From the nilfs_cleanerd documentation: > This program can be invoked either au

Re: Question on $@ vs $@$@

2024-08-14 Thread Steffen Nurpmeso
Hello. I only respond to this to reduce the noise. Chet Ramey wrote in <1bba673e-5ab9-4263-9d88-124854793...@case.edu>: |On 8/13/24 8:45 PM, Steffen Nurpmeso wrote: |> I include bug-bash even though i think bash is correct, but there |> lots of people of expertise are listening, so, thus. |>

Re: Question on $@ vs $@$@

2024-08-15 Thread Steffen Nurpmeso
Hello. Unfortunately i have to add one thing to this thread.. Steffen Nurpmeso wrote in <20240814200534.Vh3Eu_Md@steffen%sdaoden.eu>: |Chet Ramey wrote in | <1bba673e-5ab9-4263-9d88-124854793...@case.edu>: ||On 8/13/24 8:45 PM, Steffen Nurpmeso wrote: ||> I include bug-bash even though i thi

Re: Question on $@ vs $@$@

2024-08-15 Thread Steffen Nurpmeso
One more, please. (And please excuse this still copies bug-bash.) Steffen Nurpmeso wrote in <20240815184858.r5T_UQnM@steffen%sdaoden.eu>: |Steffen Nurpmeso wrote in | <20240814200534.Vh3Eu_Md@steffen%sdaoden.eu>: ||Chet Ramey wrote in || <1bba673e-5ab9-4263-9d88-124854793...@case.edu>: |||On

Re: Question on $@ vs $@$@

2024-08-26 Thread Steffen Nurpmeso
alex xmb sw ratchev wrote in : |try | |${@@Q} | |and | |${*@Q} | |greets I try to avoid using non-portable shell stuff. I do not think these would be understood by the ash shell variants (and ksh) which had results other than bash. --steffen | |Der Kragenbaer,The moon be

Re: Question about TIMEOUT applet.

2013-07-16 Thread Harald Becker
Hi, here is a first version of a duration helper function. As Bernhard suggested, it always works with float (double) values, but if required we can add a version using only integers and the bare minimum of required suffixes (d, h, m, s). The current version allows for the following suffixes:

Question about some Kconfig dependencies

2013-10-22 Thread Sarah Nadi
Hi, I am a researcher at the University of Waterloo in Canada. We are currently working on reverse engineering variability/feature models from code by extracting configuration constraints through static analyses (e.g., checking for conditional parsing, type, or linker errors). We compare exis

Re: Question about Busybox Testsuite

2013-10-29 Thread Denys Vlasenko
On Tue, Oct 22, 2013 at 8:53 AM, ChenQi wrote: > Hi all, > > Does busybox's testsuite still make sense for a sanity check? Yes. It is used before every major release to prevent regressions. > I just built a busybox and used `make check' to perform a sanity check. > There were several failures. I

Re: Question about Busybox Testsuite

2013-10-29 Thread ChenQi
On 10/29/2013 06:58 PM, Denys Vlasenko wrote: On Tue, Oct 22, 2013 at 8:53 AM, ChenQi wrote: Hi all, Does busybox's testsuite still make sense for a sanity check? Yes. It is used before every major release to prevent regressions. I just built a busybox and used `make check' to perform a san

BusyBox v1.20.2 udhcpc hostname question

2015-03-11 Thread Highland, Glenn
Hello: We're running an older BusyBox version (1.20.2) and we're using udhcpc from our ifup script. Specifically, we're acquiring the host name from /etc/hostname and passing it to udhcpc with the -H option. However, when I capture the DHCP traffic using Wireshark, I can't see the host name b

Re: BusyBox post compiled question

2015-12-04 Thread Isaac Dunham
On Fri, Dec 04, 2015 at 02:56:16PM -0500, Tim B wrote: > Hiya, > > Is there any way to add a command to BusyBox after it has been compiled ? No. You can only add commands to busybox by recompiling. However, it is quite possible to use external commands from busybox. > I would like to add RPM or

Question on halt/poweroff behaviour

2007-09-17 Thread Johannes Paschold
Hi folks, i have a question to busyox' behaviour when calling poweroff, since clean poweroff is very essential for my system. As poweroff calls "halt" to end all processes and then turns off the computer my question is: How much time does my process have to shut down cleanly?

Question about 'busybox_ld.err' and 'busybox_ld.out'?

2007-09-30 Thread 志達
Dear All, *** Sorry! forget to attach the file in the previous mail *** I had tried to learn the busybox and to build a execution image for my test platform (mips system). First, I input the following instructions to build the busybox. make defnoconfig make CROSS_COMPILE=mips-linux- The output

Question about 'busybox_ld.err' and 'busybox_ld.out'?

2007-09-30 Thread 志達
Dear All, I had tried to learn the busybox and to build a execution image for my test platform (mips system). First, I input the following instructions to build the busybox. make defnoconfig make CROSS_COMPILE=mips-linux- The output I got is summarized as below. -rwxr-xr-x 1 snoopy snoopy 7008

Re: Question about insmod/busybox

2007-11-02 Thread Yann E. MORIN
and 2.6 is clean). On Thursday 01 November 2007 20:18:17 Khem Raj wrote: > I have a question for you about busybox/insmod. I am modifying this so > that it can load more than one module in one invocation. > In such a scenario I get a kernel crash after a while when I try to > insmod 50 mo

Re: Question about insmod/busybox

2007-11-02 Thread Denys Vlasenko
nsmod (at least for 2.4) > is too complex for me (plus I don't use 2.4 any more, and 2.6 is clean). > > On Thursday 01 November 2007 20:18:17 Khem Raj wrote: > > I have a question for you about busybox/insmod. I am modifying this so > > that it can load more than one module

ash: command line editing question

2007-12-05 Thread Alexander Griesser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi folks! I don't really know what's the correct english word for it, so let me please rephrase it :) When I do the following on bash, I can either quit with CTRL-C or complete the command by adding the last parantheses: - -- 8<

Question about 'ps' and pipe

2008-02-07 Thread martin.goodrich
Hi, I am using busybox-1.9.0 and have encountered some issues that I would be grateful for someone to cast some light on. The ps command seems to have changed and doesn't seem to support the '-ef' option anymore. I know that at one stage it did because the previous version that my device ran w

  1   2   3   4   >