Message ID | 20200101143520.14218-1-linus.walleij@linaro.org (mailing list archive) |
---|---|
State | Mainlined |
Commit | 19fd44d0833535b03e31ff21d78da9b776ca3341 |
Headers | show |
Series | ARM: defconfig: gemini: Update defconfig | expand |
Hello: This patch was applied to soc/soc.git (refs/heads/for-next). On Wed, 1 Jan 2020 15:35:20 +0100 you wrote: > This updates the gemini defconfig with Kconfig shuffling and > some of the features activated in new upstream drivers and newly > supported devices: > > - Move some symbols around due to Kconfig alterations, > this affects CONFIG_PREEMPT, CONFIG_PCI, CONFIG_CMA, > CONFIG_BINFMT_MISC, CONFIG_PARTITION_ADVANCED. > - Add RedBoot partition parsing, as all the Gemini > devices use some RedBoot derivative and store their > flash partition tables in this format. > - Enable bridge and VLAN filtering: a majority of the > Gemini devices have some kind of DSA chip for ethernet > bridging/routing. > - Enable CONFIG_NET_DSA_REALTEK_SMI as this DSA router > chip is found in the Gemini-based products. This makes > explicit selection of CONFIG_REALTEK_PHY unnecessary > so that goes away. > - Enable CONFIG_TUN since Gemini userspace often make > use of the TUN interface for network services. > - Enable MARVELL_PHY as Marvell PHY connectors are often > found in Gemini systems. > - Enable basic 802.11 libraries as many Gemini systems > have wireless PCI cards. > > [...] Here is a summary with links: - ARM: defconfig: gemini: Update defconfig https://git.kernel.org/soc/soc/c/19fd44d0833535b03e31ff21d78da9b776ca3341 You are awesome, thank you!
diff --git a/arch/arm/configs/gemini_defconfig b/arch/arm/configs/gemini_defconfig index f012e81a2fe4..d2d5f1cf815f 100644 --- a/arch/arm/configs/gemini_defconfig +++ b/arch/arm/configs/gemini_defconfig @@ -2,28 +2,36 @@ CONFIG_SYSVIPC=y CONFIG_NO_HZ_IDLE=y CONFIG_HIGH_RES_TIMERS=y +CONFIG_PREEMPT=y CONFIG_BSD_PROCESS_ACCT=y CONFIG_USER_NS=y CONFIG_RELAY=y CONFIG_BLK_DEV_INITRD=y -CONFIG_PARTITION_ADVANCED=y CONFIG_ARCH_MULTI_V4=y # CONFIG_ARCH_MULTI_V7 is not set CONFIG_ARCH_GEMINI=y -CONFIG_PCI=y -CONFIG_PREEMPT=y CONFIG_AEABI=y CONFIG_HIGHMEM=y -CONFIG_CMA=y CONFIG_CMDLINE="console=ttyS0,115200n8" CONFIG_KEXEC=y -CONFIG_BINFMT_MISC=y CONFIG_PM=y +CONFIG_PARTITION_ADVANCED=y +CONFIG_BINFMT_MISC=y +CONFIG_CMA=y CONFIG_NET=y CONFIG_UNIX=y CONFIG_INET=y +CONFIG_BRIDGE=y +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_NET_DSA=y +CONFIG_VLAN_8021Q=y +CONFIG_CFG80211=y +CONFIG_CFG80211_WEXT=y +CONFIG_MAC80211=y +CONFIG_PCI=y CONFIG_DEVTMPFS=y CONFIG_MTD=y +CONFIG_MTD_REDBOOT_PARTS=y CONFIG_MTD_BLOCK=y CONFIG_MTD_CFI=y CONFIG_MTD_JEDECPROBE=y @@ -40,10 +48,12 @@ CONFIG_BLK_DEV_SD=y CONFIG_ATA=y CONFIG_PATA_FTIDE010=y CONFIG_NETDEVICES=y +CONFIG_TUN=y +CONFIG_NET_DSA_REALTEK_SMI=y CONFIG_GEMINI_ETHERNET=y CONFIG_MDIO_BITBANG=y CONFIG_MDIO_GPIO=y -CONFIG_REALTEK_PHY=y +CONFIG_MARVELL_PHY=y CONFIG_INPUT_EVDEV=y CONFIG_KEYBOARD_GPIO=y # CONFIG_INPUT_MOUSE is not set @@ -69,7 +79,9 @@ CONFIG_DRM_TVE200=y CONFIG_LOGO=y CONFIG_USB=y CONFIG_USB_MON=y +CONFIG_USB_EHCI_HCD=y CONFIG_USB_FOTG210_HCD=y +CONFIG_USB_UHCI_HCD=y CONFIG_USB_STORAGE=y CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y
This updates the gemini defconfig with Kconfig shuffling and some of the features activated in new upstream drivers and newly supported devices: - Move some symbols around due to Kconfig alterations, this affects CONFIG_PREEMPT, CONFIG_PCI, CONFIG_CMA, CONFIG_BINFMT_MISC, CONFIG_PARTITION_ADVANCED. - Add RedBoot partition parsing, as all the Gemini devices use some RedBoot derivative and store their flash partition tables in this format. - Enable bridge and VLAN filtering: a majority of the Gemini devices have some kind of DSA chip for ethernet bridging/routing. - Enable CONFIG_NET_DSA_REALTEK_SMI as this DSA router chip is found in the Gemini-based products. This makes explicit selection of CONFIG_REALTEK_PHY unnecessary so that goes away. - Enable CONFIG_TUN since Gemini userspace often make use of the TUN interface for network services. - Enable MARVELL_PHY as Marvell PHY connectors are often found in Gemini systems. - Enable basic 802.11 libraries as many Gemini systems have wireless PCI cards. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> --- ARM/SoC folks: please apply this on wherever ARM defconfig patches goes. --- arch/arm/configs/gemini_defconfig | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-)