GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / um / kernel / config.c.in
blobb7a43feafde773aeb4998675be30074ee5613c32
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"