kernel-doc: use no-doc optionWhen asked by a template to include all functions from a file,it will also include DOC: sections wreaking havoc in the generateddocbook file. This patch makes it use
kernel-doc: use no-doc optionWhen asked by a template to include all functions from a file,it will also include DOC: sections wreaking havoc in the generateddocbook file. This patch makes it use the new -no-doc-sectionsflag for kernel-doc to avoid this.Signed-off-by: Johannes Berg <johannes@sipsolutions.net>Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
show more ...
kbuild: stop docproc segfaulting when SRCTREE isn't set.Prevent docproc from segfaulting when SRCTREE isn't set.Signed-off-by: Rob Landley <rob@landley.net>Acked-by: Randy Dunlap <randy.dunlap@o
kbuild: stop docproc segfaulting when SRCTREE isn't set.Prevent docproc from segfaulting when SRCTREE isn't set.Signed-off-by: Rob Landley <rob@landley.net>Acked-by: Randy Dunlap <randy.dunlap@oracle.com>Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
docproc: style & typo cleanups- fix typos/spellos in docproc.c and Makefile- add a little whitespace {while, switch} (coding style)- use NULL instead of 0 for pointer testingSigned-off-by: Rand
docproc: style & typo cleanups- fix typos/spellos in docproc.c and Makefile- add a little whitespace {while, switch} (coding style)- use NULL instead of 0 for pointer testingSigned-off-by: Randy Dunlap <randy.dunlap@oracle.com>Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Fix occurrences of "the the "Signed-off-by: Michael Opdenacker <michael@free-electrons.com>Signed-off-by: Adrian Bunk <bunk@stusta.de>
kbuild: scripts/basic/fixdep segfault on pathological string-o-deathbuild scripts: fixdep blows segfault on string CONFIG_MODULE seenThe string "CONFIG_MODULE" appearing anywhere in a source file
kbuild: scripts/basic/fixdep segfault on pathological string-o-deathbuild scripts: fixdep blows segfault on string CONFIG_MODULE seenThe string "CONFIG_MODULE" appearing anywhere in a source file causesfixdep to segfault. This string appeared in the wild in the currentmISDN sources (I think they meant CONFIG_MODULES). But it shouldn'tsegfault (esp as CONFIG_MODULE appeared in a quoted string).Signed-off-by: Andy Green <andy@warmcat.com>Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
[PATCH] kbuild: fix dependency generationCommit 2e3646e51b2d6415549b310655df63e7e0d7a080 changed the way thesplit config tree is built, but failed to also adjust fixdep accordingly- if changing a
[PATCH] kbuild: fix dependency generationCommit 2e3646e51b2d6415549b310655df63e7e0d7a080 changed the way thesplit config tree is built, but failed to also adjust fixdep accordingly- if changing a config option from or to m, files referencing therespective CONFIG_..._MODULE (but not the corresponding CONFIG_...)didn't get rebuilt.The problem is that trisate symbol are represent with three differentsymbols: SYMBOL=n => no symbol defined SYMBOL=y => CONFIG_SYMBOL defined to '1' SYMBOL=m => CONFIG_SYMBOL_MODULE defined to '1'But conf_split_config do not distingush between the =y and =m case, soonly the =y case is honoured.This is fixed in fixdep so when a CONFIG symbol with _MODULE is found weskip that part and only look for the CONFIG_SYMBOL version.Signed-off-by: Jan Beulich <jbeulich@novell.com>Signed-off-by: Sam Ravnborg <sam@ravnborg.org>Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
[PATCH] update some docbook commentsCorrect a few comments in kernel-doc Doc and source files.(akpm: note: the patch removes a non-ascii character and might have to beapplied by hand..)Signed-
[PATCH] update some docbook commentsCorrect a few comments in kernel-doc Doc and source files.(akpm: note: the patch removes a non-ascii character and might have to beapplied by hand..)Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>Signed-off-by: Andrew Morton <akpm@osdl.org>Signed-off-by: Linus Torvalds <torvalds@osdl.org>
[PATCH] docbook: fix segfault in docproc.cAdds a missing exit, if the file that should be parsed couldn't be opened.Without it crashes with a segfault, cause the filedescriptor is accessedeven if
[PATCH] docbook: fix segfault in docproc.cAdds a missing exit, if the file that should be parsed couldn't be opened.Without it crashes with a segfault, cause the filedescriptor is accessedeven if the file could not be opened.Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>Acked-by: Randy Dunlap <rdunlap@xenotime.net>Signed-off-by: Andrew Morton <akpm@osdl.org>Signed-off-by: Linus Torvalds <torvalds@osdl.org>
kconfig: integrate split config into silentoldconfigNow that kconfig can load multiple configurations, it becomes simple tointegrate the split config step, by simply comparing the new .config file
kconfig: integrate split config into silentoldconfigNow that kconfig can load multiple configurations, it becomes simple tointegrate the split config step, by simply comparing the new .config file withthe old auto.conf (and then saving the new auto.conf). A nice side effect isthat this saves a bit of disk space and cache, as no data needs to be readfrom or saved into the splitted config files anymore (e.g. include/config isnow 648KB instead of 5.2MB).Signed-off-by: Roman Zippel <zippel@linux-m68k.org>Signed-off-by: Andrew Morton <akpm@osdl.org>Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
kbuild: consolidate command line escapingWhile the recent change to also escape # symbols when storing C-filecompilation command lines was helpful, it should be in effect for allcommand lines, as
kbuild: consolidate command line escapingWhile the recent change to also escape # symbols when storing C-filecompilation command lines was helpful, it should be in effect for allcommand lines, as much as the dollar escaping should be in effect forC-source compilation commands. Additionally, for better readability andmaintenance, consolidating all the escaping (single quotes, dollars,and now sharps) was also desirable.Signed-Off-By: Jan Beulich <jbeulich@novell.com>Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
kbuild: escape '#' in .target.cmd filesCommandlines are contained in the .<target>.cmd files and in case theycontain a '#' char make see this as start of comment.Teach fixdep to escape the '#' ch
kbuild: escape '#' in .target.cmd filesCommandlines are contained in the .<target>.cmd files and in case theycontain a '#' char make see this as start of comment.Teach fixdep to escape the '#' char so make will assing the full commandline.Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Add some basic .gitignore filesThis still leaves driver and architecture-specific subdirectories alone,but gets rid of the bulk of the "generic" generated files that we shouldignore.Signed-off-
Add some basic .gitignore filesThis still leaves driver and architecture-specific subdirectories alone,but gets rid of the bulk of the "generic" generated files that we shouldignore.Signed-off-by: Linus Torvalds <torvalds@osdl.org>
[PATCH] Kill signed charsscripts/ is full of mismatches between char* params an signed char* arguments,and viceversa. gcc4 now complaints loud about this. Patch below deletes allthose 'signed'.
[PATCH] Kill signed charsscripts/ is full of mismatches between char* params an signed char* arguments,and viceversa. gcc4 now complaints loud about this. Patch below deletes allthose 'signed'.Signed-off-by: Andrew Morton <akpm@osdl.org>Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Linux-2.6.12-rc2Initial git repository build. I'm not bothering with the full history,even though we have it. We can create a separate "historical" gitarchive of that later if we want to, and in
Linux-2.6.12-rc2Initial git repository build. I'm not bothering with the full history,even though we have it. We can create a separate "historical" gitarchive of that later if we want to, and in the meantime it's about3.2GB when imported into git - space that would just make the earlygit days unnecessarily complicated, when we don't have a lot of goodinfrastructure for it.Let it rip!
1234