This patchset does the following: - introduce arch/mips/Kbuild - use -Werror on all core-y files of the mips kernel - introduce a distributed way to specify platform definitions - refactor a few Makefiles - clean up cleaning Ralf asked in private mail if I could try to implement a working varient of a suggestion I made some time ago. The idea was to move platform specific definitions to dedicated platfrom files. This is implmented in the third patch. The idea is to move the platform definitions from arch/mips/Makefile to arch/mips/<platform>/Platfrom The content of this file is used in arch/mips/Makefile and arch/mips/Kbuild. On top of this is a few patches that refactor the boot and boot/compressed Makefiles so they are more kbuild conformant. This beautify the output when we build a kernel. Wu Zhangjin have pointed out a few bugs in the first variants of the patches that hit the mailing list - thanks! Patches will follow. Note: I tried to test a little with bigsur_defconfig but get_user() is buggy. Or at least my gcc thinks that first argument may be used uninitialized. I think mips needs to fix the 64 bit variant of get_user(). I took a quick look but ran away. Sam Sam Ravnborg (6): mips: introduce arch/mips/Kbuild mips: add -Werror to arch/mips/Kbuild mips: introduce support for Platform definitions mips: refactor arch/mips/boot/Makefile mips: refactor arch/mips/boot/compressed/Makefile mips: clean up arch/mips/Makefile arch/mips/Kbuild | 15 +++++++++ arch/mips/Kbuild.platforms | 6 ++++ arch/mips/Makefile | 57 +++++++++--------------------------- arch/mips/ar7/Platform | 7 ++++ arch/mips/boot/Makefile | 49 ++++++++++++++---------------- arch/mips/boot/compressed/Makefile | 54 ++++++++++++++++++---------------- arch/mips/kernel/Makefile | 2 - arch/mips/math-emu/Makefile | 1 - arch/mips/mm/Makefile | 2 - 9 files changed, 94 insertions(+), 99 deletions(-)