diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-03-18 12:07:48 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-03-18 12:07:48 +0000 |
commit | 6dbe40f7d4ce68a4e64c0da681a8cad9ac49d739 (patch) | |
tree | e3fea4c659b19fe188afe68c3b6f463b4d401ce3 /target/linux/cns21xx/patches-3.2/003-arm-introduce-fa-platform.patch | |
parent | 45d5b2419007534f161c98d31ef66b676ef031b2 (diff) | |
download | upstream-6dbe40f7d4ce68a4e64c0da681a8cad9ac49d739.tar.gz upstream-6dbe40f7d4ce68a4e64c0da681a8cad9ac49d739.tar.bz2 upstream-6dbe40f7d4ce68a4e64c0da681a8cad9ac49d739.zip |
cns21xx: add support for 3.2
SVN-Revision: 30971
Diffstat (limited to 'target/linux/cns21xx/patches-3.2/003-arm-introduce-fa-platform.patch')
-rw-r--r-- | target/linux/cns21xx/patches-3.2/003-arm-introduce-fa-platform.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/target/linux/cns21xx/patches-3.2/003-arm-introduce-fa-platform.patch b/target/linux/cns21xx/patches-3.2/003-arm-introduce-fa-platform.patch new file mode 100644 index 0000000000..f29838cc8f --- /dev/null +++ b/target/linux/cns21xx/patches-3.2/003-arm-introduce-fa-platform.patch @@ -0,0 +1,56 @@ +--- a/arch/arm/Kconfig ++++ b/arch/arm/Kconfig +@@ -1100,10 +1100,15 @@ source "arch/arm/mach-vt8500/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 +@@ -206,6 +206,7 @@ plat-$(CONFIG_ARCH_OMAP) := omap + plat-$(CONFIG_ARCH_S3C64XX) := samsung + plat-$(CONFIG_ARCH_TCC_926) := tcc + plat-$(CONFIG_ARCH_ZYNQ) := versatile ++plat-$(CONFIG_PLAT_FA) := fa + plat-$(CONFIG_PLAT_IOP) := iop + plat-$(CONFIG_PLAT_NOMADIK) := nomadik + plat-$(CONFIG_PLAT_ORION) := orion +@@ -304,7 +305,7 @@ define archhelp + echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' + echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)' + echo ' uImage - U-Boot wrapped zImage' +- echo ' bootpImage - Combined zImage and initial RAM disk' ++ echo ' bootpImage - Combined zImage and initial RAM disk' + echo ' (supply initrd image via make variable INITRD=<path>)' + echo ' dtbs - Build device tree blobs for enabled boards' + echo ' install - Install uncompressed kernel' +--- /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 |