ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / kernel / config.c.in
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include "init.h"
9
10 static __initdata char *config = "
11 CONFIG
12 ";
13
14 static int __init print_config(char *line, int *add)
15 {
16         printf("%s", config);
17         exit(0);
18 }
19
20 __uml_setup("--showconfig", print_config,
21 "--showconfig\n"
22 "    Prints the config file that this UML binary was generated from.\n\n"
23 );
24
25 /*
26  * Overrides for Emacs so that we follow Linus's tabbing style.
27  * Emacs will notice this stuff at the end of the file and automatically
28  * adjust the settings for this buffer only.  This must remain at the end
29  * of the file.
30  * ---------------------------------------------------------------------------
31  * Local variables:
32  * c-file-style: "linux"
33  * End:
34  */