From be8df3704ce86b784a2e3a3d04c62dbb5cc9eff6 Mon Sep 17 00:00:00 2001 From: Maxime Coquelin Date: Sat, 17 Oct 2015 18:36:10 +0200 Subject: ARM: config: Enable GPIO Led driver in stm32_defconfig Acked-by: Linus Walleij Acked-by: Patrice Chotard Signed-off-by: Maxime Coquelin --- arch/arm/configs/stm32_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/stm32_defconfig b/arch/arm/configs/stm32_defconfig index ec5250547d14..1e5ec2a0e4cf 100644 --- a/arch/arm/configs/stm32_defconfig +++ b/arch/arm/configs/stm32_defconfig @@ -52,6 +52,7 @@ CONFIG_SERIAL_STM32_CONSOLE=y # CONFIG_USB_SUPPORT is not set CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y +CONFIG_LEDS_GPIO=y CONFIG_LEDS_TRIGGERS=y CONFIG_LEDS_TRIGGER_HEARTBEAT=y CONFIG_DMADEVICES=y -- cgit v1.2.2 From 9fe5bf92c30a89631eb1fafe0d9b18e2ba331ebb Mon Sep 17 00:00:00 2001 From: Lee Jones Date: Tue, 16 Feb 2016 15:17:00 +0100 Subject: ARM: configs: Add new config fragment to change RAM start point Rather than duplicate a defconfig for each difference between platforms, we can choose to pick a basic defconfig and manipulate it at run-time using config fragments. Here we're adding a new fragment to over-ride the RAM start point to 0x0. Cc: Arnd Bergmann Signed-off-by: Lee Jones Acked-by: Arnd Bergmann Signed-off-by: Maxime Coquelin --- arch/arm/configs/dram_0x00000000.config | 1 + 1 file changed, 1 insertion(+) create mode 100644 arch/arm/configs/dram_0x00000000.config diff --git a/arch/arm/configs/dram_0x00000000.config b/arch/arm/configs/dram_0x00000000.config new file mode 100644 index 000000000000..db96dcb420ce --- /dev/null +++ b/arch/arm/configs/dram_0x00000000.config @@ -0,0 +1 @@ +CONFIG_DRAM_BASE=0x00000000 -- cgit v1.2.2