diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-08-30 19:15:58 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-08-30 19:15:58 +0000 |
commit | 6b482c872b94abf6cee27ba406c0d66fb56009fd (patch) | |
tree | 839eb4d5e65ee27ef40522b26466c1601cbca3d5 /target/linux/ramips/patches-2.6.30 | |
parent | 051c44e0c5886d3e9a0f994221bfc84765cf3cfc (diff) | |
download | upstream-6b482c872b94abf6cee27ba406c0d66fb56009fd.tar.gz upstream-6b482c872b94abf6cee27ba406c0d66fb56009fd.tar.bz2 upstream-6b482c872b94abf6cee27ba406c0d66fb56009fd.zip |
share common INTC code
SVN-Revision: 17440
Diffstat (limited to 'target/linux/ramips/patches-2.6.30')
-rw-r--r-- | target/linux/ramips/patches-2.6.30/100-mips-ralink-core.patch | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/target/linux/ramips/patches-2.6.30/100-mips-ralink-core.patch b/target/linux/ramips/patches-2.6.30/100-mips-ralink-core.patch index 71d11c47a5..a3e5e45654 100644 --- a/target/linux/ramips/patches-2.6.30/100-mips-ralink-core.patch +++ b/target/linux/ramips/patches-2.6.30/100-mips-ralink-core.patch @@ -1,21 +1,25 @@ --- a/arch/mips/Makefile +++ b/arch/mips/Makefile -@@ -603,6 +603,20 @@ else +@@ -603,6 +603,24 @@ else load-$(CONFIG_CPU_CAVIUM_OCTEON) += 0xffffffff81100000 endif +# ++# Ralink SoC common stuff ++# ++core-$(CONFIG_MIPS_RALINK) += arch/mips/ralink/common/ ++cflags-$(CONFIG_MIPS_RALINK) += -I$(srctree)/arch/mips/include/asm/mach-ralink ++ ++# +# Ralink RT288x +# +core-$(CONFIG_RALINK_RT288X) += arch/mips/ralink/rt288x/ -+cflags-$(CONFIG_RALINK_RT288X) += -I$(srctree)/arch/mips/include/asm/mach-ralink +load-$(CONFIG_RALINK_RT288X) += 0xffffffff88000000 + +# +# Ralink RT305x +# +core-$(CONFIG_RALINK_RT305X) += arch/mips/ralink/rt305x/ -+cflags-$(CONFIG_RALINK_RT305X) += -I$(srctree)/arch/mips/include/asm/mach-ralink +load-$(CONFIG_RALINK_RT305X) += 0xffffffff80000000 + # temporary until string.h is fixed |