29.08.2013, 22:42, "Sebastian Andrzej Siewior" <bigeasy@xxxxxxxxxxxxx>: > Dear RT folks! > > I'm pleased to announce the v3.10.10-rt7 patch set. > > Changes since v3.10.10-rt6 > - hwlat compiles on 32bit (again). Reported by Fernando Lopez-Lezcano. > - bcache is disabled due to usage of anon semaphores. Anyone interrested > in using it? > - "genirq affinity callback" are fixed. Reported by Joe Korty. There are > two nics using this feature. > - Paul Gortmaker's swait rename patch has been included. sparc does not have CONFIG_EARLY_PRINTK option. So early-printk-consolidate.patch breaks compilation: arch/sparc/built-in.o: In function `setup_arch': (.init.text+0x15e4): undefined reference to `early_console' arch/sparc/built-in.o: In function `setup_arch': (.init.text+0x15ec): undefined reference to `early_console' The below addition fixes that. Signed-off-by: Kirill Tkhai <tkhai@xxxxxxxxx> --- arch/sparc/Kconfig | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index 9ac9f16..6787bd3 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig @@ -521,6 +521,10 @@ menu "Executable file formats" source "fs/Kconfig.binfmt" +config EARLY_PRINTK + bool + default y + config COMPAT bool depends on SPARC64 -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html