<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/scripts/kconfig/Makefile, branch v2.6.24</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.24</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v2.6.24'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2007-11-12T20:02:20Z</updated>
<entry>
<title>x86: enable "make ARCH=x86"</title>
<updated>2007-11-12T20:02:20Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2007-11-12T19:54:30Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=daa93fab824f2b8c35bd11670c7fab2f32b2de5f'/>
<id>urn:sha1:daa93fab824f2b8c35bd11670c7fab2f32b2de5f</id>
<content type='text'>
After unification of the Kconfig files and
introducing K64BIT support in kconfig
it required only trivial changes to enable
"make ARCH=x86".

With this patch you can build for x86_64 in several ways:
1) make ARCH=x86_64
2) make ARCH=x86 K64BIT=y
3) make ARCH=x86 menuconfig
   =&gt; select 64-bit

Likewise for i386 with the addition that
i386 is default is you say ARCH=x86.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;
Cc: Ingo Molnar &lt;mingo@redhat.com&gt;
Cc: "H. Peter Anvin" &lt;hpa@zytor.com&gt;
</content>
</entry>
<entry>
<title>x86: move i386 and x86_64 Kconfig files to x86 directory</title>
<updated>2007-10-25T20:37:02Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2007-10-25T19:04:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=47572387d58a9584c60ebbbdee56fc92c627f16f'/>
<id>urn:sha1:47572387d58a9584c60ebbbdee56fc92c627f16f</id>
<content type='text'>
After a small change in kconfig Makefile we could
move all x86 Kconfig files to x86 directory.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kconfig: small code refactoring in kconfig Makefile</title>
<updated>2007-10-25T20:35:18Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2007-10-25T18:42:18Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=e703f75d620824739148142c3734ae8223e4d1f5'/>
<id>urn:sha1:e703f75d620824739148142c3734ae8223e4d1f5</id>
<content type='text'>
Do not hardcode the arch/$(ARCH)/Kconfig name all over

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>x86: move defconfig files for i386 and x86_64 to x86</title>
<updated>2007-10-25T20:27:41Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2007-10-25T18:31:19Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=2266cfd50de3872e877eeca3dd4a6f940f22ba60'/>
<id>urn:sha1:2266cfd50de3872e877eeca3dd4a6f940f22ba60</id>
<content type='text'>
With some small changes to kconfig makefile we can now
locate the defconfig files for i386 and x86_64 in
the configs/ subdirectory under x86.
make ARCH=i386 defconfig and make defconfig
works as expected also after this change.
But arch maintainers shall now update a defconfig file in
the configs/ directory.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kconfig: comment typo in scripts/kconfig/Makefile.</title>
<updated>2007-10-18T12:31:50Z</updated>
<author>
<name>Rob Landley</name>
<email>rob@landley.net</email>
</author>
<published>2007-10-16T00:23:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=e9e40e143cf3eecc76b98f3e89db9d234e14b2be'/>
<id>urn:sha1:e9e40e143cf3eecc76b98f3e89db9d234e14b2be</id>
<content type='text'>
Typo in comment in scripts/kconfig/Makefile.

Signed-off-by: Rob Landley &lt;rob@landley.net&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: check if we can link gettext not just compile</title>
<updated>2007-10-12T19:13:50Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2007-08-12T21:15:44Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=aa1e5ef5c1d95e7ebf0821d9ba27debe43a87a22'/>
<id>urn:sha1:aa1e5ef5c1d95e7ebf0821d9ba27debe43a87a22</id>
<content type='text'>
cygwin provides the header file but the lib file needs
to be added manually. A generic fix is to check if
we can compile and link a program that uses gettext()
and if it fails fall back to NO_NLS.

International users of cygwin may have to specify
HOST_LOADLIBES := "-lintl" on the make command line.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kconfig: fix update-po-config</title>
<updated>2007-07-16T19:15:53Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2007-06-10T18:38:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=b70e325cfe824ea0f6a1666b8b8db986e99c9603'/>
<id>urn:sha1:b70e325cfe824ea0f6a1666b8b8db986e99c9603</id>
<content type='text'>
Massimo Maiurana &lt;maiurana@gmail.com&gt; reported that
update-po-config was broken:
1) spelling errors in Makefile so arch/um failed
2) UTF-8 was not supported

The following patch address the above problems.
kxgettext now append the output to the .pot file
generated by xgettext - so we have a header.
In all places UFT-8 is specifed so we now flawlessly
support UTF-8.
The Kconfig files had an empty string in a few cases -
these are now supressed in kxgettext.

With this the translators can now pick up where they left
and get it all translated.
There are ~11000 strings to be translated...

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Cc:  Massimo Maiurana &lt;maiurana@gmail.com&gt;
Cc: Arnaldo Carvalho de Melo &lt;acme@ghostprotocols.net&gt;
</content>
</entry>
<entry>
<title>kconfig: refer to qt3 if we cannot find qt libraries</title>
<updated>2007-05-02T18:58:10Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2007-04-29T19:01:52Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=9ae57004ca9c38ff8292c38a475c98b0ebbc0d74'/>
<id>urn:sha1:9ae57004ca9c38ff8292c38a475c98b0ebbc0d74</id>
<content type='text'>
We do not support qt4 (yet) so the simple fix was to warn
that qt3 are missing.
The better fix would have been to implment qt4 support
but that has failed so far.

This solves http://bugzilla.kernel.org/show_bug.cgi?id=8277

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: remove kconfig binaries during make mrproper</title>
<updated>2007-05-02T18:58:10Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@neptun.ravnborg.org</email>
</author>
<published>2007-04-01T21:14:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=145c90475f809060c8601828f14543191e06a0bb'/>
<id>urn:sha1:145c90475f809060c8601828f14543191e06a0bb</id>
<content type='text'>
Nigel Cunningham &lt;nigel@nigel.suspend2.net&gt; noticed
that 'make mrproper' did not remove mconf.
Fixed so we now remove all relevant binaries.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Cc:  Nigel Cunningham &lt;nigel@nigel.suspend2.net&gt;
</content>
</entry>
<entry>
<title>kbuild: do not build mconf &amp; lxdialog unless needed</title>
<updated>2006-09-30T09:19:20Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@neptun.ravnborg.org</email>
</author>
<published>2006-09-02T19:32:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c29121b787f533d135ae47b5f3044adb66cbebef'/>
<id>urn:sha1:c29121b787f533d135ae47b5f3044adb66cbebef</id>
<content type='text'>
Due to a limitation in kbuild all objects referred
by xxx-y or xxx-objs will be build when one of
the targets needs to e build.

This caused lxdialog to be build pulling in ncurses
that is not always available.
So avoid building mconf &amp; lxdialog unless really needed.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
</feed>
