Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 145671
b: refs/heads/master
c: 091e52c
h: refs/heads/master
i:
  145669: c1f3fa1
  145667: 77d0a82
  145663: 729b9a5
v: v3
  • Loading branch information
Sam Ravnborg authored and Ingo Molnar committed Apr 29, 2009
1 parent 92b3e45 commit 63f23fb
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 56 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: 9d16e78318f174fd4b07916a93e41749d5199267
refs/heads/master: 091e52c3551d3031343df24b573b770b4c6c72b6
32 changes: 27 additions & 5 deletions trunk/arch/x86/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,34 @@ SECTIONS
/* use another section data.init2, see PERCPU_VADDR() above */
#endif

/* BSS */
. = ALIGN(PAGE_SIZE);
.bss : AT(ADDR(.bss) - LOAD_OFFSET) {
__bss_start = .;
*(.bss.page_aligned)
*(.bss)
. = ALIGN(4);
__bss_stop = .;
}

#ifdef CONFIG_X86_32
# include "vmlinux_32.lds.S"
#else
# include "vmlinux_64.lds.S"
#endif
. = ALIGN(PAGE_SIZE);
.brk : AT(ADDR(.brk) - LOAD_OFFSET) {
__brk_base = .;
. += 64 * 1024; /* 64k alignment slop space */
*(.brk_reservation) /* areas brk users have reserved */
__brk_limit = .;
}

.end : AT(ADDR(.end) - LOAD_OFFSET) {
_end = .;
}

/* Sections to be discarded */
/DISCARD/ : {
*(.exitcall.exit)
*(.eh_frame)
*(.discard)
}

STABS_DEBUG
DWARF_DEBUG
Expand Down
26 changes: 0 additions & 26 deletions trunk/arch/x86/kernel/vmlinux_32.lds.S

This file was deleted.

24 changes: 0 additions & 24 deletions trunk/arch/x86/kernel/vmlinux_64.lds.S

This file was deleted.

0 comments on commit 63f23fb

Please sign in to comment.