Kconfig.debug 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. config CMDLINE_BOOL
  2. bool "Built-in kernel command line"
  3. help
  4. For most platforms, it is firmware or second stage bootloader
  5. that by default specifies the kernel command line options.
  6. However, it might be necessary or advantageous to either override
  7. the default kernel command line or add a few extra options to it.
  8. For such cases, this option allows hardcoding command line options
  9. directly into the kernel.
  10. For that, choose 'Y' here and fill in the extra boot parameters
  11. in CONFIG_CMDLINE.
  12. The built-in options will be concatenated to the default command
  13. line if CMDLINE_FORCE is set to 'N'. Otherwise, the default
  14. command line will be ignored and replaced by the built-in string.
  15. config CMDLINE
  16. string "Built-in kernel command string"
  17. depends on CMDLINE_BOOL
  18. default ""
  19. help
  20. Supply command-line options at build time by entering them here.
  21. config CMDLINE_FORCE
  22. bool "Built-in command line overrides bootloader arguments"
  23. depends on CMDLINE_BOOL
  24. help
  25. Set this option to 'Y' to have the kernel ignore the bootloader
  26. or firmware command line. Instead, the built-in command line
  27. will be used exclusively.
  28. If you don't know what to do here, say N.
  29. config EARLY_PRINTK
  30. def_bool y