Forum Discussion
Altera_Forum
Honored Contributor
21 years agoStill UBoot ing...
Well thanks to everyone one and all my UBoot seems to be up and running fine however I'm still having a little bit of grief getting the final bits working (think I'm gonna write an app note o...
Altera_Forum
Honored Contributor
21 years agoOk ...
> nios2-elf-objcopy -O binary sample.elf sample.bin > > This generates from an approx 1000 byte image file (nios2-elf-size) > an 8Meg binary file. (Why is this?). objcopy is copying sections .entry, .exceptions and .text ... and filling the hole between .entry and .exceptions: 0081_8000 ... 0081_801F : .entry 0081_8020 ... 0100_001F : fill (about 8 MB) 0100_0020 ... 0100_0267: .exceptions 0100_0268 ... 0100_0357: .text You need to locate your .entry code to SDRAM -- then things should work ok. Regards, --Scott