<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/linux.git/scripts/kconfig/qconf.cc, branch v4.20.5</title>
<subtitle>Linux kernel stable tree (mirror)</subtitle>
<id>https://git.radix-linux.su/kernel/linux.git/atom?h=v4.20.5</id>
<link rel='self' href='https://git.radix-linux.su/kernel/linux.git/atom?h=v4.20.5'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/'/>
<updated>2018-08-14T00:01:47+00:00</updated>
<entry>
<title>kconfig: remove P_ENV property type</title>
<updated>2018-08-14T00:01:47+00:00</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2018-08-13T16:48:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=1880861226c13ddd42c34ddd30c3b502b650fe29'/>
<id>urn:sha1:1880861226c13ddd42c34ddd30c3b502b650fe29</id>
<content type='text'>
This property is not set by anyone since commit 104daea149c4 ("kconfig:
reference environment variables directly and remove 'option env='").

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Acked-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kconfig: allow all config targets to write auto.conf if missing</title>
<updated>2018-07-25T14:25:30+00:00</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2018-07-20T07:46:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=00c864f8903dd357471e8ee48f4d57aaa9a1a0de'/>
<id>urn:sha1:00c864f8903dd357471e8ee48f4d57aaa9a1a0de</id>
<content type='text'>
Currently, only syncconfig creates or updates include/config/auto.conf
and some other files.  Other config targets create or update only the
.config file.

When you configure and build the kernel from a pristine source tree,
any config target is followed by syncconfig in the build stage since
include/config/auto.conf is missing.

We are moving compiler tests from Makefile to Kconfig.  It means that
parsing Kconfig files will be more costly since Kconfig invokes the
compiler commands internally.  Thus, we want to avoid invoking Kconfig
twice (one for *config to create the .config, and one for syncconfig
to synchronize the auto.conf).  If auto.conf does not exist, we can
generate all configuration files in the first configuration stage,
which will save the syncconfig in the build stage.

Please note this should be done only when auto.conf is missing.  If
*config blindly did this, time stamp files under include/config/ would
be unnecessarily touched, triggering unneeded rebuild of objects.

I assume a scenario like this:

 1. You have a source tree that has already been built
    with CONFIG_FOO disabled

 2. Run "make menuconfig" to enable CONFIG_FOO

 3. CONFIG_FOO turns out to be unnecessary.
    Run "make menuconfig" again to disable CONFIG_FOO

 4. Run "make"

In this case, include/config/foo.h should not be touched since there
is no change in CONFIG_FOO.  The sync process should be delayed until
the user really attempts to build the kernel.

This commit has another motivation; I want to suppress the 'No such
file or directory' warning from the 'include' directive.

The top-level Makefile includes auto.conf with '-include' directive,
like this:

  ifeq ($(dot-config),1)
  -include include/config/auto.conf
  endif

This looks strange because auto.conf is mandatory when dot-config is 1.
I guess only the reason of using '-include' is to suppress the warning
'include/config/auto.conf: No such file or directory' when building
from a clean tree.  However, this has a side-effect; Make considers
the files included by '-include' are optional.  Hence, Make continues
to build even if it fails to generate include/config/auto.conf.  I will
change this in the next commit, but the warning message is annoying.
(At least, kbuild test robot reports it as a regression.)

With this commit, Kconfig will generate all configuration files together
with the .config and I guess it is a solution good enough to suppress
the warning.

Note:
GNU Make 4.2 or later does not display the warning from the 'include'
directive if include files are successfully generated.  See GNU Make
commit 87a5f98d248f ("[SV 102] Don't show unnecessary include file
errors.")  However, older GNU Make versions are still widely used.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>kconfig: drop localization support</title>
<updated>2018-05-28T09:25:21+00:00</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2018-05-22T19:36:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=694c49a7c01cc87194be40cb26404b58b68c291c'/>
<id>urn:sha1:694c49a7c01cc87194be40cb26404b58b68c291c</id>
<content type='text'>
The localization support is broken and appears unused.
There is no google hits on the update-po-config target.
And there is no recent (5 years) activity related to the localization.

So lets just drop this as it is no longer used.

Suggested-by: Ulf Magnusson &lt;ulfalizer@gmail.com&gt;
Suggested-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>xconfig: fix missing suboption and help panels on first run</title>
<updated>2016-12-11T20:40:54+00:00</updated>
<author>
<name>Boris Barbulovski</name>
<email>bbarbulovski@gmail.com</email>
</author>
<published>2016-11-30T22:57:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=83c3a1bad224189f22ca2c1955337c3478bd3ab2'/>
<id>urn:sha1:83c3a1bad224189f22ca2c1955337c3478bd3ab2</id>
<content type='text'>
qconfig initial slider sizes fix.

On first `make xconfig`, suboption and help panels were hidden.
Now we properly detect the first run, and show those panels.

Reported-by: Jason Vas Dias &lt;jason.vas.dias@gmail.com&gt;
Signed-off-by: Boris Barbulovski &lt;bbarbulovski@gmail.com&gt;
Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;
Tested-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;
</content>
</entry>
<entry>
<title>xconfig: fix 'Show Debug' functionality</title>
<updated>2016-12-11T20:39:25+00:00</updated>
<author>
<name>Boris Barbulovski</name>
<email>bbarbulovski@gmail.com</email>
</author>
<published>2016-11-30T22:57:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=e039303ff71a0fd89d009a24b1eab230ce907288'/>
<id>urn:sha1:e039303ff71a0fd89d009a24b1eab230ce907288</id>
<content type='text'>
xconfig - Fix missing 'Show Debug' functionality.

xconfig Help mentions 'Show Debug Info' but it was missing from any
menu.

* Add 'Show debug' menu to the main menu.
* Properly load showDebug settings.

Reported-by: Jason Vas Dias &lt;jason.vas.dias@gmail.com&gt;
Signed-off-by: Boris Barbulovski &lt;bbarbulovski@gmail.com&gt;
Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;
Tested-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;
</content>
</entry>
<entry>
<title>kconfig: fix qconf segfault by deleting heap objects</title>
<updated>2016-01-11T08:45:08+00:00</updated>
<author>
<name>Chris Bainbridge</name>
<email>chris.bainbridge@gmail.com</email>
</author>
<published>2016-01-08T20:44:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=5b61c7bd25f13daa58f2507991e87e990d7c6010'/>
<id>urn:sha1:5b61c7bd25f13daa58f2507991e87e990d7c6010</id>
<content type='text'>
On Debian stable (qt-4.8.6) 'make xconfig' intermittently fails due to
qconf segfaulting at exit time in QXcbEventReader. The cause of this is
destructors on the heap objects never being called, so fix this by
properly deleting the heap objects before exit.

Signed-off-by: Chris Bainbridge &lt;chris.bainbridge@gmail.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;
</content>
</entry>
<entry>
<title>Add current selection check.</title>
<updated>2015-11-02T20:43:58+00:00</updated>
<author>
<name>Boris Barbulovski</name>
<email>bbarbulovski@gmail.com</email>
</author>
<published>2015-09-22T18:36:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=be596aaa74090f553c61505ad03bb7a7460e5d23'/>
<id>urn:sha1:be596aaa74090f553c61505ad03bb7a7460e5d23</id>
<content type='text'>
Signed-off-by: Boris Barbulovski &lt;bbarbulovski@gmail.com&gt;
Signed-off-by: Thiago Macieira &lt;thiago.macieira@intel.com&gt;
[mmarek: I missed it in the original Qt5 patch set, which caused a crash]
Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;
</content>
</entry>
<entry>
<title>Port xconfig to Qt5 - Update copyright.</title>
<updated>2015-10-14T13:00:25+00:00</updated>
<author>
<name>Boris Barbulovski</name>
<email>bbarbulovski@gmail.com</email>
</author>
<published>2015-09-22T18:36:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=b4ff1de3b8381a471d1b1320be0daa3f8fc2ed85'/>
<id>urn:sha1:b4ff1de3b8381a471d1b1320be0daa3f8fc2ed85</id>
<content type='text'>
Signed-off-by: Boris Barbulovski &lt;bbarbulovski@gmail.com&gt;
Signed-off-by: Thiago Macieira &lt;thiago.macieira@intel.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;
</content>
</entry>
<entry>
<title>Port xconfig to Qt5 - Fix goParent issue.</title>
<updated>2015-10-14T13:00:25+00:00</updated>
<author>
<name>Boris Barbulovski</name>
<email>bbarbulovski@gmail.com</email>
</author>
<published>2015-09-22T18:36:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=ee7298fbc01e252157a314da7a8a0eaef46ad2a2'/>
<id>urn:sha1:ee7298fbc01e252157a314da7a8a0eaef46ad2a2</id>
<content type='text'>
Signed-off-by: Boris Barbulovski &lt;bbarbulovski@gmail.com&gt;
Signed-off-by: Thiago Macieira &lt;thiago.macieira@intel.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;
</content>
</entry>
<entry>
<title>Port xconfig to Qt5 - on Back clicked, deselect old item.</title>
<updated>2015-10-14T13:00:25+00:00</updated>
<author>
<name>Boris Barbulovski</name>
<email>bbarbulovski@gmail.com</email>
</author>
<published>2015-09-22T18:36:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=5df9da9df2071c7c18245b4462e7d65d28df4281'/>
<id>urn:sha1:5df9da9df2071c7c18245b4462e7d65d28df4281</id>
<content type='text'>
Signed-off-by: Boris Barbulovski &lt;bbarbulovski@gmail.com&gt;
Signed-off-by: Thiago Macieira &lt;thiago.macieira@intel.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;
</content>
</entry>
</feed>
