diff options
author | Tom Rini | 2022-03-11 23:07:32 -0500 |
---|---|---|
committer | Tom Rini | 2022-03-18 12:48:17 -0400 |
commit | de0bb2ba54929eb74b626a16d358eb2ac268a487 (patch) | |
tree | 3dddfe3ad5cdfdd11c7608705b86964694084e32 /board | |
parent | 23cf6344c0ada76e9f201e6a037450b30f3ea59e (diff) |
Convert CONFIG_AT91SAM9G10EK et al to Kconfig
This converts the following to Kconfig:
CONFIG_AT91SAM9G10EK
CONFIG_AT91SAM9261EK
CONFIG_AT91SAM9G10
Cc: Eugen Hristev <eugen.hristev@microchip.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/atmel/at91sam9261ek/Kconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/board/atmel/at91sam9261ek/Kconfig b/board/atmel/at91sam9261ek/Kconfig index 2971b3cf9fb..6133efe23e8 100644 --- a/board/atmel/at91sam9261ek/Kconfig +++ b/board/atmel/at91sam9261ek/Kconfig @@ -9,4 +9,18 @@ config SYS_VENDOR config SYS_CONFIG_NAME default "at91sam9261ek" +choice + prompt "Evaluation board" + +config AT91SAM9G10EK + bool "Atmel AT91SAM9G10 EK" + +config AT91SAM9261EK + bool "Atmel AT91SAM9261 EK" + +config AT91SAM9G10 + bool "Atmel AT91SAM9G10 EK" + +endchoice + endif |