Re: [Etherboot-developers] Re: failed
Brought to you by:
marty_connor,
stefanhajnoczi
|
From: Ken Y. <ke...@nl...> - 2000-11-03 05:23:57
|
>For Etherboot Developers, in etherboot.h is the following conditional: > >#ifdef IMAGE_MENU >extern char *motd[RFC1533_VENDOR_NUMOFMOTD]; >... > >Is it possible to do MOTD without IMAGE_MENU? If so, it might make sense >to put the *motd buffer under another conditional, or possibly define >IMAGEMENU "with extreme prejudice" :-) Or I could do this fix, which would forestall this error in future: Change all #ifdef MOTD to #if defined(MOTD) && defined(IMAGE_MENU). |