hi! while compiling OS in PB -----------------------cut------------------- Total ROM size: 026d8c68 ( 40733800) Error: Ram start overlaps rom binary Rom end : 0x828d8c68 Ram start: 0x82029000 NK physfirst 80200000 physlast 828d8c68 ulRAMFree 82029000 Fatal error hit, exiting... makeimg: FATAL ERROR: Command returned non-zero exit code 1 (dec). makeimg: FATAL ERROR: Command returned non-zero exit code 1 (dec). -----------------------cut------------------- what correct ram/rom params need config.bib for 128mb flash device? or any other file... thnx!
correct config for 128MB flash
Hi Alex!, I had encountered the same problem. Check the lines in your config.bib file that read: --->Rom end : 0x828d8c68 --->Ram start: 0x82029000<-- This address is less than the ROM end address! | | | NK.BIN | | | |---------------|<- 0x82029000 = Start of free RAM |---------------|<- 0x828d8c68 = End of NK.BIN | | | Free RAM | Look for the following entry at the beginning: RAM 82000000 01FE0000 RAM Change this to a value greater than 0x828d8c68. You could use the following: RAM 83000000 01FE0000 RAM This will allow the image to be safely before the RAM start address. Cheers! Gautam
What would be the correct config for a mini2440 with 1GB? and, if i change the config.bib i can build win ce 6 but i cannot upload it to the device. Any hints on that?