Pager Mapsize updated in cinfo template only instead of cinfo.c

This commit is contained in:
Amit Mahajan
2009-11-03 01:34:51 +05:30
parent a41a8e0d93
commit 2b1adb059d
7 changed files with 66 additions and 64 deletions

View File

@@ -19,8 +19,11 @@ SECTIONS
. = ALIGN(4K);
.data : AT (ADDR(.data) - offset) { *(.data) }
.bss : AT (ADDR(.bss) - offset) { *(.bss) }
. += 0x1000;
. = ALIGN(8);
__stack = .;
.bss : AT (ADDR(.bss) - offset)
{
*(.bss)
. += 0x1000;
. = ALIGN(8);
__stack = .;
}
}