|
From: Oskar L. <os...@os...> - 2003-10-29 16:10:24
|
On Wednesday, October 29, 2003 at 10:39, fad wrote: First of all, my Makefile-patch is UNTESTED. I don't think anyone has tested the files it produces besides Wayne. I haven't even tested it myself, but I am going to do it this week. > How do I check out 2.26 from the cvs?, Looking at the branches in the CVS there's no such release... So it has to be done manually for each source file (using checkout -r) AFAIK. > There are only two references to that in the file /boot/bootstartbios.c, > and one is commented out. Where does _memcmp hide? _memcmp hides in boot_rom/2bBootLibrary.c. I think you can replace it with memcmp (built-in or defined elsewhere), but you'll need this declaration in boot_rom/2bload.h: int memcmp(const void *pb, const void *pb1, size_t n); Regards, Oskar |