mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
qca: ipq40xx: Enabling Makefile and Kconfig
Change-Id: I468af254928078268bc2720580f76ea854f36cc4 Signed-off-by: Akila N <akilan@codeaurora.org>
This commit is contained in:
parent
5e8042b958
commit
722c00bbdf
5 changed files with 30 additions and 0 deletions
|
|
@ -421,6 +421,14 @@ config ARCH_EXYNOS
|
|||
select DM_GPIO
|
||||
select DM_KEYBOARD
|
||||
|
||||
config ARCH_IPQ40xx
|
||||
bool "QCA, IPQ40xx"
|
||||
select DM
|
||||
select DM_SERIAL
|
||||
select CPU_V7
|
||||
select SYS_GENERIC_BOARD
|
||||
select QCA_COMMON
|
||||
|
||||
config ARCH_IPQ807x
|
||||
bool "QCA, IPQ807x"
|
||||
select DM
|
||||
|
|
@ -816,6 +824,7 @@ source "board/gumstix/pepper/Kconfig"
|
|||
source "board/h2200/Kconfig"
|
||||
source "board/hisilicon/hikey/Kconfig"
|
||||
source "board/imx31_phycore/Kconfig"
|
||||
source "board/ipq40xx/Kconfig"
|
||||
source "board/ipq807x/Kconfig"
|
||||
source "board/isee/igep0033/Kconfig"
|
||||
source "board/maxbcm/Kconfig"
|
||||
|
|
|
|||
|
|
@ -49,6 +49,7 @@ obj-$(CONFIG_OMAP34XX) += omap3/
|
|||
obj-$(CONFIG_OMAP44XX) += omap4/
|
||||
obj-$(CONFIG_OMAP54XX) += omap5/
|
||||
obj-$(CONFIG_QCA_COMMON) += qca/common/
|
||||
obj-$(CONFIG_ARCH_IPQ40xx) += qca/ipq40xx/
|
||||
obj-$(CONFIG_RMOBILE) += rmobile/
|
||||
obj-$(if $(filter stv0991,$(SOC)),y) += stv0991/
|
||||
obj-$(CONFIG_ARCH_SUNXI) += sunxi/
|
||||
|
|
|
|||
|
|
@ -22,6 +22,8 @@ dtb-$(CONFIG_EXYNOS5) += exynos5250-arndale.dtb \
|
|||
|
||||
dtb-$(CONFIG_ARCH_IPQ807x) += ipq807x-hk01.dtb
|
||||
|
||||
dtb-$(CONFIG_ARCH_IPQ40xx) += ipq40xx-dk01.dtb
|
||||
|
||||
dtb-$(CONFIG_ARCH_ROCKCHIP) += \
|
||||
rk3288-firefly.dtb \
|
||||
rk3288-jerry.dtb \
|
||||
|
|
|
|||
15
board/ipq40xx/Kconfig
Normal file
15
board/ipq40xx/Kconfig
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
if ARCH_IPQ40xx
|
||||
|
||||
config SYS_CPU
|
||||
default "ipq40xx"
|
||||
|
||||
config SYS_BOARD
|
||||
default "ipq40xx"
|
||||
|
||||
config SYS_VENDOR
|
||||
default "qca"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "ipq40xx"
|
||||
|
||||
endif
|
||||
3
board/qca/ipq40xx/Makefile
Normal file
3
board/qca/ipq40xx/Makefile
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
obj-y := ipq40xx.o
|
||||
|
||||
Loading…
Add table
Reference in a new issue