Blackfin arch: reclaim a few bytes from the end of our init section

Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
This commit is contained in:
Mike Frysinger 2007-10-30 12:00:02 +08:00 committed by Bryan Wu
parent 64e5c51291
commit 36208059c1
1 changed files with 7 additions and 2 deletions

View File

@ -172,9 +172,14 @@ SECTIONS
__ebss_b_l1 = .;
}
___init_end = LOADADDR(.data_b_l1) + SIZEOF(.data_b_l1);
/* Force trailing alignment of our init section so that when we
* free our init memory, we don't leave behind a partial page.
*/
. = LOADADDR(.data_b_l1) + SIZEOF(.data_b_l1);
. = ALIGN(PAGE_SIZE);
___init_end = .;
.bss LOADADDR(.data_b_l1) + SIZEOF(.data_b_l1) :
.bss :
{
. = ALIGN(4);
___bss_start = .;