
On Thu, Dec 22, 2016 at 04:07:58AM +0800, Icenowy Zheng wrote:
Lichee Pi One is a low-cost Allwinner A13 based development board, with two SD slots, a USB2.0 OTG port, a USB2.0 host port (or onboard Wi-Fi card), optional headers for LCD and CSI and two GPIO headers.
Add support for this board.
Signed-off-by: Icenowy Zheng icenowy@aosc.xyz
Can't that be squashed together with the first patch?
configs/LicheePi_One_defconfig | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 configs/LicheePi_One_defconfig
diff --git a/configs/LicheePi_One_defconfig b/configs/LicheePi_One_defconfig new file mode 100644 index 0000000000..ba8894c9ce --- /dev/null +++ b/configs/LicheePi_One_defconfig @@ -0,0 +1,26 @@ +CONFIG_ARM=y +CONFIG_ARCH_SUNXI=y +CONFIG_SPL_I2C_SUPPORT=y +CONFIG_MACH_SUN5I=y +CONFIG_DRAM_CLK=408 +CONFIG_DRAM_MBUS_CLK=204 +CONFIG_DRAM_ZQ=121 +CONFIG_DRAM_ODT_EN=y +CONFIG_MMC_SUNXI_SLOT_EXTRA=2 +CONFIG_USB0_VBUS_PIN="PC12" +CONFIG_USB0_VBUS_DET="PG1" +CONFIG_USB0_ID_DET="PG2" +CONFIG_AXP_GPIO=y +# CONFIG_VIDEO is not set +CONFIG_DEFAULT_DEVICE_TREE="sun5i-a13-licheepi-one" +# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set +CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=2" +CONFIG_CONSOLE_MUX=y
Why do you need CONSOLE_MUX?
Maxime