blob: 972bf1659564fc640fe630771dc2d82e6af315b5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
6#include <stdio.h>
7#include <stdlib.h>
Al Viro37185b32012-10-08 03:27:32 +01008#include <init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
WANG Congdc717682009-03-31 15:23:40 -070010static __initdata const char *config[] = {
11"CONFIG"
12};
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14static int __init print_config(char *line, int *add)
15{
WANG Congdc717682009-03-31 15:23:40 -070016 int i;
17 for (i = 0; i < sizeof(config)/sizeof(config[0]); i++)
18 printf("%s", config[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 exit(0);
20}
21
22__uml_setup("--showconfig", print_config,
23"--showconfig\n"
24" Prints the config file that this UML binary was generated from.\n\n"
25);
26