All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bruce Ashfield <bruce.ashfield@windriver.com>
To: Ilya Dmitrichenko <errordeveloper@gmail.com>
Cc: yocto <yocto@yoctoproject.org>
Subject: Re: Kernel features
Date: Mon, 8 Sep 2014 08:14:58 -0400	[thread overview]
Message-ID: <540D9DC2.5010900@windriver.com> (raw)
In-Reply-To: <CAPhDKbGc=aZ0Uy2XD5nSivugzwERKFJXbW3MJH=ye4UEM-X5Tg@mail.gmail.com>

On 2014-09-08, 1:50 AM, Ilya Dmitrichenko wrote:
> Hi Bruce,
>
> On 7 September 2014 15:17, Bruce Ashfield <bruce.ashfield@windriver.com> wrote:
>> On 2014-09-07, 4:51 AM, Ilya Dmitrichenko wrote:
>>>
>>> Today I have spent quite a while trying to figure how KERNEL_FEATURES
>>> works and why some of the things I pass in my configuration fragment
>>> are not getting enabled.
>>>
>>> It turned out that some of the options no longer existed and some had
>>> been renamed.
>>
>>
>> Do you have an example ? We try and not rename or remove public facing
>> configuration fragments, and hide the changing CONFIG_* values behind
>> the fragment names.
>
> Here is what I was doing first:
>
> CONFIG_SND_OMAP_SOC=n
> CONFIG_SND_OMAP_SOC_MCBSP=n
> CONFIG_SND_OMAP_SOC_OMAP_TWL4030=n
> CONFIG_SND_SOC_TWL4030=n
> CONFIG_SND_AM335X_SOC_EVM=m
> CONFIG_SND_AM33XX_SOC=m
> CONFIG_SND_DAVINCI_SOC_MCASP=m
> CONFIG_SND_HRTIMER=m
>
> This is resulted in disabled options propagating as expected and
> CONFIG_SND_HRTIMER worked as well.
>
> The rest, however didn't.

Aha. The kernel configuration audit would have told you that some
options were set, and didn't make it into the final .config

>
> It turned out that basically CONFIG_SND_AM335X_SOC_EVM is misspelled
> and should be called CONFIG_SND_AM33XX_SOC_EVM. I think there must be
> a way to verify whether this existed or not.
>
> It then also turned out that CONFIG_SND_AM335X_SOC_EVM depends on
> CONFIG_SND_DAVINCI_SOC, and I had to enable that one and ensure it
> comes first.

And the audit would have told you that you had an invalid option
(i.e. the misspelled one didn't appear in any Kconfig in the kernel).

>
> This is a working set:
>
> CONFIG_SND_OMAP_SOC=m
> CONFIG_SND_OMAP_SOC_MCBSP=m
> CONFIG_SND_OMAP_SOC_OMAP_TWL4030=m
> CONFIG_SND_SOC_TWL4030=m
> CONFIG_SND_DAVINCI_SOC=m
> CONFIG_SND_AM33XX_SOC_EVM=m
> CONFIG_SND_DAVINCI_SOC_MCASP=m
> CONFIG_SND_HRTIMER=m
>
>
>>> The question is really why would this not get detected by
>>> kernel_configcheck or any other step?
>>>
>>> I'm guessing this might be the case of how kconfig works, perhaps...
>>> So I wonder whether anyone have looked into how we could actually get
>>> the feature dependency graph from kconfig to bitbake or at least some
>>> sort of helper tool? Perhaps parsing kconfig manifests in Python would
>>> be a starting point...
>>
>>
>> There have been many efforts are changing, writing and processing
>> Kconfig constructs in other languages .. they all end up being
>> pretty much a re-implementation of Kconfig, and hence a big effort
>> that needs to be continuously maintained over time .. also a big
>> effort.
>
> I basically think that we could do something better then blindly
> throwing a set of options without verifying it.

Ah, but we do verify it. There's a check config task, that used to
be more visible, I got complaints and we hid it. I have a 1.7 task
to make it more visible again :)

>
> The reason I mentioned Python was that I though of sharing Kconfig's
> dependency graph with bitbake and thereby detecting errors like the
> above.
>
> As a user, this is what I'd love to see:
>
> Error: The Kconfig option CONFIG_SND_AM335X_SOC_EVM that you have
> specified doesn't exist. (Did you mean CONFIG_SND_AM33XX_SOC_EVM?)
>
> Error: The Kconfig option CONFIG_SND_AM33XX_SOC that you have
> specified doesn't exist. (Nothing similar exists)

Pretty much already done.

>
> Warning: The Kconfig option CONFIG_SND_DAVINCI_SOC_MCASP that you have
> specified depends on CONFIG_SND_DAVINCI_SOC. I will enable
> CONFIG_SND_DAVINCI_SOC as a module for you.

This one you can't do without parsing and evaluating all the Kconfigs,
which is expensive, and hard to do. We can do something basic by looking
at only the direct options within a particular Kconfig, since they are
immediately available.

But we do detect a whole set of other errors already, and for the most
part, they lead pretty quickly to the issue.

Bruce

>
> Hope this makes more sense.
>
> Cheers,
>



  reply	other threads:[~2014-09-08 12:15 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-07  8:51 Kernel features Ilya Dmitrichenko
2014-09-07 14:17 ` Bruce Ashfield
2014-09-08  5:50   ` Ilya Dmitrichenko
2014-09-08 12:14     ` Bruce Ashfield [this message]
2014-09-08 12:31       ` Include PaX / GRSecurity Jens Lucius
     [not found]       ` <CAPhDKbH3sj49qfuBnKY-JvD2AGarFpx1PnSOij67Uvr3gABeTg@mail.gmail.com>
2014-09-08 18:07         ` Kernel features Ilya Dmitrichenko
2014-09-08 20:02           ` Bruce Ashfield

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=540D9DC2.5010900@windriver.com \
    --to=bruce.ashfield@windriver.com \
    --cc=errordeveloper@gmail.com \
    --cc=yocto@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.