ar7: bump to 3.14

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 43553
This commit is contained in:
John Crispin
2014-12-08 06:15:03 +00:00
parent aba92ec05e
commit 7c7964e10d
17 changed files with 958 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
--- a/arch/mips/ar7/memory.c
+++ b/arch/mips/ar7/memory.c
@@ -66,5 +66,11 @@ void __init prom_meminit(void)
void __init prom_free_prom_memory(void)
{
- /* Nothing to free */
+ /* adapted from arch/mips/txx9/generic/setup.c */
+ unsigned long saddr = PHYS_OFFSET + PAGE_SIZE;
+ unsigned long eaddr = __pa_symbol(&_text);
+
+ /* free memory between prom-record and kernel _text base */
+ if (saddr < eaddr)
+ free_init_pages("prom memory", saddr, eaddr);
}