Kconfig 550 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: GPL-2.0
  2. if EYEQ
  3. choice
  4. prompt "Mobileye EyeQ SoC selection"
  5. default MACH_EYEQ5
  6. help
  7. Select Mobileye EyeQ MIPS SoC type.
  8. config MACH_EYEQ5
  9. bool "Mobileye EyeQ5 SoC"
  10. config MACH_EYEQ6H
  11. bool "Mobileye EyeQ6H SoC"
  12. endchoice
  13. config FIT_IMAGE_FDT_EPM5
  14. bool "Include FDT for Mobileye EyeQ5 development platforms"
  15. depends on MACH_EYEQ5
  16. default n
  17. help
  18. Enable this to include the FDT for the EyeQ5 development platforms
  19. from Mobileye in the FIT kernel image.
  20. This requires u-boot on the platform.
  21. endif