<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/scripts/kconfig/confdata.c, branch v2.6.38</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v2.6.38</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v2.6.38'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2010-12-15T13:42:11Z</updated>
<entry>
<title>kconfig: fix typos</title>
<updated>2010-12-15T13:42:11Z</updated>
<author>
<name>Arnaud Lacombe</name>
<email>lacombar@gmail.com</email>
</author>
<published>2010-12-05T06:41:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=579fb8e741fecef7dfd64afcc7b0b0c68ea207cc'/>
<id>urn:sha1:579fb8e741fecef7dfd64afcc7b0b0c68ea207cc</id>
<content type='text'>
Signed-off-by: Arnaud Lacombe &lt;lacombar@gmail.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kconfig: nuke second argument of conf_write_symbol()</title>
<updated>2010-12-15T13:26:51Z</updated>
<author>
<name>Arnaud Lacombe</name>
<email>lacombar@gmail.com</email>
</author>
<published>2010-12-05T06:33:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=0dce631092f410bb22b21b3d47ef20d69389dfd9'/>
<id>urn:sha1:0dce631092f410bb22b21b3d47ef20d69389dfd9</id>
<content type='text'>
Replacing S_TRISTATE by S_BOOLEAN is a no-op for conf_write_symbol().

Signed-off-by: Arnaud Lacombe &lt;lacombar@gmail.com&gt;
[mmarek: Fix unused variable warning in conf_write()]
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kconfig: do not define AUTOCONF_INCLUDED</title>
<updated>2010-12-15T12:38:25Z</updated>
<author>
<name>Arnaud Lacombe</name>
<email>lacombar@gmail.com</email>
</author>
<published>2010-12-05T06:31:57Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=6e71fabe9e60b1c6db587fbeac349848647920ab'/>
<id>urn:sha1:6e71fabe9e60b1c6db587fbeac349848647920ab</id>
<content type='text'>
AUTOCONF_INCLUDED is not checked is not used within the tree and its parent
header, `autoconf.h', is safe to be re-included.

Signed-off-by: Arnaud Lacombe &lt;lacombar@gmail.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>Merge branch 'message-callback' into kbuild/kconfig</title>
<updated>2010-10-27T22:54:25Z</updated>
<author>
<name>Michal Marek</name>
<email>mmarek@suse.cz</email>
</author>
<published>2010-10-27T22:54:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=70c74e59db7450d5c9164abeb3b6752f8045288b'/>
<id>urn:sha1:70c74e59db7450d5c9164abeb3b6752f8045288b</id>
<content type='text'>
Conflicts:
	scripts/kconfig/nconf.c
</content>
</entry>
<entry>
<title>kconfig: Use PATH_MAX instead of 128 for path buffer sizes.</title>
<updated>2010-10-04T13:40:04Z</updated>
<author>
<name>Will Newton</name>
<email>will.newton@gmail.com</email>
</author>
<published>2010-09-22T14:59:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=1408b15b98635a13bad2e2a50b3c2ae2ccdf625b'/>
<id>urn:sha1:1408b15b98635a13bad2e2a50b3c2ae2ccdf625b</id>
<content type='text'>
This prevents the buffers being overflowed when using a config
file with a long name. PATH_MAX is used elsewhere in the same
file, so use it here as well.

Signed-off-by: Will Newton &lt;will.newton@imgtec.com&gt;
Acked-by: WANG Cong &lt;xiyou.wangcong@gmail.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kconfig: Don't go out from read config loop when you read new symbol</title>
<updated>2010-09-30T19:59:32Z</updated>
<author>
<name>Naohiro Aota</name>
<email>naota@elisp.net</email>
</author>
<published>2010-09-30T19:23:17Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=8bea7548ee0223175bea5fddcc54af93bd252d9b'/>
<id>urn:sha1:8bea7548ee0223175bea5fddcc54af93bd252d9b</id>
<content type='text'>
commit 8baefd30b5b0101aa07aa75da44a9eee881eed28 of linux-next replaced
a `switch()' statement with some `if()' statements, but left `break's
in the `switch()' statement untouched. This cause read config loop to
exit and so "make oldconfig" is not much usable (see below).

&gt; $ make oldconfig
&gt;&lt;snip&gt;
&gt; scripts/kconfig/conf --oldconfig Kconfig
&gt; #
&gt; # using defaults found in /boot/config-2.6.34-ccs-r1
&gt; #
&gt; *
&gt; * Restart config...
&gt; *
&gt; *
&gt; * General setup
&gt; *
&gt; Prompt for development and/or incomplete code/drivers (EXPERIMENTAL) [N/y/?] (NEW)

(I've already have "CONFIG_EXPERIMENTAL=y" in the old config file. But
that's not read here.)

This patch should fix this problem.

Signed-off-by: Naohiro Aota &lt;naota@elisp.net&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kconfig: replace KERNELVERSION usage by the mainmenu's prompt</title>
<updated>2010-09-20T02:53:53Z</updated>
<author>
<name>Arnaud Lacombe</name>
<email>lacombar@gmail.com</email>
</author>
<published>2010-08-18T05:57:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=0954828fcbf3bd13d593499b16b901a4e801b0b9'/>
<id>urn:sha1:0954828fcbf3bd13d593499b16b901a4e801b0b9</id>
<content type='text'>
Signed-off-by: Arnaud Lacombe &lt;lacombar@gmail.com&gt;
Reviewed-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Reviewed-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kconfig: allow build-time definition of the internal config prefix</title>
<updated>2010-09-19T22:19:26Z</updated>
<author>
<name>Arnaud Lacombe</name>
<email>lacombar@gmail.com</email>
</author>
<published>2010-08-15T03:57:43Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=ffb5957bc48f64f0773fd3fbc43cb9bb9b38e270'/>
<id>urn:sha1:ffb5957bc48f64f0773fd3fbc43cb9bb9b38e270</id>
<content type='text'>
Signed-off-by: Arnaud Lacombe &lt;lacombar@gmail.com&gt;
Reviewed-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Reviewed-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kconfig: replace a `switch()' statement by a more flexible `if()' statement</title>
<updated>2010-09-19T22:19:16Z</updated>
<author>
<name>Arnaud Lacombe</name>
<email>lacombar@gmail.com</email>
</author>
<published>2010-08-24T04:14:47Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=8baefd30b5b0101aa07aa75da44a9eee881eed28'/>
<id>urn:sha1:8baefd30b5b0101aa07aa75da44a9eee881eed28</id>
<content type='text'>
With the upcoming dynamical configuration prefix, we can no longer assume that
the prefix will start by a 'C'. As such, we can no longer hardcode this value in
the `case ...:', so replace the `switch() { ... }' statement by a more flexible
'if () { ... }' statement.

Signed-off-by: Arnaud Lacombe &lt;lacombar@gmail.com&gt;
Reviewed-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Reviewed-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kconfig: Allow frontends to display messages themselves</title>
<updated>2010-08-17T08:21:19Z</updated>
<author>
<name>Michal Marek</name>
<email>mmarek@suse.cz</email>
</author>
<published>2010-08-17T08:21:19Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=42368c37fbd51f7b478d041ae55c5df000897158'/>
<id>urn:sha1:42368c37fbd51f7b478d041ae55c5df000897158</id>
<content type='text'>
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
</feed>
