<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux.git/scripts/ver_linux, branch v3.7</title>
<subtitle>Linux Kernel
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v3.7</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v3.7'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/'/>
<updated>2009-06-09T20:37:54Z</updated>
<entry>
<title>Remove bashisms from scripts</title>
<updated>2009-06-09T20:37:54Z</updated>
<author>
<name>dann frazier</name>
<email>dannf@debian.org</email>
</author>
<published>2009-06-05T22:02:49Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=bdefe35d40c6bb5859dadee26c2e19bf58540f1d'/>
<id>urn:sha1:bdefe35d40c6bb5859dadee26c2e19bf58540f1d</id>
<content type='text'>
The '-e' option to echo and brace expansion are not guaranteed to be supported
by a POSIX-compliant /bin/sh (e.g. dash)

Signed-off-by: dann frazier &lt;dannf@debian.org&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: scripts/ver_linux: don't set PATH</title>
<updated>2008-07-31T21:36:54Z</updated>
<author>
<name>Adrian Bunk</name>
<email>bunk@kernel.org</email>
</author>
<published>2008-07-23T19:50:45Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=48a61569bb5396415c5dad0e81e1cfeb87c0aca3'/>
<id>urn:sha1:48a61569bb5396415c5dad0e81e1cfeb87c0aca3</id>
<content type='text'>
It would have saved both a bug submitter and me a few hours if
scripts/ver_linux had picked the same gcc as the build.

Since I can't see any reason why it fiddles with PATH at all this patch
therefore removes the PATH setting.

Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>scripts/ver_linux use 'gcc -dumpversion'</title>
<updated>2008-05-25T21:02:43Z</updated>
<author>
<name>Gabriel C</name>
<email>nix.or.die@googlemail.com</email>
</author>
<published>2008-05-21T18:36:19Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=656a3f797889dafcce2f5b8b222ad66e9974b6f7'/>
<id>urn:sha1:656a3f797889dafcce2f5b8b222ad66e9974b6f7</id>
<content type='text'>
These magic greps and hacks in ver_linux to get the gcc version always break after some gcc releases.

Since now gcc &gt;4.3 allows compiling with '--with-pkgversion' ( which can be everything 'My Cool Gcc' or something )
ver_linux will report random junk for these.

Simply use 'gcc -dumpversion' to get the gcc version which should always work.

Signed-off-by: Gabriel C &lt;nix.or.die@googlemail.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: scripts/ver_linux : correct printing of binutils version</title>
<updated>2007-10-12T19:15:31Z</updated>
<author>
<name>Jesper Juhl</name>
<email>jesper.juhl@gmail.com</email>
</author>
<published>2007-08-01T23:21:15Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=cc9eefdb9ed5603e2ab0b77fc1f6b671332ceeed'/>
<id>urn:sha1:cc9eefdb9ed5603e2ab0b77fc1f6b671332ceeed</id>
<content type='text'>
Currently scripts/ver_linux prints "Binutils" or other random
information for the version number in the "binutils" output line
on some distributions. This patch corrects that.

When I initially submitted a patch to correct that, I was not aware
that the output from "ld -v" could differ as much as it turned out
it can, so my original fix turned out to not cover all bases.
This patch works correctly with all the different "ld -v" output
that people posted in replys to my first patch, so it should be a
clear win over what we have currently.

Signed-off-by: Jesper Juhl &lt;jesper.juhl@gmail.com&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: ver_linux fix glibc version print</title>
<updated>2007-10-12T19:15:31Z</updated>
<author>
<name>Jesper Juhl</name>
<email>jesper.juhl@gmail.com</email>
</author>
<published>2007-08-22T01:11:56Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=9cc3ef30346da96f3dd7f2e328e8a5ff46a37fd9'/>
<id>urn:sha1:9cc3ef30346da96f3dd7f2e328e8a5ff46a37fd9</id>
<content type='text'>
Fix ver_linux glibc version printing (for real this time)

