All of lore.kernel.org
 help / color / mirror / Atom feed
* backports Kconfig processing
@ 2021-02-24 12:13 Arend van Spriel
  2021-02-24 14:32 ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: Arend van Spriel @ 2021-02-24 12:13 UTC (permalink / raw)
  To: Johannes Berg; +Cc: backports

Hi Johannes,

I was made aware that the select line in brcm80211 Kconfig is not 
working in backports:

select WANT_DEV_COREDUMP if BRCMFMAC

Is this something that can be fixed in backports?

Regards,
Arend
--
To unsubscribe from this list: send the line "unsubscribe backports" in

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: backports Kconfig processing
  2021-02-24 12:13 backports Kconfig processing Arend van Spriel
@ 2021-02-24 14:32 ` Johannes Berg
  2021-02-25  8:31   ` Arend van Spriel
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Berg @ 2021-02-24 14:32 UTC (permalink / raw)
  To: Arend van Spriel; +Cc: backports

Hi Arend,

> I was made aware that the select line in brcm80211 Kconfig is not 
> working in backports:
> 
> select WANT_DEV_COREDUMP if BRCMFMAC
> 
> Is this something that can be fixed in backports?

I guess it can be, but what do you mean by "not working"?

It should be rewritten to

select BPAUTO_WANT_DEV_COREDUMP if BRCMFMAC

but quite possibly the parser doesn't understand the " if BRCMFMAC" part
there.

johannes

--
To unsubscribe from this list: send the line "unsubscribe backports" in

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: backports Kconfig processing
  2021-02-24 14:32 ` Johannes Berg
@ 2021-02-25  8:31   ` Arend van Spriel
  2021-02-25  8:42     ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: Arend van Spriel @ 2021-02-25  8:31 UTC (permalink / raw)
  To: Johannes Berg; +Cc: backports

