Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 102387
b: refs/heads/master
c: 97d26e7
h: refs/heads/master
i:
  102385: d624090
  102383: c4058f6
v: v3
  • Loading branch information
Cyrill Gorcunov authored and Linus Torvalds committed Jul 21, 2008
1 parent d8804ce commit 06c81c5
Show file tree
Hide file tree
Showing 3 changed files with 7 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: e945b568e28b42de893ef24989372f0219501d32
refs/heads/master: 97d26e73d729c8d967bc5eb9086321956c444dd4
3 changes: 2 additions & 1 deletion trunk/arch/m68k/kernel/vmlinux-std.lds
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ld script to make m68k Linux kernel */

#include <asm-generic/vmlinux.lds.h>
#include <asm/page.h>

OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
OUTPUT_ARCH(m68k)
Expand Down Expand Up @@ -41,7 +42,7 @@ SECTIONS
_edata = .; /* End of data section */

/* will be freed after init */
. = ALIGN(4096); /* Init code and data */
. = ALIGN(PAGE_SIZE); /* Init code and data */
__init_begin = .;
.init.text : {
_sinittext = .;
Expand Down
7 changes: 4 additions & 3 deletions trunk/arch/m68k/kernel/vmlinux-sun3.lds
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ld script to make m68k Linux kernel */

#include <asm-generic/vmlinux.lds.h>
#include <asm/page.h>

OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
OUTPUT_ARCH(m68k)
Expand Down Expand Up @@ -34,7 +35,7 @@ SECTIONS
_edata = .;

/* will be freed after init */
. = ALIGN(8192); /* Init code and data */
. = ALIGN(PAGE_SIZE); /* Init code and data */
__init_begin = .;
.init.text : {
_sinittext = .;
Expand All @@ -61,12 +62,12 @@ __init_begin = .;
}
SECURITY_INIT
#ifdef CONFIG_BLK_DEV_INITRD
. = ALIGN(8192);
. = ALIGN(PAGE_SIZE);
__initramfs_start = .;
.init.ramfs : { *(.init.ramfs) }
__initramfs_end = .;
#endif
. = ALIGN(8192);
. = ALIGN(PAGE_SIZE);
__init_end = .;
.data.init.task : { *(.data.init_task) }

Expand Down

0 comments on commit 06c81c5

Please sign in to comment.