<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/scripts, branch linux-2.6.16.y</title>
<subtitle>Hosts the 0x221E linux distro kernel.</subtitle>
<id>https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-2.6.16.y</id>
<link rel='self' href='https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-2.6.16.y'/>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/'/>
<updated>2006-03-17T15:51:25Z</updated>
<entry>
<title>[PATCH] kbuild: fix buffer overflow in modpost</title>
<updated>2006-03-17T15:51:25Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@ravnborg.org</email>
</author>
<published>2006-03-17T07:04:08Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=7670f023aabd976c25862e4c6fb9f6d9d2758153'/>
<id>urn:sha1:7670f023aabd976c25862e4c6fb9f6d9d2758153</id>
<content type='text'>
Jiri Benc &lt;jbenc@suse.cz&gt; reported that modpost would stop with SIGABRT if
used with long filepaths.
The error looked like:
&gt;   Building modules, stage 2.
&gt;   MODPOST
&gt; *** glibc detected *** scripts/mod/modpost: realloc(): invalid next size:
+0x0809f588 ***
&gt; [...]

Fix this by allocating at least the required memory + SZ bytes each time.
Before we sometimes ended up allocating too little memory resuting in the
glibc detected bug above.  Based on patch originally submitted by: Jiri
Benc &lt;jbenc@suse.cz&gt;

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] s390: fix match in ccw modalias</title>
<updated>2006-03-07T02:40:45Z</updated>
<author>
<name>Bastian Blank</name>
<email>bastian@waldi.eu.org</email>
</author>
<published>2006-03-06T23:43:00Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=de1d9c033f32ce39bf60e25be3b8624225fa9181'/>
<id>urn:sha1:de1d9c033f32ce39bf60e25be3b8624225fa9181</id>
<content type='text'>
Fix matching of devmodel in modaliases.  It breaks automatic loading of any
dasd module.

Cc: Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;
Cc: Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;
Acked-by: Cornelia Huck &lt;cornelia.huck@de.ibm.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>Revert "[PATCH] kconfig: detect if -lintl is needed when linking conf,mconf"</title>
<updated>2006-02-09T16:00:14Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@g5.osdl.org</email>
</author>
<published>2006-02-09T16:00:14Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=15508d22d00277a1f2a1022dce38f2772c810d32'/>
<id>urn:sha1:15508d22d00277a1f2a1022dce38f2772c810d32</id>
<content type='text'>
This reverts commit 5e375bc7d586e0df971734a5a5f1f080ffd89b68.

