diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-10-30 18:40:39 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-10-30 18:40:39 +0000 |
commit | 872b3d7331e1e7af56dfad4dc3419d65ba3c74db (patch) | |
tree | e3ae208048d9119be4e75bc32c05d1c4a794acd1 /sys/arch/luna88k | |
parent | 90785fb61d6f8e621157d06e49db64f60a0406f1 (diff) |
Reduce gap at the end of .text from a page to 0x10 bytes. The ELF->a.out
conversion done in objcopy loses if an alignment smaller than this is
requested (and this is probably my {fault,bug}, somewhere in binutils). Shrinks
the boot blocks a bit.
Diffstat (limited to 'sys/arch/luna88k')
-rw-r--r-- | sys/arch/luna88k/stand/boot/boot.ldscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/luna88k/stand/boot/boot.ldscript b/sys/arch/luna88k/stand/boot/boot.ldscript index 291be9987d7..026c530d845 100644 --- a/sys/arch/luna88k/stand/boot/boot.ldscript +++ b/sys/arch/luna88k/stand/boot/boot.ldscript @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.ldscript,v 1.1 2013/10/28 22:13:12 miod Exp $ */ +/* $OpenBSD: boot.ldscript,v 1.2 2013/10/30 18:40:38 miod Exp $ */ /* * Copyright (c) 2012 Miodrag Vallat. @@ -32,7 +32,7 @@ SECTIONS *(.rodata*) PROVIDE(etext = ABSOLUTE(.)); FILL(0xf4005800) - . = ALIGN(0x1000); + . = ALIGN(0x10); } .data : { |