config.c.in 505 B

1234567891011121314151617181920212223242526
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  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. );