/arch/um/kernel/config.c.in

http://github.com/mirrors/linux · Autoconf · 26 lines · 18 code · 5 blank · 3 comment · 1 complexity · a7c7d2393b14b7013f382dc65cccd309 MD5 · raw file

  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. );