Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 138777
b: refs/heads/master
c: 704439d
h: refs/heads/master
i:
  138775: 8655e5c
v: v3
  • Loading branch information
Jeremy Fitzhardinge committed Mar 17, 2009
1 parent 16d5a71 commit c80149e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0b1c723d0bd199300a1a2de57a46000d17577498
refs/heads/master: 704439ddf9f8ff1fc8c6d8abaac4bc4c95697e39
8 changes: 5 additions & 3 deletions trunk/arch/x86/kernel/vmlinux_32.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -189,16 +189,18 @@ SECTIONS
*(.bss)
. = ALIGN(4);
__bss_stop = .;
}

.brk : AT(ADDR(.brk) - LOAD_OFFSET) {
. = ALIGN(PAGE_SIZE);
__brk_base = . ;
. += 64 * 1024 ; /* 64k slop space */
. += 64 * 1024 ; /* 64k alignment slop space */
*(.brk_reservation) /* areas brk users have reserved */
__brk_limit = . ;

_end = . ;
}

_end = . ;

/* Sections to be discarded */
/DISCARD/ : {
*(.exitcall.exit)
Expand Down
4 changes: 3 additions & 1 deletion trunk/arch/x86/kernel/vmlinux_64.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,12 @@ SECTIONS
*(.bss.page_aligned)
*(.bss)
__bss_stop = .;
}

.brk : AT(ADDR(.brk) - LOAD_OFFSET) {
. = ALIGN(PAGE_SIZE);
__brk_base = . ;
. += 64 * 1024; /* 64k slop space */
. += 64 * 1024 ; /* 64k alignment slop space */
*(.brk_reservation) /* areas brk users have reserved */
__brk_limit = . ;
}
Expand Down

0 comments on commit c80149e

Please sign in to comment.