diff options
author | John Crispin <blogic@openwrt.org> | 2015-02-18 09:49:38 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-02-18 09:49:38 +0000 |
commit | f7a684bcfce2978566da0532684beef134a0ce0a (patch) | |
tree | dc2961fbb7a5ab244c6b4edc3ac2e660c0204870 /target | |
parent | eb2b29b2e5b8be03b537f0c9250c86e65f29cc91 (diff) | |
download | upstream-f7a684bcfce2978566da0532684beef134a0ce0a.tar.gz upstream-f7a684bcfce2978566da0532684beef134a0ce0a.tar.bz2 upstream-f7a684bcfce2978566da0532684beef134a0ce0a.zip |
au1000: fix 3.18 and set it as default
Thanks to Bruno Randolf for testing and Manuel Lauss for providing a fix.
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44487 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/au1000/Makefile | 2 | ||||
-rw-r--r-- | target/linux/au1000/patches/005-fix-cpu-clk.patch | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/target/linux/au1000/Makefile b/target/linux/au1000/Makefile index 0964561cd3..7438e9b6df 100644 --- a/target/linux/au1000/Makefile +++ b/target/linux/au1000/Makefile @@ -13,7 +13,7 @@ FEATURES:=squashfs usb pci SUBTARGETS=au1500 au1550 MAINTAINER:=Florian Fainelli <florian@openwrt.org> -KERNEL_PATCHVER:=3.14 +KERNEL_PATCHVER:=3.18 include $(INCLUDE_DIR)/target.mk DEFAULT_PACKAGES += wpad-mini yamonenv diff --git a/target/linux/au1000/patches/005-fix-cpu-clk.patch b/target/linux/au1000/patches/005-fix-cpu-clk.patch new file mode 100644 index 0000000000..b925638817 --- /dev/null +++ b/target/linux/au1000/patches/005-fix-cpu-clk.patch @@ -0,0 +1,11 @@ +--- a/arch/mips/alchemy/common/clock.c ++++ b/arch/mips/alchemy/common/clock.c +@@ -128,6 +128,8 @@ + t = 396000000; + else { + t = alchemy_rdsys(AU1000_SYS_CPUPLL) & 0x7f; ++ if (alchemy_get_cputype() != ALCHEMY_CPU_AU1300) ++ t &= 0x3f; + t *= parent_rate; + } + |