Kconfig 439 B

123456789101112131415161718192021222324
  1. if TARGET_AM335X_EVM
  2. config SYS_BOARD
  3. default "am335x"
  4. config SYS_VENDOR
  5. default "ti"
  6. config SYS_SOC
  7. default "am33xx"
  8. config SYS_CONFIG_NAME
  9. default "am335x_evm"
  10. config NOR
  11. bool "Support for NOR flash"
  12. help
  13. The AM335x SoC supports having a NOR flash connected to the GPMC.
  14. In practice this is seen as a NOR flash module connected to the
  15. "memory cape" for the BeagleBone family.
  16. source "board/ti/common/Kconfig"
  17. endif