Peter Stuge wrote:
#ifdef CONFIG_MULTIBOOT /* Get the information from the multiboot tables, * if they exist */ get_multiboot_info(&lib_sysinfo); #endif
Can anyone say why this wouldn't work properly?
--8<-- Config.in: config MULTIBOOT bool "Multiboot header support" -->8--
configs/defconfig:# CONFIG_MULTIBOOT is not set
Should a bool ever be unset?
arch/i386/Makefile.inc:TARGETS-$(CONFIG_MULTIBOOT) += arch/i386/multiboot.o
Is the fix simply to set CONFIG_MULTIBOOT=n in defconfig?
//Peter