Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
v3.5.6
 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
10static __initdata const char *config[] = {
11"CONFIG"
12};
13
14static int __init print_config(char *line, int *add)
15{
16	int i;
17	for (i = 0; i < sizeof(config)/sizeof(config[0]); i++)
18		printf("%s", config[i]);
19	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
v4.10.11
 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
10static __initdata const char *config[] = {
11"CONFIG"
12};
13
14static int __init print_config(char *line, int *add)
15{
16	int i;
17	for (i = 0; i < sizeof(config)/sizeof(config[0]); i++)
18		printf("%s", config[i]);
19	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