When compiling MIPS kernel 2.2.1 (that's what I do this whole week :)) downloaded from decstation.unix-ag.org I get following error:
make -C arch/mips/sni make[1]: Entering directory `/usr/src/kernel-source-2.2.1/arch/mips/sni' mipsel-linux-gcc -D__KERNEL__ -I/usr/src/kernel-source-2.2.1/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -G 0 -mno-abicalls -fno-pic -mcpu=r4600 -mips2 -pipe -c int-handler.S -o int-handler.o mipsel-linux-gcc -D__KERNEL__ -I/usr/src/kernel-source-2.2.1/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -G 0 -mno-abicalls -fno-pic -mcpu=r4600 -mips2 -pipe -c -o io.o io.c io.c:43: warning: `sni_readb' defined but not used io.c:57: warning: `sni_readw' defined but not used io.c:71: warning: `sni_readl' defined but not used io.c:85: warning: `sni_writeb' defined but not used io.c:96: warning: `sni_writew' defined but not used io.c:107: warning: `sni_writel' defined but not used io.c:118: warning: `sni_memset_io' defined but not used io.c:139: warning: `sni_memcpy_fromio' defined but not used io.c:161: warning: `sni_memcpy_toio' defined but not used mipsel-linux-gcc -D__KERNEL__ -I/usr/src/kernel-source-2.2.1/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -G 0 -mno-abicalls -fno-pic -mcpu=r4600 -mips2 -pipe -c -o pci.o pci.c pci.c: In function `sni_rm200_pcibios_fixup': pci.c:41: warning: implicit declaration of function `set_cp0_config' pci.c:41: `CONF_CM_CMASK' undeclared (first use this function) pci.c:41: (Each undeclared identifier is reported only once pci.c:41: for each function it appears in.) pci.c:41: `CONF_CM_CACHABLE_NO_WA' undeclared (first use this function) make[1]: *** [pci.o] Error 1 make[1]: Leaving directory `/usr/src/kernel-source-2.2.1/arch/mips/sni' make: *** [_dir_arch/mips/sni] Error 2 I've tried several packages of egcs, gcc and binutils and all of them do this. Does anybody know what to do? Radim P.S: If I fail, where is the place for binary kernel packages? ftp.linux.sgi.com?

