-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: stm32: create dedicated kconfig for STM32 machine
Create a dedicated Kconfig file in mach-stm32/ and move existing stm32 configs inside. Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com>
- Loading branch information
Alexandre TORGUE
committed
Mar 24, 2017
1 parent
c1ae3cf
commit bcb84fb
Showing
2 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
config ARCH_STM32 | ||
bool "STMicrolectronics STM32" | ||
depends on ARM_SINGLE_ARMV7M | ||
select ARCH_HAS_RESET_CONTROLLER | ||
select ARMV7M_SYSTICK | ||
select CLKSRC_STM32 | ||
select PINCTRL | ||
select RESET_CONTROLLER | ||
select STM32_EXTI | ||
help | ||
Support for STMicroelectronics STM32 processors. | ||
|
||
config MACH_STM32F429 | ||
bool "STMicrolectronics STM32F429" | ||
depends on ARCH_STM32 | ||
default y | ||
|
||
config MACH_STM32F746 | ||
bool "STMicrolectronics STM32F746" | ||
depends on ARCH_STM32 | ||
default y |