configs.c (2d8ad8719591fa803b0d589ed057fa46f49b7155) configs.c (626a0312514a121a90b4478cbde111ffc6826ae2)
1/*
2 * kernel/configs.c
3 * Echo the kernel .config file used to build the kernel
4 *
5 * Copyright (C) 2002 Khalid Aziz <khalid_aziz@hp.com>
6 * Copyright (C) 2002 Randy Dunlap <rdunlap@xenotime.net>
7 * Copyright (C) 2002 Al Stone <ahs3@fc.hp.com>
8 * Copyright (C) 2002 Hewlett-Packard Company

--- 78 unchanged lines hidden (view full) ---

87static void __exit ikconfig_cleanup(void)
88{
89 remove_proc_entry("config.gz", NULL);
90}
91
92module_init(ikconfig_init);
93module_exit(ikconfig_cleanup);
94
1/*
2 * kernel/configs.c
3 * Echo the kernel .config file used to build the kernel
4 *
5 * Copyright (C) 2002 Khalid Aziz <khalid_aziz@hp.com>
6 * Copyright (C) 2002 Randy Dunlap <rdunlap@xenotime.net>
7 * Copyright (C) 2002 Al Stone <ahs3@fc.hp.com>
8 * Copyright (C) 2002 Hewlett-Packard Company

--- 78 unchanged lines hidden (view full) ---

87static void __exit ikconfig_cleanup(void)
88{
89 remove_proc_entry("config.gz", NULL);
90}
91
92module_init(ikconfig_init);
93module_exit(ikconfig_cleanup);
94
95#endif /* CONFIG_IKCONFIG_PROC */
96
95MODULE_LICENSE("GPL");
96MODULE_AUTHOR("Randy Dunlap");
97MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel");
97MODULE_LICENSE("GPL");
98MODULE_AUTHOR("Randy Dunlap");
99MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel");
98
99#endif /* CONFIG_IKCONFIG_PROC */