Hello all I try to port new board (MIPS 4KEC processor) to latest version of linux-mips kernel. I have question regarding Kconfig and adding new board. In arch/mips/Kconfig I add next lines: config MIPS_VGCA_EVA bool "Support for VGCA-Eva board" select SYS_SUPPORTS_BIG_ENDIAN help This enables support for the VGCA-EVA board. and in arch/mips/Makefile I add next lines: core-$(MIPS_VGCA_EVA) += arch/mips/vgca-eva/ cflags-$(MIPS_VGCA_EVA) += -Iinclude/asm-mips/vgca-eva load-$(MIPS_VGCA_EVA) += 0xffffffff80100000 But when I try to build kernel with: make menuconfig ---> choose VGCA-Eva board make arch=mips V=1 CROSS_COMPILE=mips-linux- it stop forever. When I try to choose some other board it work nice. Any comment? Thanks a lot. Best regards Mile