Kyle McMartin steps on his soap-box:

  "Sigh.  Can everyone please stop assuming gcc can output to /dev/null?
   On several platforms, ld tries to lseek in the output file, and fails
   if it can't."

Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-bugfix</title>
<updated>2006-02-07T18:01:43Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@g5.osdl.org</email>
</author>
<published>2006-02-07T18:01:43Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=eeb059e0a69369753b3e45426958f751f0b8fc89'/>
<id>urn:sha1:eeb059e0a69369753b3e45426958f751f0b8fc89</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[PATCH] kconfig: detect if -lintl is needed when linking conf,mconf</title>
<updated>2006-02-05T19:06:54Z</updated>
<author>
<name>Robb, Sam</name>
<email>sam.robb@timesys.com</email>
</author>
<published>2006-02-05T07:28:06Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=5e375bc7d586e0df971734a5a5f1f080ffd89b68'/>
<id>urn:sha1:5e375bc7d586e0df971734a5a5f1f080ffd89b68</id>
<content type='text'>
On a system where libintl.h is present, but the NLS functionality is
supplied by a separate library instead of the system C library, an attempt
to "make config" or "make menuconfig" will fail with link errors, ex:

  scripts/kconfig/mconf.o:mconf.c:(.text+0xf63): undefined reference to
    `_libintl_gettext'

This patch attempts to correct the problem by detecting whether or not NLS
support requires linking with libintl.

Signed-off-by: Samuel J Robb &lt;sam.robb@timesys.com&gt;
Cc: Roman Zippel &lt;zippel@linux-m68k.org&gt;
Cc: Sam Ravnborg &lt;sam@ravnborg.org&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] kernel-doc: clean up the script (whitespace)</title>
<updated>2006-02-01T16:53:27Z</updated>
<author>
<name>Randy Dunlap</name>
<email>rdunlap@xenotime.net</email>
</author>
<published>2006-02-01T11:06:58Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=3c3b809e256c417847f1a96b2f9d9f66c7fcb02c'/>
<id>urn:sha1:3c3b809e256c417847f1a96b2f9d9f66c7fcb02c</id>
<content type='text'>
Remove lots of trailing whitespace.  Nothing else.

Signed-off-by: Randy Dunlap &lt;rdunlap@xenotime.net&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] Doc/kernel-doc: add more usage info</title>
<updated>2006-02-01T16:53:27Z</updated>
<author>
<name>Randy Dunlap</name>
<email>rdunlap@xenotime.net</email>
</author>
<published>2006-02-01T11:06:57Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=d28bee0c0a9c6abddf1d14c69f188400e994eb5a'/>
<id>urn:sha1:d28bee0c0a9c6abddf1d14c69f188400e994eb5a</id>
<content type='text'>
- Add info that structs, unions, enums, and typedefs are supported.

- Add doc about "private:" and "public:" tags for struct fields.

- Fix some typos.

- Remove some trailing whitespace.

Signed-off-by: Randy Dunlap &lt;rdunlap@xenotime.net&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] DocBook: allow even longer return types</title>
<updated>2006-02-01T16:53:27Z</updated>
<author>
<name>Martin Waitz</name>
<email>tali@admingilde.org</email>
</author>
<published>2006-02-01T11:06:55Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=9598f91f2216ba51fef472a7fc3074a0c8429a96'/>
<id>urn:sha1:9598f91f2216ba51fef472a7fc3074a0c8429a96</id>
<content type='text'>
kernel-doc errored out because it could not understand the new __copy_to_user
definition.  Now we allow return types with four words.

Signed-off-by: Martin Waitz &lt;tali@admingilde.org&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>kconfig: fix /dev/null breakage</title>
<updated>2006-01-21T11:03:09Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@mars.ravnborg.org</email>
</author>
<published>2006-01-21T11:03:09Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=3835f82183eab8b67ddda6b32c127859a546c82d'/>
<id>urn:sha1:3835f82183eab8b67ddda6b32c127859a546c82d</id>
<content type='text'>
While running "make menuconfig" and "make mrproper"
some people experienced that /dev/null suddenly changed
permissions or suddenly became a regular file.
The main reason was that /dev/null was used as output
to gcc in the check-lxdialog.sh script and gcc did
some strange things with the output file; in this
case /dev/null when it errorred out.

Following patch implements a suggestion
from Bryan O'Sullivan &lt;bos@serpentine.com&gt; to
use gcc -print-file-name=libxxx.so.

Also the Makefile is adjusted to not resolve value of
HOST_EXTRACFLAGS and HOST_LOADLIBES until they are actually used.
This prevents us from calling gcc when running make *clean/mrproper

Thanks to Eyal Lebedinsky &lt;eyal@eyal.emu.id.au&gt; and
Jean Delvare &lt;khali@linux-fr.org&gt; for the first error reports.

Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
---
</content>
</entry>
<entry>
<title>kbuild: create .kernelrelease at *config step</title>
<updated>2006-01-16T11:12:12Z</updated>
<author>
<name>Sam Ravnborg</name>
<email>sam@mars.ravnborg.org</email>
</author>
<published>2006-01-16T11:12:12Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=2244cbd8a9185c197ec5ba5de175aec288697223'/>
<id>urn:sha1:2244cbd8a9185c197ec5ba5de175aec288697223</id>
<content type='text'>
To enable 'make kernelrelease' earlier now create .kernelrelease when
one of the *config targets are used.
Also introduce KERNELVERSION - only user is kconfig.
KERNELVERSION was needed to display kernel version in menuconfig -
KERNELRELEASE is not valid until configuration has completed.
kconfig files modified to use KERNELVERSION.
Bug reported by: Rene Rebe &lt;rene@exactcode.de&gt;

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