* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5
@ 2015-12-17 5:24 Simon Horman
2015-12-17 5:24 ` [PATCH 1/7] ARM: shmobile: defconfig: Enable CONFIG_PRINTK_TIME Simon Horman
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
Hi Olof, Hi Kevin, Hi Arnd,
Please consider these Renesas ARM based SoC defconfig updates for v4.5.
The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:
Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig-for-v4.5
for you to fetch changes up to 3bf834e17c8736537a08abfa509ae3a8c8446b08:
ARM: multi_v7_defconfig: Enable frame buffer console for armadillo800eva (2015-12-14 14:13:18 +0900)
----------------------------------------------------------------
Renesas ARM Based SoC Defconfig Updates for v4.5
* multi_v7_defconfig and shmobile_defconfig:
- Enable frame buffer console for armadillo800eva
- Enable missing Renesas ARM support based on DTSes
- Drop useless CONFIG_USB_RCAR_PHY=y
* shmobile_defconfig only:
- Enable CONFIG_PRINTK_TIME
----------------------------------------------------------------
Geert Uytterhoeven (7):
ARM: shmobile: defconfig: Enable CONFIG_PRINTK_TIME
ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y
ARM: shmobile: defconfig: Enable missing support based on DTSes
ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva
ARM: multi_v7_defconfig: Drop useless CONFIG_USB_RCAR_PHY=y
ARM: multi_v7_defconfig: Enable missing Renesas ARM support based on DTSes
ARM: multi_v7_defconfig: Enable frame buffer console for armadillo800eva
arch/arm/configs/multi_v7_defconfig | 9 ++++++++-
arch/arm/configs/shmobile_defconfig | 12 ++++++++++--
2 files changed, 18 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/7] ARM: shmobile: defconfig: Enable CONFIG_PRINTK_TIME
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
@ 2015-12-17 5:24 ` Simon Horman
2015-12-17 5:24 ` [PATCH 2/7] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Simon Horman
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
From: Geert Uytterhoeven <geert+renesas@glider.be>
Enable timestamps for kernel log output to improve debugging.
You can always use "dmesg -t" to strip the timestamps.
Don't specify CONFIG_LOG_BUF_SHIFT=16 while we're at it. There's a
reason the default in Kconfig is higher ;-)
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/shmobile_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 3aef019c0de7..e51f7a79c730 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -2,7 +2,6 @@ CONFIG_SYSVIPC=y
CONFIG_NO_HZ=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
-CONFIG_LOG_BUF_SHIFT=16
CONFIG_BLK_DEV_INITRD=y
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL_SYSCALL=y
@@ -199,6 +198,7 @@ CONFIG_NFS_V4_1=y
CONFIG_ROOT_NFS=y
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_ISO8859_1=y
+CONFIG_PRINTK_TIME=y
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
# CONFIG_ARM_UNWIND is not set
--
2.1.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/7] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
2015-12-17 5:24 ` [PATCH 1/7] ARM: shmobile: defconfig: Enable CONFIG_PRINTK_TIME Simon Horman
@ 2015-12-17 5:24 ` Simon Horman
2015-12-17 5:24 ` [PATCH 3/7] ARM: shmobile: defconfig: Enable missing support based on DTSes Simon Horman
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
From: Geert Uytterhoeven <geert+renesas@glider.be>
The Renesas R-Car (Gen1) USB PHY driver (which is being removed) does
not support DT, and is thus useless in a Renesas ARM multi-platform
kernel.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/shmobile_defconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index e51f7a79c730..91233ed27578 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -162,7 +162,6 @@ CONFIG_USB_EHCI_HCD=y
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_R8A66597_HCD=y
CONFIG_USB_RENESAS_USBHS=y
-CONFIG_USB_RCAR_PHY=y
CONFIG_USB_GADGET=y
CONFIG_USB_RENESAS_USBHS_UDC=y
CONFIG_USB_ETH=y
--
2.1.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/7] ARM: shmobile: defconfig: Enable missing support based on DTSes
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
2015-12-17 5:24 ` [PATCH 1/7] ARM: shmobile: defconfig: Enable CONFIG_PRINTK_TIME Simon Horman
2015-12-17 5:24 ` [PATCH 2/7] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Simon Horman
@ 2015-12-17 5:24 ` Simon Horman
2015-12-17 5:24 ` [PATCH 4/7] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva Simon Horman
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
From: Geert Uytterhoeven <geert+renesas@glider.be>
Enable all missing support, extracted from the various Renesas ARM DTSes
using linux-config-from-dt.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/shmobile_defconfig | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 91233ed27578..d2259952879d 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -52,6 +52,8 @@ CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
+CONFIG_CAN=y
+CONFIG_CAN_RCAR=y
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
@@ -98,6 +100,7 @@ CONFIG_SERIAL_SH_SCI=y
CONFIG_SERIAL_SH_SCI_NR_UARTS=20
CONFIG_SERIAL_SH_SCI_CONSOLE=y
CONFIG_I2C_CHARDEV=y
+CONFIG_I2C_EMEV2=y
CONFIG_I2C_GPIO=y
CONFIG_I2C_RIIC=y
CONFIG_I2C_SH_MOBILE=y
@@ -134,6 +137,7 @@ CONFIG_SOC_CAMERA=y
CONFIG_SOC_CAMERA_PLATFORM=y
CONFIG_VIDEO_RCAR_VIN=y
CONFIG_V4L_MEM2MEM_DRIVERS=y
+CONFIG_VIDEO_RENESAS_JPU=y
CONFIG_VIDEO_RENESAS_VSP1=y
# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
CONFIG_VIDEO_ADV7180=y
@@ -175,9 +179,11 @@ CONFIG_RTC_CLASS=y
CONFIG_RTC_DRV_RS5C372=y
CONFIG_RTC_DRV_S35390A=y
CONFIG_RTC_DRV_RX8581=y
+CONFIG_RTC_DRV_DA9063=y
CONFIG_DMADEVICES=y
CONFIG_SH_DMAE=y
CONFIG_RCAR_DMAC=y
+CONFIG_RENESAS_USB_DMAC=y
# CONFIG_IOMMU_SUPPORT is not set
CONFIG_IIO=y
CONFIG_AK8975=y
--
2.1.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 4/7] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
` (2 preceding siblings ...)
2015-12-17 5:24 ` [PATCH 3/7] ARM: shmobile: defconfig: Enable missing support based on DTSes Simon Horman
@ 2015-12-17 5:24 ` Simon Horman
2015-12-17 5:24 ` [PATCH 5/7] ARM: multi_v7_defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Simon Horman
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
From: Geert Uytterhoeven <geert+renesas@glider.be>
Enabling the frame buffer device on armadillo800eva requires the board
staging code.
Also enable the frame buffer, so you will actually see output during
boot.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/shmobile_defconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index d2259952879d..5bc4f537f9da 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -153,6 +153,7 @@ CONFIG_FB_SH_MOBILE_MERAM=y
# CONFIG_BACKLIGHT_GENERIC is not set
CONFIG_BACKLIGHT_PWM=y
CONFIG_BACKLIGHT_AS3711=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_SOUND=y
CONFIG_SND=y
CONFIG_SND_SOC=y
@@ -184,6 +185,8 @@ CONFIG_DMADEVICES=y
CONFIG_SH_DMAE=y
CONFIG_RCAR_DMAC=y
CONFIG_RENESAS_USB_DMAC=y
+CONFIG_STAGING=y
+CONFIG_STAGING_BOARD=y
# CONFIG_IOMMU_SUPPORT is not set
CONFIG_IIO=y
CONFIG_AK8975=y
--
2.1.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 5/7] ARM: multi_v7_defconfig: Drop useless CONFIG_USB_RCAR_PHY=y
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
` (3 preceding siblings ...)
2015-12-17 5:24 ` [PATCH 4/7] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva Simon Horman
@ 2015-12-17 5:24 ` Simon Horman
2015-12-17 5:24 ` [PATCH 6/7] ARM: multi_v7_defconfig: Enable missing Renesas ARM support based on DTSes Simon Horman
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
From: Geert Uytterhoeven <geert+renesas@glider.be>
The Renesas R-Car (Gen1) USB PHY driver (which is being removed) does
not support DT, and is thus useless in a generic ARM multi-platform
kernel.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/multi_v7_defconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 69a22fdb52a5..a3d65beacf7c 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -545,7 +545,6 @@ CONFIG_USB_GPIO_VBUS=y
CONFIG_USB_ISP1301=y
CONFIG_USB_MSM_OTG=m
CONFIG_USB_MXS_PHY=y
-CONFIG_USB_RCAR_PHY=m
CONFIG_USB_GADGET=y
CONFIG_USB_RENESAS_USBHS_UDC=m
CONFIG_USB_ETH=m
--
2.1.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 6/7] ARM: multi_v7_defconfig: Enable missing Renesas ARM support based on DTSes
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
` (4 preceding siblings ...)
2015-12-17 5:24 ` [PATCH 5/7] ARM: multi_v7_defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Simon Horman
@ 2015-12-17 5:24 ` Simon Horman
2015-12-17 5:24 ` [PATCH 7/7] ARM: multi_v7_defconfig: Enable frame buffer console for armadillo800eva Simon Horman
2015-12-22 19:48 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Olof Johansson
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
From: Geert Uytterhoeven <geert+renesas@glider.be>
Enable all missing support, extracted from the various Renesas ARM DTSes
using linux-config-from-dt.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/multi_v7_defconfig | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index a3d65beacf7c..32d1573d3cce 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -152,6 +152,7 @@ CONFIG_CAN_RAW=y
CONFIG_CAN_BCM=y
CONFIG_CAN_DEV=y
CONFIG_CAN_AT91=m
+CONFIG_CAN_RCAR=m
CONFIG_CAN_XILINXCAN=y
CONFIG_CAN_MCP251X=y
CONFIG_CAN_SUN4I=y
@@ -304,6 +305,7 @@ CONFIG_I2C_AT91=m
CONFIG_I2C_CADENCE=y
CONFIG_I2C_DESIGNWARE_PLATFORM=y
CONFIG_I2C_DIGICOLOR=m
+CONFIG_I2C_EMEV2=m
CONFIG_I2C_GPIO=m
CONFIG_I2C_EXYNOS5=y
CONFIG_I2C_MV64XXX=y
@@ -384,6 +386,7 @@ CONFIG_EXYNOS_THERMAL=m
CONFIG_ST_THERMAL_SYSCFG=y
CONFIG_ST_THERMAL_MEMMAP=y
CONFIG_WATCHDOG=y
+CONFIG_DA9063_WATCHDOG=m
CONFIG_XILINX_WATCHDOG=y
CONFIG_ARM_SP805_WATCHDOG=y
CONFIG_ORION_WATCHDOG=y
@@ -400,6 +403,7 @@ CONFIG_MFD_AXP20X=y
CONFIG_MFD_CROS_EC=y
CONFIG_MFD_CROS_EC_I2C=m
CONFIG_MFD_CROS_EC_SPI=y
+CONFIG_MFD_DA9063=m
CONFIG_MFD_MAX14577=y
CONFIG_MFD_MAX77686=y
CONFIG_MFD_MAX77693=y
@@ -457,6 +461,7 @@ CONFIG_SOC_CAMERA=m
CONFIG_SOC_CAMERA_PLATFORM=m
CONFIG_VIDEO_RCAR_VIN=m
CONFIG_V4L_MEM2MEM_DRIVERS=y
+CONFIG_VIDEO_RENESAS_JPU=m
CONFIG_VIDEO_RENESAS_VSP1=m
# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
CONFIG_VIDEO_ADV7180=m
@@ -611,6 +616,7 @@ CONFIG_RTC_DRV_TPS65910=y
CONFIG_RTC_DRV_S35390A=m
CONFIG_RTC_DRV_RX8581=m
CONFIG_RTC_DRV_EM3027=y
+CONFIG_RTC_DRV_DA9063=m
CONFIG_RTC_DRV_DIGICOLOR=m
CONFIG_RTC_DRV_S5M=m
CONFIG_RTC_DRV_S3C=m
@@ -630,6 +636,7 @@ CONFIG_MV_XOR=y
CONFIG_TEGRA20_APB_DMA=y
CONFIG_SH_DMAE=y
CONFIG_RCAR_DMAC=y
+CONFIG_RENESAS_USB_DMAC=m
CONFIG_STE_DMA40=y
CONFIG_SIRF_DMA=y
CONFIG_TI_EDMA=y
--
2.1.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 7/7] ARM: multi_v7_defconfig: Enable frame buffer console for armadillo800eva
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
` (5 preceding siblings ...)
2015-12-17 5:24 ` [PATCH 6/7] ARM: multi_v7_defconfig: Enable missing Renesas ARM support based on DTSes Simon Horman
@ 2015-12-17 5:24 ` Simon Horman
2015-12-22 19:48 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Olof Johansson
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-12-17 5:24 UTC (permalink / raw)
To: linux-arm-kernel
From: Geert Uytterhoeven <geert+renesas@glider.be>
Enabling the frame buffer device on r8a7740/armadillo800eva requires the
board staging code.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/multi_v7_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 32d1573d3cce..31be07178cc6 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -663,6 +663,7 @@ CONFIG_QCOM_SMD_RPM=y
CONFIG_QCOM_SMEM=y
CONFIG_COMMON_CLK_QCOM=y
CONFIG_CHROME_PLATFORMS=y
+CONFIG_STAGING_BOARD=y
CONFIG_CROS_EC_CHARDEV=m
CONFIG_COMMON_CLK_MAX77686=y
CONFIG_COMMON_CLK_MAX77802=m
--
2.1.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
` (6 preceding siblings ...)
2015-12-17 5:24 ` [PATCH 7/7] ARM: multi_v7_defconfig: Enable frame buffer console for armadillo800eva Simon Horman
@ 2015-12-22 19:48 ` Olof Johansson
7 siblings, 0 replies; 9+ messages in thread
From: Olof Johansson @ 2015-12-22 19:48 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Dec 17, 2015 at 02:24:46PM +0900, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
>
> Please consider these Renesas ARM based SoC defconfig updates for v4.5.
>
>
> The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:
>
> Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig-for-v4.5
>
> for you to fetch changes up to 3bf834e17c8736537a08abfa509ae3a8c8446b08:
>
> ARM: multi_v7_defconfig: Enable frame buffer console for armadillo800eva (2015-12-14 14:13:18 +0900)
Merged, thanks!
-Olof
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-12-22 19:48 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-17 5:24 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Simon Horman
2015-12-17 5:24 ` [PATCH 1/7] ARM: shmobile: defconfig: Enable CONFIG_PRINTK_TIME Simon Horman
2015-12-17 5:24 ` [PATCH 2/7] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Simon Horman
2015-12-17 5:24 ` [PATCH 3/7] ARM: shmobile: defconfig: Enable missing support based on DTSes Simon Horman
2015-12-17 5:24 ` [PATCH 4/7] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva Simon Horman
2015-12-17 5:24 ` [PATCH 5/7] ARM: multi_v7_defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Simon Horman
2015-12-17 5:24 ` [PATCH 6/7] ARM: multi_v7_defconfig: Enable missing Renesas ARM support based on DTSes Simon Horman
2015-12-17 5:24 ` [PATCH 7/7] ARM: multi_v7_defconfig: Enable frame buffer console for armadillo800eva Simon Horman
2015-12-22 19:48 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.5 Olof Johansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).