* debian/changelog: Update.

* src/mod/modpost.c: Support -s.

svn path=/dists/trunk/linux-kbuild-2.6/; revision=9666
This commit is contained in:
Bastian Blank 2007-10-16 15:24:35 +00:00
parent 46cae1d252
commit 211e81721c
2 changed files with 4 additions and 2 deletions

3
debian/changelog vendored
View File

@ -1,8 +1,9 @@
linux-kbuild-2.6 (2.6.23-1) UNRELEASED; urgency=low
* New upstream version.
* modpost: Support -s.
-- Bastian Blank <waldi@debian.org> Sun, 14 Oct 2007 11:28:39 +0200
-- Bastian Blank <waldi@debian.org> Tue, 16 Oct 2007 17:22:41 +0200
linux-kbuild-2.6 (2.6.22-1) unstable; urgency=low

View File

@ -13,7 +13,7 @@ int main (int argc, char *argv[])
int opt;
FILE *file;
while ((opt = getopt (argc, argv, "ai:I:mo:w")) != -1)
while ((opt = getopt (argc, argv, "ai:I:mo:sw")) != -1)
{
switch(opt)
{
@ -22,6 +22,7 @@ int main (int argc, char *argv[])
case 'I':
case 'm':
case 'o':
case 's':
case 'w':
break;
default: