Config.in 887 B

123456789101112131415161718192021222324252627282930313233
  1. #comment "Linux kernel options"
  2. if BR2_KERNEL_LINUX
  3. config BR2_PACKAGE_LINUX_KCONFIG
  4. string ".config file"
  5. depends on BR2_PACKAGE_LINUX
  6. default ""
  7. help
  8. kernel's .config to use to build a kernel for the target.
  9. If the above setting is empty, you can change the default
  10. board-imposed value by passing LINUX26_KCONFIG=<path> to
  11. make.
  12. config BR2_PACKAGE_LINUX_FORMAT
  13. string "kernel binary format"
  14. depends on BR2_PACKAGE_LINUX
  15. default ""
  16. help
  17. kernel binary format.
  18. Popular values include:
  19. - bzImage
  20. - zImage
  21. and other, architecture dependant formats.
  22. Note that the default format is supposed to be set by your
  23. board-description, if any.
  24. i386 and compatible default to bzImage if nothing was given
  25. above.
  26. If the above setting is empty, you can change the default
  27. board-imposed value by passing LINUX26_FORMAT=<string> to
  28. make.
  29. endif