Nicolas Clapies <[EMAIL PROTECTED]> writes: > hello, > > I need help about this error : > > > Welcome to elfboot, the open sourced starter. > Febuary 2001, Eric Biederman. > Version 0.99 > > 81:fill_inbuf() - ram buffer:0x0000544c > 121:fill_inbuf() - nvram:0x00010000 block_count:0 > > safe_range start 0x10000 end 0x148e0 > safe_range Conflicts with range 4 > which starts at 0x5048 ends at 0x45048 > Bad memory range: [0x0000000000010000, 0x00000000000048e0) > > Bad ELF Image > > 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 > 02 00 03 00 01 00 00 00 40 07 01 00 34 00 00 00 > a0 50 12 00 00 00 00 00 34 00 20 00 04 00 28 00 > 0d 00 0a 00 > > I don't really know what it means, any idea ?
It is a little terse but it basically means that the ELF Image wants to load where linuxBIOS code or data is located. And the ELF loader detects this and so refuses to load (instead of getting corruption) and weird behavior. The easy trick is to change rambase in linuxBIOS, but other ways to keep one image from stomping on the other can work as well. Eric