Alexey Dobriyan reported that commit
4a645d5ea65baaa5736bcb566673bf4a351b2ad8
broke ver_linux when glibc has a 3 digit
version number, and proposed a patch.
Al Viro then suggested a simpler way to
solve the problem which I've then simply
put into patch form.

Signed-off-by: Alexey Dobriyan &lt;adobriyan@sw.ru&gt;
Signed-off-by: Al Viro &lt;viro@ftp.linux.org.uk&gt;
Signed-off-by: Jesper Juhl &lt;jesper.juhl@gmail.com&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>kbuild: fix up printing of Linux C Library version in scripts/ver_linux</title>
<updated>2007-07-25T19:14:20Z</updated>
<author>
<name>Jesper Juhl</name>
<email>jesper.juhl@gmail.com</email>
</author>
<published>2007-07-20T00:49:23Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=4a645d5ea65baaa5736bcb566673bf4a351b2ad8'/>
<id>urn:sha1:4a645d5ea65baaa5736bcb566673bf4a351b2ad8</id>
<content type='text'>
I noticed, when running scripts/ver_linux on both a Gentoo system
and a Slackware system, that the line printing the C library
version looked a little odd. So I fixed it up to be in line with
all the rest.

  Old output:
    Linux C Library        &gt; libc.2.5
  New output:
    Linux C Library        2.5

Signed-off-by: Jesper Juhl &lt;jesper.juhl@gmail.com&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] ver_linux additions</title>
<updated>2006-12-07T16:39:38Z</updated>
<author>
<name>Valdis Kletnieks</name>
<email>valdis.kletnieks@vt.edu</email>
</author>
<published>2006-12-07T04:37:43Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=319e799abb89d9215a203e32c2cad51115d302f4'/>
<id>urn:sha1:319e799abb89d9215a203e32c2cad51115d302f4</id>
<content type='text'>
scripts/ver_linux needed some minor clean-ups, as follows:
1) Add reporting of actual oprofile release
2) Add reporting of actual wireless-tools release
3) Add reporting of actual pcmciautils release

Signed-off-by: Valdis Kletnieks &lt;valdis.kletnieks@vt.edu&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>ver_linux: don't print reiser4progs version if none found</title>
<updated>2006-04-05T11:10:19Z</updated>
<author>
<name>Alexey Dobriyan</name>
<email>adobriyan@gmail.com</email>
</author>
<published>2005-09-21T17:37:24Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=ea88df9bf895720289331e41ed73cdcb04059900'/>
<id>urn:sha1:ea88df9bf895720289331e41ed73cdcb04059900</id>
<content type='text'>
Sam: did the same for reiserprogs

Signed-off-by: Alexey Dobriyan &lt;adobriyan@gmail.com&gt;
Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] Adapt scripts/ver_linux to new util-linux version strings</title>
<updated>2005-09-07T23:57:33Z</updated>
<author>
<name>Alexey Dobriyan</name>
<email>adobriyan@gmail.com</email>
</author>
<published>2005-09-06T22:17:43Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=580b2e3c0183818adf6151e60270405b02ea8504'/>
<id>urn:sha1:580b2e3c0183818adf6151e60270405b02ea8504</id>
<content type='text'>
Tested with 2.12i and 2.13-pre2.

Signed-off-by: Alexey Dobriyan &lt;adobriyan@gmail.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>[PATCH] 2.6.12-rc1-mm3 Fix ver_linux script for no udev utils.</title>
<updated>2005-04-19T04:57:33Z</updated>
<author>
<name>Steven Cole</name>
<email>elenstev@mesatop.com</email>
</author>
<published>2005-04-19T04:57:33Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=1694145854a309bebd12a5cce63c9b398304e3bb'/>
<id>urn:sha1:1694145854a309bebd12a5cce63c9b398304e3bb</id>
<content type='text'>
Without the attached patch, the ver_linux script gives
the following if udev utils are not present.

./scripts/ver_linux: line 90: udevinfo: command not found

The patch causes ver_linux to be silent in the case of
no udevinfo command.

Signed-off-by: Steven Cole &lt;elenstev@mesatop.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
</feed>
