* [ptxdist] converting busybox config for ptxdist @ 2012-03-29 15:27 Alexander Stein 2012-03-29 21:44 ` Alexander Dahl 0 siblings, 1 reply; 8+ messages in thread From: Alexander Stein @ 2012-03-29 15:27 UTC (permalink / raw) To: ptxdist Hi, how do you convert the busybox' to ptxdist own config? I found those .in files under config/busybox, but didn't find an script to convert them. I need an own set of config files to integrate busybox into an initramfs with its own configuration. Best regards, Alexander -- Dipl.-Inf. Alexander Stein SYS TEC electronic GmbH August-Bebel-Str. 29 D-07973 Greiz Tel: +49-3661-6279-0, Fax: +49-3661-6279-99 eMail: Alexander.Stein@systec-electronic.com Internet: http://www.systec-electronic.com Managing Director: Dipl.-Phys. Siegmar Schmidt Commercial registry: Amtsgericht Jena, HRB 205563 -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] converting busybox config for ptxdist 2012-03-29 15:27 [ptxdist] converting busybox config for ptxdist Alexander Stein @ 2012-03-29 21:44 ` Alexander Dahl 2012-03-30 7:55 ` Alexander Dahl 0 siblings, 1 reply; 8+ messages in thread From: Alexander Dahl @ 2012-03-29 21:44 UTC (permalink / raw) To: ptxdist [-- Attachment #1.1: Type: text/plain, Size: 777 bytes --] Hei hei, Am 29.03.2012 17:27, schrieb Alexander Stein: > how do you convert the busybox' to ptxdist own config? I found those .in files > under config/busybox, but didn't find an script to convert them. I need an own > set of config files to integrate busybox into an initramfs with its own > configuration. As far as I remember from last week, ptxdist .in file just sources the Kconfig from busybox. Busybox uses the same config system, it's just assimilated. ;-) Greets Alex -- »With the first link, the chain is forged. The first speech censured, the first thought forbidden, the first freedom denied, chains us all irrevocably.« (Jean-Luc Picard, quoting Judge Aaron Satie) *** GnuPG-FP: 02C8 A590 7FE5 CA5F 3601 D1D5 8FBA 7744 CC87 10D0 *** [-- Attachment #1.2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 262 bytes --] [-- Attachment #2: Type: text/plain, Size: 48 bytes --] -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] converting busybox config for ptxdist 2012-03-29 21:44 ` Alexander Dahl @ 2012-03-30 7:55 ` Alexander Dahl 2012-03-30 8:57 ` Alexander Dahl 0 siblings, 1 reply; 8+ messages in thread From: Alexander Dahl @ 2012-03-30 7:55 UTC (permalink / raw) To: ptxdist Am 2012-03-29 23:44, schrieb Alexander Dahl: > As far as I remember from last week, ptxdist .in file just sources the > Kconfig from busybox. Busybox uses the same config system, it's just > assimilated. ;-) Because of curiosity I just had another look on this. Speaking of ptxdist 2012.03.0, rules/busybox.in contains this shortly before end of file: 73 source "config/busybox/Config.in" This file is distributed with ptxdist itself. Busybox source contains a very similar file, so I did a diff against both, which starts like this: --- platform-at91sam9g20ncl/build-target/busybox-1.18.5/Config.in 2011-06-12 17:41:51.00000000 0 +0200 +++ /home/adahl/src/ptxdist/config/busybox/Config.in 2011-09-07 12:08:37.000000000 +0200 @@ -3,9 +3,9 @@ # see scripts/kbuild/config-language.txt. # -mainmenu "BusyBox Configuration" +# mainmenu "BusyBox Configuration" -config HAVE_DOT_CONFIG +config BUSYBOX_HAVE_DOT_CONFIG bool default y @@ -13,7 +13,7 @@ menu "General Configuration" -config DESKTOP +config BUSYBOX_DESKTOP bool "Enable options for full-blown desktop systems" default y help This goes on for a while, each config option is prefixed with BUSYBOX_, I guess some script or editor magic did this. In the end there are additionally sourced files also from busybox source tree, which are part of the ptxdist source tree, too. Same magic here. If you look at the last changes to busybox package in Git, you'll see these files are changed for each busybox version bump: http://git.pengutronix.de/?p=ptxdist.git;a=history;f=config/busybox;hb=HEAD However I couldn't find any script in ptxdist source for doing the conversion of files from one to the other source tree, maybe the commiter has one?! Hope this is a little more clear than my guessing from memory yesterday. O:-) Alex -- »With the first link, the chain is forged. The first speech censured, the first thought forbidden, the first freedom denied, chains us all irrevocably.« (Jean-Luc Picard, quoting Judge Aaron Satie) *** GnuPG-FP: 02C8 A590 7FE5 CA5F 3601 D1D5 8FBA 7744 CC87 10D0 *** -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] converting busybox config for ptxdist 2012-03-30 7:55 ` Alexander Dahl @ 2012-03-30 8:57 ` Alexander Dahl 2012-04-02 10:28 ` Alexander Stein 0 siblings, 1 reply; 8+ messages in thread From: Alexander Dahl @ 2012-03-30 8:57 UTC (permalink / raw) To: ptxdist Am 2012-03-30 09:55, schrieb Alexander Dahl: > Hope this is a little more clear than my guessing from memory > yesterday. O:-) Argh, there's one step I forgot. In rules/busybox.make this is of course converted back to a config file busybox build understands, but because of the equal prefix, this is a trivial task with sed: 37 $(STATEDIR)/busybox.prepare: 38 @$(call targetinfo) 39 40 @cd $(BUSYBOX_DIR) && \ 41 $(BUSYBOX_PATH) \ 42 $(MAKE) distclean $(BUSYBOX_MAKE_OPT) 43 @grep -e PTXCONF_BUSYBOX_ $(PTXDIST_PTXCONFIG) | \ 44 sed -e 's/PTXCONF_BUSYBOX_/CONFIG_/g' > $(BUSYBOX_DIR)/.config 45 46 @$(call ptx/oldconfig, BUSYBOX) 47 48 @$(call touch) ;-) Alex -- »With the first link, the chain is forged. The first speech censured, the first thought forbidden, the first freedom denied, chains us all irrevocably.« (Jean-Luc Picard, quoting Judge Aaron Satie) *** GnuPG-FP: 02C8 A590 7FE5 CA5F 3601 D1D5 8FBA 7744 CC87 10D0 *** -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] converting busybox config for ptxdist 2012-03-30 8:57 ` Alexander Dahl @ 2012-04-02 10:28 ` Alexander Stein 2012-04-02 10:49 ` Marc Kleine-Budde 0 siblings, 1 reply; 8+ messages in thread From: Alexander Stein @ 2012-04-02 10:28 UTC (permalink / raw) To: ptxdist; +Cc: Marc Kleine-Budde Hello, Am Freitag, 30. März 2012, 10:57:59 schrieb Alexander Dahl: > Am 2012-03-30 09:55, schrieb Alexander Dahl: > > Hope this is a little more clear than my guessing from memory > > yesterday. O:-) > > Argh, there's one step I forgot. In rules/busybox.make this is of > course converted back to a config file busybox build understands, but > because of the equal prefix, this is a trivial task with sed: > > 37 $(STATEDIR)/busybox.prepare: > 38 @$(call targetinfo) > 39 > 40 @cd $(BUSYBOX_DIR) && \ > 41 $(BUSYBOX_PATH) \ > 42 $(MAKE) distclean $(BUSYBOX_MAKE_OPT) > 43 @grep -e PTXCONF_BUSYBOX_ $(PTXDIST_PTXCONFIG) | \ > 44 sed -e 's/PTXCONF_BUSYBOX_/CONFIG_/g' > > $(BUSYBOX_DIR)/.config > 45 > 46 @$(call ptx/oldconfig, BUSYBOX) > 47 > 48 @$(call touch) That's the forward part to convert a ptxdist busybox config to the busybox original config. But how to create the ptxdist internal one from busybox? Marc, Ladislav, do you mind sharing the script, command, whatever to convert the busybox config to the ptxdist one? Regards, Alexander -- Dipl.-Inf. Alexander Stein SYS TEC electronic GmbH August-Bebel-Str. 29 D-07973 Greiz Tel: +49-3661-6279-0, Fax: +49-3661-6279-99 eMail: Alexander.Stein@systec-electronic.com Internet: http://www.systec-electronic.com Managing Director: Dipl.-Phys. Siegmar Schmidt Commercial registry: Amtsgericht Jena, HRB 205563 -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] converting busybox config for ptxdist 2012-04-02 10:28 ` Alexander Stein @ 2012-04-02 10:49 ` Marc Kleine-Budde 2012-04-02 11:36 ` Alexander Stein 0 siblings, 1 reply; 8+ messages in thread From: Marc Kleine-Budde @ 2012-04-02 10:49 UTC (permalink / raw) To: Alexander Stein; +Cc: ptxdist [-- Attachment #1.1: Type: text/plain, Size: 1603 bytes --] On 04/02/2012 12:28 PM, Alexander Stein wrote: > Hello, > > Am Freitag, 30. März 2012, 10:57:59 schrieb Alexander Dahl: >> Am 2012-03-30 09:55, schrieb Alexander Dahl: >>> Hope this is a little more clear than my guessing from memory >>> yesterday. O:-) >> >> Argh, there's one step I forgot. In rules/busybox.make this is of >> course converted back to a config file busybox build understands, but >> because of the equal prefix, this is a trivial task with sed: >> >> 37 $(STATEDIR)/busybox.prepare: >> 38 @$(call targetinfo) >> 39 >> 40 @cd $(BUSYBOX_DIR) && \ >> 41 $(BUSYBOX_PATH) \ >> 42 $(MAKE) distclean $(BUSYBOX_MAKE_OPT) >> 43 @grep -e PTXCONF_BUSYBOX_ $(PTXDIST_PTXCONFIG) | \ >> 44 sed -e 's/PTXCONF_BUSYBOX_/CONFIG_/g' > >> $(BUSYBOX_DIR)/.config >> 45 >> 46 @$(call ptx/oldconfig, BUSYBOX) >> 47 >> 48 @$(call touch) > > That's the forward part to convert a ptxdist busybox config to the busybox > original config. But how to create the ptxdist internal one from busybox? > > Marc, Ladislav, > do you mind sharing the script, command, whatever to convert the busybox > config to the ptxdist one? Here you go: ptxdist make busybox_import which triggers a rule in here: rules/post/ptxd_make_import.make Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions | Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | [-- Attachment #1.2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 262 bytes --] [-- Attachment #2: Type: text/plain, Size: 48 bytes --] -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] converting busybox config for ptxdist 2012-04-02 10:49 ` Marc Kleine-Budde @ 2012-04-02 11:36 ` Alexander Stein 2012-04-02 11:37 ` Marc Kleine-Budde 0 siblings, 1 reply; 8+ messages in thread From: Alexander Stein @ 2012-04-02 11:36 UTC (permalink / raw) To: Marc Kleine-Budde; +Cc: ptxdist Am Montag, 2. April 2012, 12:49:29 schrieb Marc Kleine-Budde: > > Marc, Ladislav, > > do you mind sharing the script, command, whatever to convert the busybox > > config to the ptxdist one? > > Here you go: > > ptxdist make busybox_import > > which triggers a rule in here: > rules/post/ptxd_make_import.make Thanks! With a hardcoded package name set instead of using PTX_MAP_TO_PACKAGE_, it does what I expected. BTW: Does this script respect ${PTXDIST_WORKSPACE}/rules? Best regards, Alexander -- Dipl.-Inf. Alexander Stein SYS TEC electronic GmbH August-Bebel-Str. 29 D-07973 Greiz Tel: +49-3661-6279-0, Fax: +49-3661-6279-99 eMail: Alexander.Stein@systec-electronic.com Internet: http://www.systec-electronic.com Managing Director: Dipl.-Phys. Siegmar Schmidt Commercial registry: Amtsgericht Jena, HRB 205563 -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ptxdist] converting busybox config for ptxdist 2012-04-02 11:36 ` Alexander Stein @ 2012-04-02 11:37 ` Marc Kleine-Budde 0 siblings, 0 replies; 8+ messages in thread From: Marc Kleine-Budde @ 2012-04-02 11:37 UTC (permalink / raw) To: Alexander Stein; +Cc: ptxdist [-- Attachment #1.1: Type: text/plain, Size: 930 bytes --] On 04/02/2012 01:36 PM, Alexander Stein wrote: > Am Montag, 2. April 2012, 12:49:29 schrieb Marc Kleine-Budde: >>> Marc, Ladislav, >>> do you mind sharing the script, command, whatever to convert the busybox >>> config to the ptxdist one? >> >> Here you go: >> >> ptxdist make busybox_import >> >> which triggers a rule in here: >> rules/post/ptxd_make_import.make > > Thanks! With a hardcoded package name set instead of using > PTX_MAP_TO_PACKAGE_, it does what I expected. > BTW: Does this script respect ${PTXDIST_WORKSPACE}/rules? The rules in workspace are included with higher priority, so they should be respected. Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions | Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | [-- Attachment #1.2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 262 bytes --] [-- Attachment #2: Type: text/plain, Size: 48 bytes --] -- ptxdist mailing list ptxdist@pengutronix.de ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-04-02 11:37 UTC | newest] Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2012-03-29 15:27 [ptxdist] converting busybox config for ptxdist Alexander Stein 2012-03-29 21:44 ` Alexander Dahl 2012-03-30 7:55 ` Alexander Dahl 2012-03-30 8:57 ` Alexander Dahl 2012-04-02 10:28 ` Alexander Stein 2012-04-02 10:49 ` Marc Kleine-Budde 2012-04-02 11:36 ` Alexander Stein 2012-04-02 11:37 ` Marc Kleine-Budde
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox