On Sun, 24 Jul 2005 23:27:22 +0200, Adrian Bunk <[EMAIL PROTECTED]> wrote: > >You should edit init/Kconfig to disallow CONFIG_CLEAN_COMPILE=n, since >any errors you see with CONFIG_BROKEN=y aren't interesting.
Straight over the top of my head yesterday :) Is the following what you had in mind? (current script does retry if BROKEN) [EMAIL PROTECTED]:/opt/linux$ diff -u linux-2.6.13-rc3-git6/init/Kconfig~ linux-2.6.13-rc3-git6/init/Kconfig --- linux-2.6.13-rc3-git6/init/Kconfig~ 2005-07-25 08:23:04.000000000 +1000 +++ linux-2.6.13-rc3-git6/init/Kconfig 2005-07-26 10:25:59.000000000 +1000 @@ -42,7 +42,7 @@ config BROKEN bool - depends on !CLEAN_COMPILE + depends on !CLEAN_COMPILE && 0 default y config BROKEN_ON_SMP - - - results first run: ------------------ Here http://scatter.mine.nu/test/scripts/counterror-2005-07-26.gz is post-processing script (work in progress) extracts errors and non-deprecated warnings, linked to first triggering .config like so: [EMAIL PROTECTED]:/opt/linux$ cat error-error-list trial1/run-004:arch/i386/mach-es7000/es7000.h trial1/run-004:arch/i386/mach-es7000/es7000plat.c trial1/run-009:drivers/char/ipmi/ipmi_msghandler.c trial2/run-082:drivers/mtd/maps/nettel.c trial3/run-018:drivers/pnp/pnpbios/rsparser.c trial2/run-044:include/asm-i386/mach-default/mach_apic.h trial1/run-008:include/asm-i386/mach-visws/do_timer.h trial2/run-081:ipc/shm.c trial1/run-015:net/rxrpc/main.c trial2/run-027:sound/core/memalloc.c then extracts compiler messages: [EMAIL PROTECTED]:/opt/linux$ head error-error-report |cut -c-78 trial1/run-004:arch/i386/mach-es7000/es7000.h:82: error: field `id' has incomp trial1/run-004:arch/i386/mach-es7000/es7000.h:88: error: field `Header' has in trial1/run-004:arch/i386/mach-es7000/es7000plat.c: In function `parse_unisys_o trial1/run-004:arch/i386/mach-es7000/es7000plat.c:154: error: `es7000_rename_g trial1/run-004:arch/i386/mach-es7000/es7000plat.c: In function `find_unisys_ac trial1/run-004:arch/i386/mach-es7000/es7000plat.c:168: warning: implicit decla trial1/run-004:arch/i386/mach-es7000/es7000plat.c:170: error: dereferencing po trial1/run-004:arch/i386/mach-es7000/es7000plat.c:172: error: dereferencing po trial1/run-004:arch/i386/mach-es7000/es7000plat.c:175: warning: implicit decla trial1/run-004:arch/i386/mach-es7000/es7000plat.c:175: error: invalid applicat ^^^^^^^^^^^^^^\ --> link to .config producing the error / warning: [EMAIL PROTECTED]:/opt/linux$ head trial1/run-004-config # # Automatically generated make config: don't edit # Linux kernel version: 2.6.13-rc3 # Tue Jul 19 04:31:27 2005 # CONFIG_X86=y CONFIG_MMU=y CONFIG_UID16=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y Current compile run is with linux-2.6.13-rc3-git6 Datastore is denormalised flat text. Query language: grep :) Thanks, Grant. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/