diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-02-21 20:45:24 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-02-21 20:45:24 +0000 |
commit | 14aca56112cac8d89ef8ea472dc74736419c594f (patch) | |
tree | 937042c1547638c462f20c49d1b07f54a5a7e956 /target/linux/cns21xx/patches-3.8/003-arm-introduce-fa-platform.patch | |
parent | 6f8f9a35d5414ee8080ef40821d8b22aaf5262e2 (diff) |
cns21xx: add support for 3.8
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35737 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cns21xx/patches-3.8/003-arm-introduce-fa-platform.patch')
-rw-r--r-- | target/linux/cns21xx/patches-3.8/003-arm-introduce-fa-platform.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/target/linux/cns21xx/patches-3.8/003-arm-introduce-fa-platform.patch b/target/linux/cns21xx/patches-3.8/003-arm-introduce-fa-platform.patch new file mode 100644 index 000000000..5f7907c04 --- /dev/null +++ b/target/linux/cns21xx/patches-3.8/003-arm-introduce-fa-platform.patch @@ -0,0 +1,56 @@ +--- a/arch/arm/Kconfig ++++ b/arch/arm/Kconfig +@@ -1133,10 +1133,15 @@ source "arch/arm/mach-w90x900/Kconfig" + + source "arch/arm/mach-zynq/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 +@@ -202,6 +202,7 @@ machine-$(CONFIG_ARCH_SUNXI) += sunxi + plat-$(CONFIG_ARCH_OMAP) += omap + plat-$(CONFIG_ARCH_S3C64XX) += samsung + plat-$(CONFIG_PLAT_IOP) += iop ++plat-$(CONFIG_PLAT_FA) += fa + plat-$(CONFIG_PLAT_ORION) += orion + plat-$(CONFIG_PLAT_PXA) += pxa + plat-$(CONFIG_PLAT_S3C24XX) += s3c24xx samsung +@@ -311,7 +312,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 |