Linux 3.12
[linux/fpc-iii.git] / arch / um / kernel / config.c.in
blob972bf1659564fc640fe630771dc2d82e6af315b5
1 /*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <init.h>
10 static __initdata const char *config[] = {
11 "CONFIG"
14 static int __init print_config(char *line, int *add)
16 int i;
17 for (i = 0; i < sizeof(config)/sizeof(config[0]); i++)
18 printf("%s", config[i]);
19 exit(0);
22 __uml_setup("--showconfig", print_config,
23 "--showconfig\n"
24 " Prints the config file that this UML binary was generated from.\n\n"