[-- Attachment #1: Type: text/plain, Size: 1386 bytes --]



On 24-02-2021 15:32, Johannes Berg wrote:
> Hi Arend,
> 
>> I was made aware that the select line in brcm80211 Kconfig is not
>> working in backports:
>>
>> select WANT_DEV_COREDUMP if BRCMFMAC
>>
>> Is this something that can be fixed in backports?
> 
> I guess it can be, but what do you mean by "not working"?
> 
> It should be rewritten to
> 
> select BPAUTO_WANT_DEV_COREDUMP if BRCMFMAC
> 
> but quite possibly the parser doesn't understand the " if BRCMFMAC" part
> there.

That exactly what is being reported. Things were working fine until I 
added the "if BRCMFMAC" part.

Regards,
Arend

-- 
This electronic communication and the information and any files transmitted 
with it, or attached to it, are confidential and are intended solely for 
the use of the individual or entity to whom it is addressed and may contain 
information that is confidential, legally privileged, protected by privacy 
laws, or otherwise restricted from disclosure to anyone else. If you are 
not the intended recipient or the person responsible for delivering the 
e-mail to the intended recipient, you are hereby notified that any use, 
copying, distributing, dissemination, forwarding, printing, or copying of 
this e-mail is strictly prohibited. If you received this e-mail in error, 
please return the e-mail to the sender, delete it from your computer, and 
destroy any printed copy of it.

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4219 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: backports Kconfig processing
  2021-02-25  8:31   ` Arend van Spriel
@ 2021-02-25  8:42     ` Johannes Berg
  2021-02-25  8:44       ` Arend van Spriel
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Berg @ 2021-02-25  8:42 UTC (permalink / raw)
  To: Arend van Spriel; +Cc: backports

On Thu, 2021-02-25 at 09:31 +0100, Arend van Spriel wrote:
> 
> On 24-02-2021 15:32, Johannes Berg wrote:
> > Hi Arend,
> > 
> > > I was made aware that the select line in brcm80211 Kconfig is not
> > > working in backports:
> > > 
> > > select WANT_DEV_COREDUMP if BRCMFMAC
> > > 
> > > Is this something that can be fixed in backports?
> > 
> > I guess it can be, but what do you mean by "not working"?
> > 
> > It should be rewritten to
> > 
> > select BPAUTO_WANT_DEV_COREDUMP if BRCMFMAC
> > 
> > but quite possibly the parser doesn't understand the " if BRCMFMAC" part
> > there.
> 
> That exactly what is being reported. Things were working fine until I 
> added the "if BRCMFMAC" part.

Yeah, so lib/kconfig.py has this

sel_line = re.compile(r'^(?P<spc>\s+)select\s+(?P<sym>[^\s]*)\s*$')

which doesn't cover the case of "if ..." on the select line.

I guess you could either look at that and fix it - need to fix the regex
to allow all_selects() to find it, and modify_selects() to preserve the
"if ..." part.

Probably something like

diff --git a/lib/kconfig.py b/lib/kconfig.py
index a77f8a54eea7..46df636d7594 100644
--- a/lib/kconfig.py
+++ b/lib/kconfig.py
@@ -8,7 +8,7 @@ src_line_rel = re.compile(r'^\s*source\s+(?P<src>[^\s"]*)"?\s*$')
 tri_line = re.compile(r'^(?P<spc>\s+)tristate')
 bool_line = re.compile(r'^(?P<spc>\s+)bool')
 cfg_line = re.compile(r'^(?P<opt>config|menuconfig)\s+(?P<sym>[^\s]*)')
-sel_line = re.compile(r'^(?P<spc>\s+)select\s+(?P<sym>[^\s]*)\s*$')
+sel_line = re.compile(r'^(?P<spc>\s+)select\s+(?P<sym>[^\s]*)(?P<ifexpr>.*)$')
 backport_line = re.compile(r'^\s+#(?P<key>[ch]-file|module-name)\s*(?P<name>.*)')
 
 class ConfigTree(object):
@@ -230,9 +230,9 @@ class ConfigTree(object):
                 m = sel_line.match(l)
                 if m and not m.group('sym') in syms:
                     if 'BPAUTO_' + m.group('sym') in syms:
-                        out += m.group('spc') + "select BPAUTO_" + m.group('sym') + '\n'
+                        out += m.group('spc') + "select BPAUTO_" + m.group('sym') + m.group('ifexpr') + '\n'
                     else:
-                        out += m.group('spc') + "depends on " + m.group('sym') + '\n'
+                        out += m.group('spc') + "depends on " + m.group('sym') + m.group('ifexpr') + '\n'
                 else:
                     out += l
             outf = open(os.path.join(self.bpid.target_dir, nf), 'w')


johannes

--
To unsubscribe from this list: send the line "unsubscribe backports" in

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: backports Kconfig processing
  2021-02-25  8:42     ` Johannes Berg
@ 2021-02-25  8:44       ` Arend van Spriel
  0 siblings, 0 replies; 5+ messages in thread
From: Arend van Spriel @ 2021-02-25  8:44 UTC (permalink / raw)
  To: Johannes Berg; +Cc: backports

[-- Attachment #1: Type: text/plain, Size: 3401 bytes --]

On 25-02-2021 09:42, Johannes Berg wrote:
> On Thu, 2021-02-25 at 09:31 +0100, Arend van Spriel wrote:
>>
>> On 24-02-2021 15:32, Johannes Berg wrote:
>>> Hi Arend,
>>>
>>>> I was made aware that the select line in brcm80211 Kconfig is not
>>>> working in backports:
>>>>
>>>> select WANT_DEV_COREDUMP if BRCMFMAC
>>>>
>>>> Is this something that can be fixed in backports?
>>>
>>> I guess it can be, but what do you mean by "not working"?
>>>
>>> It should be rewritten to
>>>
>>> select BPAUTO_WANT_DEV_COREDUMP if BRCMFMAC
>>>
>>> but quite possibly the parser doesn't understand the " if BRCMFMAC" part
>>> there.
>>
>> That exactly what is being reported. Things were working fine until I
>> added the "if BRCMFMAC" part.
> 
> Yeah, so lib/kconfig.py has this
> 
> sel_line = re.compile(r'^(?P<spc>\s+)select\s+(?P<sym>[^\s]*)\s*$')
> 
> which doesn't cover the case of "if ..." on the select line.
> 
> I guess you could either look at that and fix it - need to fix the regex
> to allow all_selects() to find it, and modify_selects() to preserve the
> "if ..." part.
> 
> Probably something like
> 
> diff --git a/lib/kconfig.py b/lib/kconfig.py
> index a77f8a54eea7..46df636d7594 100644
> --- a/lib/kconfig.py
> +++ b/lib/kconfig.py
> @@ -8,7 +8,7 @@ src_line_rel = re.compile(r'^\s*source\s+(?P<src>[^\s"]*)"?\s*$')
>   tri_line = re.compile(r'^(?P<spc>\s+)tristate')
>   bool_line = re.compile(r'^(?P<spc>\s+)bool')
>   cfg_line = re.compile(r'^(?P<opt>config|menuconfig)\s+(?P<sym>[^\s]*)')
> -sel_line = re.compile(r'^(?P<spc>\s+)select\s+(?P<sym>[^\s]*)\s*$')
> +sel_line = re.compile(r'^(?P<spc>\s+)select\s+(?P<sym>[^\s]*)(?P<ifexpr>.*)$')
>   backport_line = re.compile(r'^\s+#(?P<key>[ch]-file|module-name)\s*(?P<name>.*)')
>   
>   class ConfigTree(object):
> @@ -230,9 +230,9 @@ class ConfigTree(object):
>                   m = sel_line.match(l)
>                   if m and not m.group('sym') in syms:
>                       if 'BPAUTO_' + m.group('sym') in syms:
> -                        out += m.group('spc') + "select BPAUTO_" + m.group('sym') + '\n'
> +                        out += m.group('spc') + "select BPAUTO_" + m.group('sym') + m.group('ifexpr') + '\n'
>                       else:
> -                        out += m.group('spc') + "depends on " + m.group('sym') + '\n'
> +                        out += m.group('spc') + "depends on " + m.group('sym') + m.group('ifexpr') + '\n'
>                   else:
>                       out += l
>               outf = open(os.path.join(self.bpid.target_dir, nf), 'w')

Thanks for the suggestion. I will give it a try.

Regards,
Arend

-- 
This electronic communication and the information and any files transmitted 
with it, or attached to it, are confidential and are intended solely for 
the use of the individual or entity to whom it is addressed and may contain 
information that is confidential, legally privileged, protected by privacy 
laws, or otherwise restricted from disclosure to anyone else. If you are 
not the intended recipient or the person responsible for delivering the 
e-mail to the intended recipient, you are hereby notified that any use, 
copying, distributing, dissemination, forwarding, printing, or copying of 
this e-mail is strictly prohibited. If you received this e-mail in error, 
please return the e-mail to the sender, delete it from your computer, and 
destroy any printed copy of it.

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4219 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-02-25  8:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-24 12:13 backports Kconfig processing Arend van Spriel
2021-02-24 14:32 ` Johannes Berg
2021-02-25  8:31   ` Arend van Spriel
2021-02-25  8:42     ` Johannes Berg
2021-02-25  8:44       ` Arend van Spriel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.