[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180627143705.5a1fed1c@kitsune.suse.cz>
Date: Wed, 27 Jun 2018 14:37:05 +0200
From: Michal Suchánek <msuchanek@...e.de>
To: linux-kernel@...r.kernel.org
Cc: Takashi Iwai <tiwai@...e.de>, Andreas Schwab <schwab@...e.de>,
Michal Kubecek <mkubecek@...e.cz>,
Masahiro Yamada <yamada.masahiro@...ionext.com>,
Michal Marek <michal.lkml@...kovi.net>,
Jonathan Corbet <corbet@....net>,
Yoshinori Sato <ysato@...rs.sourceforge.jp>,
Rich Felker <dalias@...c.org>,
"David S. Miller" <davem@...emloft.net>,
Jeff Dike <jdike@...toit.com>,
Richard Weinberger <richard@....at>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>,
"H. Peter Anvin" <hpa@...or.com>, x86@...nel.org,
Kees Cook <keescook@...omium.org>,
Philippe Ombredanne <pombredanne@...b.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Ulf Magnusson <ulfalizer@...il.com>,
Jeff Mahoney <jeffm@...e.com>,
"Peter Zijlstra," <peterz@...radead.org>,
Mathieu Desnoyers <mathieu.desnoyers@...icios.com>,
Frederic Weisbecker <frederic@...nel.org>,
Randy Dunlap <rdunlap@...radead.org>,
Dominik Brodowski <linux@...inikbrodowski.net>,
Nicholas Piggin <npiggin@...il.com>,
linux-kbuild@...r.kernel.org, linux-doc@...r.kernel.org,
linux-sh@...r.kernel.org, sparclinux@...r.kernel.org,
linux-um@...ts.infradead.org,
Michal Suchánek <msuchanek@...e.de>
Subject: due to kconfig changes kernel config file is no longer sufficient
for configuring the kernel
Hello,
in the x86 Kconfig we have this:
# Select 32 or 64 bit
config 64BIT
bool "64-bit kernel" if "$(ARCH)" = "x86"
default "$(ARCH)" != "i386"
---help---
Say yes to build a 64-bit kernel - formerly known as x86_64
Say no to build a 32-bit kernel - formerly known as i386
Since commit 104daea149c4 ("kconfig: reference environment variables
directly and remove 'option env='") the value of ARCH is not saved in
the kernel config. Since commit f467c5640c29 ("kconfig: only write '#
CONFIG_FOO is not set' for visible symbols") the value of 64BIT is not
saved if the ARCH is set i386 or x86_64 because the symbol is not
visible.
There is a number of ways to hack this particular case to work.
However, there is a more general problem with this. Some config options
may depend on the environment, may not be saved, and the environment is
not saved either. So in the end all the infrastructure with symlinks
from module directory pointing to the kernel source and object
directory is useless. To interpret the config stored there you need the
environment and that is not saved anywhere. So if you try to build
out-of-tree module it might end up reconfiguring your kernel and
producing useless modules.
Is there any plan to fix this?
Thanks
Michal
Powered by blists - more mailing lists