summaryrefslogtreecommitdiff
path: root/scripts/genksyms/parse.h_shipped
AgeCommit message (Collapse)Author
2007-10-12kbuild: apply genksyms changesSam Ravnborg
This patch updates the _shipped files for genksyms. See previous patch for actual functional changes. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
2005-12-26kbuild: Create _shipped files for genksymsSam Ravnborg
Generate _shipped files so the genksyms change in previous commit is enabled. The files are generated with latest versions of the tools: bison (GNU Bison) 2.0 flex version 2.5.4 GNU gperf 3.0.1 Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
2003-02-19kbuild: Fix genksyms __typeof__ handlingKai Germaschewski
genksyms used to fail generating a checksum for a symbol which was defined using __typeof__. This minimal patch fixes it to recognize the case which occurs in the kernel, it's not a complete correct typeof handling, but it serves our needs.
2003-02-19kbuild: [PATCH] put genksyms in scripts dirKai Germaschewski
This puts genksyms into scripts/genksyms/. genksyms used to be maintained externally, though the only possible user was the kernel build. Moving it into the kernel sources makes it easier to keep it uptodate, like for example updating it to generate linker scripts directly instead of postprocessing the generated header file fragments with sed, as we do currently. Also, genksyms does not handle __typeof__, which needs to be fixed since some of the exported symbol in the kernel are defined using __typeof__. (Rusty Russell/me)