* [ptxdist] [RFC] Do not select INITMETHOD
@ 2023-01-04 14:47 Ladislav Michl
2023-01-05 7:26 ` Michael Olbrich
0 siblings, 1 reply; 3+ messages in thread
From: Ladislav Michl @ 2023-01-04 14:47 UTC (permalink / raw)
To: ptxdist
Do not force INITMETHOD to allow BSPs to use alternative inits
on their own (minit for example)
Now that initmethod.in part of patch is questionable, but it breaks
various ways without it, for example:
WARNING: unmet direct dependencies detected for RC_ONCE
Depends on [n]: INITMETHOD [=n]
Selected by [m]:
- DROPBEAR [=m] && RUNTIME [=y]
Any other ideas?
Thak you,
ladis
---
rules/dropbear.in | 1 -
rules/initmethod.in | 4 ++--
rules/lldpd.in | 1 -
3 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/rules/dropbear.in b/rules/dropbear.in
index 95beb09bf..7b5736696 100644
--- a/rules/dropbear.in
+++ b/rules/dropbear.in
@@ -6,7 +6,6 @@ menuconfig DROPBEAR
select LIBC_UTIL
select LIBC_CRYPT
select GCCLIBS_GCC_S
- select INITMETHOD
select RC_ONCE if RUNTIME
select BUSYBOX_START_STOP_DAEMON if DROPBEAR_STARTSCRIPT
select BUSYBOX_FEATURE_START_STOP_DAEMON_FANCY if DROPBEAR_STARTSCRIPT
diff --git a/rules/initmethod.in b/rules/initmethod.in
index 489fd365d..4066a05ba 100644
--- a/rules/initmethod.in
+++ b/rules/initmethod.in
@@ -33,6 +33,6 @@ choice
endchoice
-source "generated/initmethod.in"
-
endif
+
+source "generated/initmethod.in"
diff --git a/rules/lldpd.in b/rules/lldpd.in
index 8b253ba83..d2afccbd0 100644
--- a/rules/lldpd.in
+++ b/rules/lldpd.in
@@ -3,7 +3,6 @@
menuconfig LLDPD
tristate
prompt "lldpd "
- select INITMETHOD
select LIBBSD
select LIBCAP
select LIBEVENT
--
2.32.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [RFC] Do not select INITMETHOD
2023-01-04 14:47 [ptxdist] [RFC] Do not select INITMETHOD Ladislav Michl
@ 2023-01-05 7:26 ` Michael Olbrich
2024-08-26 6:53 ` Ladislav Michl
0 siblings, 1 reply; 3+ messages in thread
From: Michael Olbrich @ 2023-01-05 7:26 UTC (permalink / raw)
To: Ladislav Michl; +Cc: ptxdist
On Wed, Jan 04, 2023 at 03:47:43PM +0100, Ladislav Michl wrote:
> Do not force INITMETHOD to allow BSPs to use alternative inits
> on their own (minit for example)
>
> Now that initmethod.in part of patch is questionable, but it breaks
> various ways without it, for example:
> WARNING: unmet direct dependencies detected for RC_ONCE
> Depends on [n]: INITMETHOD [=n]
> Selected by [m]:
> - DROPBEAR [=m] && RUNTIME [=y]
>
> Any other ideas?
I think it should be possible to add a
source "generated/initmethod-choice.in"
(name TBD) inside the initmethod choice. This way you can add your own
initmethod instead of disabling it. Maybe split the existing ones into
separate files for consistency.
Regards,
Michael
> Thak you,
> ladis
> ---
> rules/dropbear.in | 1 -
> rules/initmethod.in | 4 ++--
> rules/lldpd.in | 1 -
> 3 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/rules/dropbear.in b/rules/dropbear.in
> index 95beb09bf..7b5736696 100644
> --- a/rules/dropbear.in
> +++ b/rules/dropbear.in
> @@ -6,7 +6,6 @@ menuconfig DROPBEAR
> select LIBC_UTIL
> select LIBC_CRYPT
> select GCCLIBS_GCC_S
> - select INITMETHOD
> select RC_ONCE if RUNTIME
> select BUSYBOX_START_STOP_DAEMON if DROPBEAR_STARTSCRIPT
> select BUSYBOX_FEATURE_START_STOP_DAEMON_FANCY if DROPBEAR_STARTSCRIPT
> diff --git a/rules/initmethod.in b/rules/initmethod.in
> index 489fd365d..4066a05ba 100644
> --- a/rules/initmethod.in
> +++ b/rules/initmethod.in
> @@ -33,6 +33,6 @@ choice
>
> endchoice
>
> -source "generated/initmethod.in"
> -
> endif
> +
> +source "generated/initmethod.in"
> diff --git a/rules/lldpd.in b/rules/lldpd.in
> index 8b253ba83..d2afccbd0 100644
> --- a/rules/lldpd.in
> +++ b/rules/lldpd.in
> @@ -3,7 +3,6 @@
> menuconfig LLDPD
> tristate
> prompt "lldpd "
> - select INITMETHOD
> select LIBBSD
> select LIBCAP
> select LIBEVENT
> --
> 2.32.0
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [ptxdist] [RFC] Do not select INITMETHOD
2023-01-05 7:26 ` Michael Olbrich
@ 2024-08-26 6:53 ` Ladislav Michl
0 siblings, 0 replies; 3+ messages in thread
From: Ladislav Michl @ 2024-08-26 6:53 UTC (permalink / raw)
To: ptxdist
On Thu, Jan 05, 2023 at 08:26:35AM +0100, Michael Olbrich wrote:
> On Wed, Jan 04, 2023 at 03:47:43PM +0100, Ladislav Michl wrote:
> > Do not force INITMETHOD to allow BSPs to use alternative inits
> > on their own (minit for example)
> >
> > Now that initmethod.in part of patch is questionable, but it breaks
> > various ways without it, for example:
> > WARNING: unmet direct dependencies detected for RC_ONCE
> > Depends on [n]: INITMETHOD [=n]
> > Selected by [m]:
> > - DROPBEAR [=m] && RUNTIME [=y]
> >
> > Any other ideas?
>
> I think it should be possible to add a
>
> source "generated/initmethod-choice.in"
>
> (name TBD) inside the initmethod choice. This way you can add your own
> initmethod instead of disabling it. Maybe split the existing ones into
> separate files for consistency.
Ok, the name really needs to be decided and existing initmethods splitted
between files, otherwise when no custom init exists:
rules/initmethod.in:34: can't open file "generated/initmethod_provider.in"
Here the name is based on platforms/code-signing.in, but that is also
inconsistent as other initmethod related files are using '-' and not '_'.
What is recommended name then?
ladis
> Regards,
> Michael
>
> > Thak you,
> > ladis
> > ---
> > rules/dropbear.in | 1 -
> > rules/initmethod.in | 4 ++--
> > rules/lldpd.in | 1 -
> > 3 files changed, 2 insertions(+), 4 deletions(-)
> >
> > diff --git a/rules/dropbear.in b/rules/dropbear.in
> > index 95beb09bf..7b5736696 100644
> > --- a/rules/dropbear.in
> > +++ b/rules/dropbear.in
> > @@ -6,7 +6,6 @@ menuconfig DROPBEAR
> > select LIBC_UTIL
> > select LIBC_CRYPT
> > select GCCLIBS_GCC_S
> > - select INITMETHOD
> > select RC_ONCE if RUNTIME
> > select BUSYBOX_START_STOP_DAEMON if DROPBEAR_STARTSCRIPT
> > select BUSYBOX_FEATURE_START_STOP_DAEMON_FANCY if DROPBEAR_STARTSCRIPT
> > diff --git a/rules/initmethod.in b/rules/initmethod.in
> > index 489fd365d..4066a05ba 100644
> > --- a/rules/initmethod.in
> > +++ b/rules/initmethod.in
> > @@ -33,6 +33,6 @@ choice
> >
> > endchoice
> >
> > -source "generated/initmethod.in"
> > -
> > endif
> > +
> > +source "generated/initmethod.in"
> > diff --git a/rules/lldpd.in b/rules/lldpd.in
> > index 8b253ba83..d2afccbd0 100644
> > --- a/rules/lldpd.in
> > +++ b/rules/lldpd.in
> > @@ -3,7 +3,6 @@
> > menuconfig LLDPD
> > tristate
> > prompt "lldpd "
> > - select INITMETHOD
> > select LIBBSD
> > select LIBCAP
> > select LIBEVENT
> > --
> > 2.32.0
> >
> >
> >
>
> --
> Pengutronix e.K. | |
> Steuerwalder Str. 21 | http://www.pengutronix.de/ |
> 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-08-26 6:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-04 14:47 [ptxdist] [RFC] Do not select INITMETHOD Ladislav Michl
2023-01-05 7:26 ` Michael Olbrich
2024-08-26 6:53 ` Ladislav Michl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox