Re: [coreboot] a question about reset16.lds

2011-02-05 Thread Patrick Georgi
Am 05.02.2011 05:55, schrieb ali hagigat: Lets consider the lines of that linker script again! First the location counter is set to 0xfff0 and the output .reset section starts from VMA=0xfff0. I think we both agree on that so far. But after .reset section, .=15 forces the location

Re: [coreboot] a question about reset16.lds

2011-02-04 Thread ali hagigat
Thank you for the reply. Lets consider the lines of that linker script again! First the location counter is set to 0xfff0 and the output .reset section starts from VMA=0xfff0. I think we both agree on that so far. But after .reset section, .=15 forces the location counter to be 15!! It

[coreboot] a question about reset16.lds

2011-02-01 Thread ali hagigat
SECTIONS { /* Trigger an error if I have an unuseable start address */ _bogus = ASSERT(_start = 0x, _start too low. Please decrease CONFIG_ROM_IMAGE_SIZE); _ROMTOP = 0xfff0; . = _ROMTOP; .reset . : { *(.reset) . =

Re: [coreboot] a question about reset16.lds

2011-02-01 Thread Patrick Georgi
Am 01.02.2011 12:46, schrieb ali hagigat: SECTIONS { /* Trigger an error if I have an unuseable start address */ _bogus = ASSERT(_start= 0x, _start too low. Please decrease CONFIG_ROM_IMAGE_SIZE); _ROMTOP = 0xfff0; . = _ROMTOP; .reset . : {