diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-12-30 17:19:16 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-12-30 17:19:16 +0000 |
commit | 0d46434b606a53fc835cbb70cad4bf03e99f613d (patch) | |
tree | 4b78a3202e08ca31ea33039589d221a2e19cbcf7 /target/linux/cns21xx/patches-2.6.37/003-arm-introduce-fa-platform.patch | |
parent | 6c025a3167120ae374ba45a23d6d9067081cee49 (diff) | |
download | upstream-0d46434b606a53fc835cbb70cad4bf03e99f613d.tar.gz upstream-0d46434b606a53fc835cbb70cad4bf03e99f613d.tar.bz2 upstream-0d46434b606a53fc835cbb70cad4bf03e99f613d.zip |
cns21xx: add initial support for the Cavium CNS21xx SoC
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24859 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cns21xx/patches-2.6.37/003-arm-introduce-fa-platform.patch')
-rw-r--r-- | target/linux/cns21xx/patches-2.6.37/003-arm-introduce-fa-platform.patch | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/target/linux/cns21xx/patches-2.6.37/003-arm-introduce-fa-platform.patch b/target/linux/cns21xx/patches-2.6.37/003-arm-introduce-fa-platform.patch new file mode 100644 index 0000000000..1f81140555 --- /dev/null +++ b/target/linux/cns21xx/patches-2.6.37/003-arm-introduce-fa-platform.patch @@ -0,0 +1,47 @@ +--- a/arch/arm/Kconfig ++++ b/arch/arm/Kconfig +@@ -975,10 +975,15 @@ source "arch/arm/mach-vexpress/Kconfig" + + source "arch/arm/mach-w90x900/Kconfig" + ++source "arch/arm/plat-fa/Kconfig" ++ + # Definitions to make life easier + config ARCH_ACORN + bool + ++config PLAT_FA ++ bool ++ + config PLAT_IOP + bool + select GENERIC_CLOCKEVENTS +--- a/arch/arm/Makefile ++++ b/arch/arm/Makefile +@@ -204,6 +204,7 @@ plat-$(CONFIG_ARCH_OMAP) := omap + plat-$(CONFIG_ARCH_S3C64XX) := samsung + plat-$(CONFIG_ARCH_STMP3XXX) := stmp3xxx + plat-$(CONFIG_ARCH_TCC_926) := tcc ++plat-$(CONFIG_PLAT_FA) := fa + plat-$(CONFIG_PLAT_IOP) := iop + plat-$(CONFIG_PLAT_NOMADIK) := nomadik + plat-$(CONFIG_PLAT_ORION) := orion +--- /dev/null ++++ b/arch/arm/plat-fa/Makefile +@@ -0,0 +1,10 @@ ++# ++# Makefile for the linux kernel. ++# ++ ++obj-y := ++ ++obj-m := ++obj-n := ++obj- := ++ +--- /dev/null ++++ b/arch/arm/plat-fa/Kconfig +@@ -0,0 +1,3 @@ ++if PLAT_FA ++ ++endif |