In include/asm-mips/mach-ip22/cpu-feature-overrides.h, the macro to use R4K-style caches is mis-spelt. This will cause IP22 systems to panic early in the boot due to no cache style being defined. The attached patch corrects this. --Kumba -- Gentoo/MIPS Team Lead Gentoo Foundation Board of Trustees "Such is oft the course of deeds that move the wheels of the world: small hands do them because they must, while the eyes of the great are elsewhere." --Elrond
--- include/asm-mips/mach-ip22/cpu-feature-overrides.h.orig 2006-01-23 13:18:24.000000000 -0500 +++ include/asm-mips/mach-ip22/cpu-feature-overrides.h 2006-01-23 13:18:53.000000000 -0500 @@ -13,7 +13,7 @@ */ #define cpu_has_tlb 1 #define cpu_has_4kex 1 -#define cpu_has_4kcache 1 +#define cpu_has_4k_cache 1 #define cpu_has_fpu 1 #define cpu_has_32fpr 1 #define cpu_has_counter 1