* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
@ 2008-10-12 10:16 Anders Blomdell
2008-10-13 6:12 ` Hans-Christian Egtvedt
2008-10-13 10:07 ` Peter Korsgaard
0 siblings, 2 replies; 9+ messages in thread
From: Anders Blomdell @ 2008-10-12 10:16 UTC (permalink / raw)
To: buildroot
in target/device/Atmel/atngw100/Makefile.in there is a line
BR2_PACKAGE_BUSYBOX_CONFIG:=$(BOARD_PATH)/busybox-1.9.1.config
unfortunately this makes it impossible to change busybox config
(primarily I want to turn off telnet) to a custom version. What is the
correct way to handle this?
Regards
Anders Blomdell
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
2008-10-12 10:16 [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets Anders Blomdell
@ 2008-10-13 6:12 ` Hans-Christian Egtvedt
2008-10-13 6:47 ` Anders Blomdell
2008-10-13 10:07 ` Peter Korsgaard
1 sibling, 1 reply; 9+ messages in thread
From: Hans-Christian Egtvedt @ 2008-10-13 6:12 UTC (permalink / raw)
To: buildroot
On Sun, 12 Oct 2008 12:16:24 +0200
Anders Blomdell <anders.blomdell@control.lth.se> wrote:
> in target/device/Atmel/atngw100/Makefile.in there is a line
>
> BR2_PACKAGE_BUSYBOX_CONFIG:=$(BOARD_PATH)/busybox-1.9.1.config
>
> unfortunately this makes it impossible to change busybox config
> (primarily I want to turn off telnet) to a custom version. What is
> the correct way to handle this?
>
Well, naming indicates that you will need to add a
busybox-<version>.config file.
It is probably a good idea to scrap the <version> part as well, just
have a generic busybox.config file. Kconfig options should not change
that often, and user will be asked to answer yes/no to new features
most times.
--
Best regards,
Hans-Christian Egtvedt
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
2008-10-13 6:12 ` Hans-Christian Egtvedt
@ 2008-10-13 6:47 ` Anders Blomdell
2008-10-13 7:30 ` Bernhard Reutner-Fischer
0 siblings, 1 reply; 9+ messages in thread
From: Anders Blomdell @ 2008-10-13 6:47 UTC (permalink / raw)
To: buildroot
Hans-Christian Egtvedt wrote:
> On Sun, 12 Oct 2008 12:16:24 +0200
> Anders Blomdell <anders.blomdell@control.lth.se> wrote:
>
>> in target/device/Atmel/atngw100/Makefile.in there is a line
>>
>> BR2_PACKAGE_BUSYBOX_CONFIG:=$(BOARD_PATH)/busybox-1.9.1.config
>>
>> unfortunately this makes it impossible to change busybox config
>> (primarily I want to turn off telnet) to a custom version. What is
>> the correct way to handle this?
>>
>
> Well, naming indicates that you will need to add a
> busybox-<version>.config file.
And change the Makfile.in as well, IMHO that is the wrong path to follow.
>
> It is probably a good idea to scrap the <version> part as well, just
> have a generic busybox.config file. Kconfig options should not change
> that often, and user will be asked to answer yes/no to new features
> most times.
Is there any good reason at all to unconditionally ignore the busybox
config choosen by the user (many of the Atmel boards and a few other
does this)? Would a patch that just removes all these unconditional
configurations be accepted, or is there any deep reason for not allowing
Atmel users choose their own busybox configuration (and in the default
case choose the buildroot default instead of a board specific one)?
Regards
Anders Blomdell
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
2008-10-13 6:47 ` Anders Blomdell
@ 2008-10-13 7:30 ` Bernhard Reutner-Fischer
2008-10-13 8:06 ` Anders Blomdell
0 siblings, 1 reply; 9+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-13 7:30 UTC (permalink / raw)
To: buildroot
On Mon, Oct 13, 2008 at 08:47:55AM +0200, Anders Blomdell wrote:
>Hans-Christian Egtvedt wrote:
>> On Sun, 12 Oct 2008 12:16:24 +0200
>> Anders Blomdell <anders.blomdell@control.lth.se> wrote:
>>
>>> in target/device/Atmel/atngw100/Makefile.in there is a line
>>>
>>> BR2_PACKAGE_BUSYBOX_CONFIG:=$(BOARD_PATH)/busybox-1.9.1.config
>>>
>>> unfortunately this makes it impossible to change busybox config
>>> (primarily I want to turn off telnet) to a custom version. What is
>>> the correct way to handle this?
>>>
>>
>> Well, naming indicates that you will need to add a
>> busybox-<version>.config file.
>And change the Makfile.in as well, IMHO that is the wrong path to follow.
>>
>> It is probably a good idea to scrap the <version> part as well, just
>> have a generic busybox.config file. Kconfig options should not change
>> that often, and user will be asked to answer yes/no to new features
>> most times.
>Is there any good reason at all to unconditionally ignore the busybox
>config choosen by the user (many of the Atmel boards and a few other
>does this)? Would a patch that just removes all these unconditional
>configurations be accepted, or is there any deep reason for not allowing
>Atmel users choose their own busybox configuration (and in the default
>case choose the buildroot default instead of a board specific one)?
Did you read docs/README and try what's documented there (see
"finegrained")?
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
2008-10-13 7:30 ` Bernhard Reutner-Fischer
@ 2008-10-13 8:06 ` Anders Blomdell
2008-10-13 8:40 ` Bernhard Reutner-Fischer
0 siblings, 1 reply; 9+ messages in thread
From: Anders Blomdell @ 2008-10-13 8:06 UTC (permalink / raw)
To: buildroot
Bernhard Reutner-Fischer wrote:
> On Mon, Oct 13, 2008 at 08:47:55AM +0200, Anders Blomdell wrote:
>> Hans-Christian Egtvedt wrote:
>>> On Sun, 12 Oct 2008 12:16:24 +0200
>>> Anders Blomdell <anders.blomdell@control.lth.se> wrote:
>>>
>>>> in target/device/Atmel/atngw100/Makefile.in there is a line
>>>>
>>>> BR2_PACKAGE_BUSYBOX_CONFIG:=$(BOARD_PATH)/busybox-1.9.1.config
>>>>
>>>> unfortunately this makes it impossible to change busybox config
>>>> (primarily I want to turn off telnet) to a custom version. What is
>>>> the correct way to handle this?
>>>>
>>> Well, naming indicates that you will need to add a
>>> busybox-<version>.config file.
>> And change the Makfile.in as well, IMHO that is the wrong path to follow.
>>> It is probably a good idea to scrap the <version> part as well, just
>>> have a generic busybox.config file. Kconfig options should not change
>>> that often, and user will be asked to answer yes/no to new features
>>> most times.
>> Is there any good reason at all to unconditionally ignore the busybox
>> config choosen by the user (many of the Atmel boards and a few other
>> does this)? Would a patch that just removes all these unconditional
>> configurations be accepted, or is there any deep reason for not allowing
>> Atmel users choose their own busybox configuration (and in the default
>> case choose the buildroot default instead of a board specific one)?
>
> Did you read docs/README and try what's documented there (see
> "finegrained")?
No, missed that (or more correctly I interpreted that setting
BR2_PACKAGE_BUSYBOX_CONFIG should be equivalent).
Regards
Anders Blomdell
--
Anders Blomdell Email: anders.blomdell at control.lth.se
Department of Automatic Control
Lund University Phone: +46 46 222 4625
P.O. Box 118 Fax: +46 46 138118
SE-221 00 Lund, Sweden
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
2008-10-13 8:06 ` Anders Blomdell
@ 2008-10-13 8:40 ` Bernhard Reutner-Fischer
0 siblings, 0 replies; 9+ messages in thread
From: Bernhard Reutner-Fischer @ 2008-10-13 8:40 UTC (permalink / raw)
To: buildroot
On Mon, Oct 13, 2008 at 10:06:06AM +0200, Anders Blomdell wrote:
>> Did you read docs/README and try what's documented there (see
>> "finegrained")?
>No, missed that (or more correctly I interpreted that setting
>BR2_PACKAGE_BUSYBOX_CONFIG should be equivalent).
It's supposed to override any config- or board-imposed configfile(s). If
it's broken in svn then bug somebody to fix it.
cheers,
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
2008-10-12 10:16 [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets Anders Blomdell
2008-10-13 6:12 ` Hans-Christian Egtvedt
@ 2008-10-13 10:07 ` Peter Korsgaard
2008-10-13 10:28 ` Anders Blomdell
2008-10-15 16:04 ` [Buildroot] [PATCH] Obey BR2_PACKAGE_BUSYBOX_CONFIG on atngw100 Anders Blomdell
1 sibling, 2 replies; 9+ messages in thread
From: Peter Korsgaard @ 2008-10-13 10:07 UTC (permalink / raw)
To: buildroot
>>>>> "Anders" == Anders Blomdell <anders.blomdell@control.lth.se> writes:
Hi,
Anders> in target/device/Atmel/atngw100/Makefile.in there is a line
Anders> BR2_PACKAGE_BUSYBOX_CONFIG:=$(BOARD_PATH)/busybox-1.9.1.config
Yes, this is done so specific boards can enforce certain
busybox/uclibc configurations. For most boards this is fine, but you
can ofcause start to question it for evaluation boards.
Either change the config that it points to or don't select that board
(or create your own board config based on the atngw).
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets
2008-10-13 10:07 ` Peter Korsgaard
@ 2008-10-13 10:28 ` Anders Blomdell
2008-10-15 16:04 ` [Buildroot] [PATCH] Obey BR2_PACKAGE_BUSYBOX_CONFIG on atngw100 Anders Blomdell
1 sibling, 0 replies; 9+ messages in thread
From: Anders Blomdell @ 2008-10-13 10:28 UTC (permalink / raw)
To: buildroot
Peter Korsgaard wrote:
>>>>>> "Anders" == Anders Blomdell <anders.blomdell@control.lth.se> writes:
>
> Hi,
>
> Anders> in target/device/Atmel/atngw100/Makefile.in there is a line
> Anders> BR2_PACKAGE_BUSYBOX_CONFIG:=$(BOARD_PATH)/busybox-1.9.1.config
>
> Yes, this is done so specific boards can enforce certain
> busybox/uclibc configurations. For most boards this is fine, but you
> can ofcause start to question it for evaluation boards.
To me it looks like this diminishes the value of buildroot for these boards, I
would suggest something like the attached patch (i.e. providing board specific
defaults without forcing the user to always use them)
> Either change the config that it points to or don't select that board
> (or create your own board config based on the atngw).
And put these restrictions in the buildroot documentation, so others will find
it sooner than I did...
Regards
Anders
--
Anders Blomdell Email: anders.blomdell at control.lth.se
Department of Automatic Control
Lund University Phone: +46 46 222 4625
P.O. Box 118 Fax: +46 46 138118
SE-221 00 Lund, Sweden
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: atmel_buildroot.patch
Url: http://busybox.net/lists/buildroot/attachments/20081013/bb270309/attachment.txt
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH] Obey BR2_PACKAGE_BUSYBOX_CONFIG on atngw100
2008-10-13 10:07 ` Peter Korsgaard
2008-10-13 10:28 ` Anders Blomdell
@ 2008-10-15 16:04 ` Anders Blomdell
1 sibling, 0 replies; 9+ messages in thread
From: Anders Blomdell @ 2008-10-15 16:04 UTC (permalink / raw)
To: buildroot
Resend of patch thet was at end of a previous discussion
('BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets'), in the hope that someone
eventually picks it up...
Regards
Anders Blomdell
--
Anders Blomdell Email: anders.blomdell at control.lth.se
Department of Automatic Control
Lund University Phone: +46 46 222 4625
P.O. Box 118 Fax: +46 46 138118
SE-221 00 Lund, Sweden
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: atmel_buildroot.patch
Url: http://busybox.net/lists/buildroot/attachments/20081015/a26a45eb/attachment.txt
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2008-10-15 16:04 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-12 10:16 [Buildroot] BR2_PACKAGE_BUSYBOX_CONFIG and Atmel targets Anders Blomdell
2008-10-13 6:12 ` Hans-Christian Egtvedt
2008-10-13 6:47 ` Anders Blomdell
2008-10-13 7:30 ` Bernhard Reutner-Fischer
2008-10-13 8:06 ` Anders Blomdell
2008-10-13 8:40 ` Bernhard Reutner-Fischer
2008-10-13 10:07 ` Peter Korsgaard
2008-10-13 10:28 ` Anders Blomdell
2008-10-15 16:04 ` [Buildroot] [PATCH] Obey BR2_PACKAGE_BUSYBOX_CONFIG on atngw100 Anders Blomdell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox