On Sat, Sep 26, 2009 at 11:22 AM, Peter Stuge peter@stuge.se wrote:
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?
Shouldn't it be #if CONFIG_MULTIBOOT instead of #ifdef?
--8<-- Config.in: config MULTIBOOT bool "Multiboot header support" -->8--
configs/defconfig:# CONFIG_MULTIBOOT is not set
Should a bool ever be unset?
My understanding is that CONFIG_MULTIBOOT = n when you see that message. If it isn't defined at all it doesn't appear in the config file.
Thanks, Myles