1c24c0bd1f7114c483e01b3dcf42b1e83d8b734c
[linux-2.6.git] / init / kerntypes.c
1 /*
2  * kerntypes.c
3  *
4  * Copyright (C) 2000 Tom Morano (tjm@sgi.com) and
5  *                    Matt D. Robinson (yakker@alacritech.com)
6  *
7  * Dummy module that includes headers for all kernel types of interest. 
8  * The kernel type information is used by the lcrash utility when 
9  * analyzing system crash dumps or the live system. Using the type 
10  * information for the running system, rather than kernel header files,
11  * makes for a more flexible and robust analysis tool.
12  *
13  * This source code is released under version 2 of the GNU GPL.
14  */
15
16 #include <linux/compile.h>
17 #include <linux/module.h>
18 #include <linux/mm.h>
19 #include <linux/config.h>
20 #include <linux/utsname.h>
21 #include <linux/dump.h>
22
23 #ifdef LINUX_COMPILE_VERSION_ID_TYPE
24 /* Define version type for version validation of dump and kerntypes */
25 LINUX_COMPILE_VERSION_ID_TYPE;
26 #endif
27
28 void
29 kerntypes_dummy(void)
30 {
31 }