config.c.in 496 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <init.h>
  8. static __initdata const char *config[] = {
  9. "CONFIG"
  10. };
  11. static int __init print_config(char *line, int *add)
  12. {
  13. int i;
  14. for (i = 0; i < sizeof(config)/sizeof(config[0]); i++)
  15. printf("%s", config[i]);
  16. exit(0);
  17. }
  18. __uml_setup("--showconfig", print_config,
  19. "--showconfig\n"
  20. " Prints the config file that this UML binary was generated from.\n\n"
  21. );