[PATCH 0/6] Remove CONFIG_EMBEDDED

From: Lukas Bulwahn
Date: Thu Sep 08 2022 - 06:43:52 EST


Dear all,


While attempting to configure the kernel build, I encountered the option
CONFIG_EMBEDDED and I wondered what this option was all about:

config EMBEDDED
bool "Embedded system"
select EXPERT
help
This option should be enabled if compiling the kernel for
an embedded system so certain expert options are available
for configuration.

In the end, I hopefully understood its history, evolution and all the
consequences, but I concluded that there is no point for anyone else in the
future to try to untangle the riddle behind this option, as I did in the
last few hours. It is much easier to just remove this whole riddle from the
kernel build configuration.

The story all starts with commit 6a108a14fa35 ("kconfig: rename
CONFIG_EMBEDDED to CONFIG_EXPERT").

Commit 6a108a14fa35 ("kconfig: rename CONFIG_EMBEDDED to CONFIG_EXPERT")
introduces CONFIG_EXPERT to carry the previous intent of CONFIG_EMBEDDED
and just gives that intent a much better name. That has been clearly a good
and long overdue renaming, and it is clearly an improvement to the kernel
build configuration that has shown to help managing the kernel build
configuration in the last decade.

However, rather than bravely and radically just deleting CONFIG_EMBEDDED,
this commit gives CONFIG_EMBEDDED a new intended semantics, but keeps it
open for future contributors to implement that intended semantics:

A new CONFIG_EMBEDDED option is added that automatically selects
CONFIG_EXPERT when enabled and can be used in the future to isolate
options that should only be considered for embedded systems (RISC
architectures, SLOB, etc).

Since then, this CONFIG_EMBEDDED implicitly had two purposes:

- It can make even more options visible beyond what CONFIG_EXPERT makes
visible. In other words, it may introduce another level of enabling the
visibility of configuration options: always visible, visible with
CONFIG_EXPERT and visible with CONFIG_EMBEDDED.

- Set certain default values of some configurations differently,
following the assumption that configuring a kernel build for an
embedded system generally starts with a different set of default values
compared to kernel builds for all other kind of systems.

Considering the first purpose, at the point in time where CONFIG_EMBEDDED
was renamed to CONFIG_EXPERT, CONFIG_EXPERT already made 130 more options
become visible throughout all different menus for the kernel configuration.
Over the last decade, this has gradually increased, so that currently, with
CONFIG_EXPERT, roughly 170 more options become visible throughout all
different menus for the kernel configuration. In comparison, currently with
CONFIG_EMBEDDED enabled, just seven more options are visible, one in x86,
one in arm, and five for the ChipIdea Highspeed Dual Role Controller.

As the numbers suggest, these two levels of enabling the visibility of even
more configuration options---beyond what CONFIG_EXPERT enables---never
evolved to a good solution in the last decade. In other words, this
additional level of visibility of configuration option with CONFIG_EMBEDDED
compared to CONFIG_EXPERT has since its introduction never become really
valuable. It requires quite some investigation to actually understand what
is additionally visible and it does not differ significantly in complexity
compared to just enabling CONFIG_EXPERT. This CONFIG_EMBEDDED---or any
other config to show more detailed options beyond CONFIG_EXPERT---is
unlikely to be valuable unless somebody puts significant effort in
identifying how such visibility options can be properly split and creating
clear criteria, when some config option is visible with CONFIG_EXPERT and
when some config option is visible only with some further option enabled
beyond CONFIG_EXPERT, such as CONFIG_EMBEDDED attempted to do. For now, it
is much more reasonable to simply make those additional seven options that
visible with CONFIG_EMBEDDED, visible with CONFIG_EXPERT, and then remove
CONFIG_EMBEDDED. If anyone spends significant effort in structuring the
visibility of config options, they may re-introduce suitable new config
options simply as they see fit.

Considering the second purpose, note that already probably arguing that a
kernel build for an embedded system would choose some values differently is
already tricky: the set of embedded systems with Linux kernels is already
quite diverse. Many embedded system have powerful CPUs and it would not be
clear that all embedded systems just optimize towards one specific aspect,
e.g., a smaller kernel image size. So, it is unclear if starting with "one
set of default configuration" that is induced by CONFIG_EMBEDDED is a good
offer for developers configuring their kernels.

Also, the differences of needed user-space features in an embedded system
compared to a non-embedded system are probably difficult or even impossible
to name in some generic way.

So it is not surprising that in the last decade hardly anyone has
contributed changes to make something default differently in case of
CONFIG_EMBEDDED=y.

Currently, in v6.0-rc4, SECRETMEM is the only config switched off if
CONFIG_EMBEDDED=y.

As long as that is actually the only option that currently is selected or
deselected, it is better to just make SECRETMEM configurable at build time
by experts using menuconfig instead.


In summary, in the last decade, CONFIG_EMBEDDED never lived up to its
intended purpose defined above. Let us delete this config and live happily
ever after. It is needless to say that the kernel build configuration is
still highly complex, removing one needless bit of complexity might not
make a big difference, but let us get one bit of complexity out of the way
for good.

Patches 1 to 4 make the additional config options, that are visible with
CONFIG_EMBEDDED, visible with CONFIG_EXPERT instead.

Patch 5 makes secretmem configurable and visible with CONFIG_EXPERT.

Patch 6 finally removes the CONFIG_EMBEDDED, as it not used anymore
throughout the tree.

I am happy to get some feedback on this patch series.


For these minor changes in a few subsystems, I would hope that:

Patch "arm: make config ARM_PATCH_PHYS_VIRT visible with EXPERT"
is picked by arm architecture maintainer Russell King.

Patch "x86: make config X86_FEATURE_NAMES visible with EXPERT"
is picked by x86 architecture maintainers.

Patch "media: remove reference to CONFIG_EMBEDDED in MEDIA_SUPPORT_FILTER"
is picked by media maintainer Mauro Carvalho Chehab.

Patch "usb: chipidea: make configs for glue drivers visible with EXPERT"
is picked by Peter Chen or usb maintainer Greg Kroah-Hartman.

Patch "mm: Kconfig: make config SECRETMEM visible with EXPERT"
is acked by Mike Rapoport, and
is picked by mm maintainer Andrew Morton.

Once all of these patches above have been merged to mainline:

Patch "init/Kconfig: remove confusing config EMBEDDED"
can probably just be picked by the kbuild maintainer Masahiro


Best regards,

Lukas


Lukas Bulwahn (6):
arm: make config ARM_PATCH_PHYS_VIRT visible with EXPERT
x86: make config X86_FEATURE_NAMES visible with EXPERT
media: remove reference to CONFIG_EMBEDDED in MEDIA_SUPPORT_FILTER
usb: chipidea: make configs for glue drivers visible with EXPERT
mm: Kconfig: make config SECRETMEM visible with EXPERT
init/Kconfig: remove confusing config EMBEDDED

arch/arm/Kconfig | 2 +-
arch/x86/Kconfig | 2 +-
drivers/media/Kconfig | 2 +-
drivers/usb/chipidea/Kconfig | 10 +++++-----
init/Kconfig | 8 --------
mm/Kconfig | 8 +++++++-
6 files changed, 15 insertions(+), 17 deletions(-)

--
2.17.1