diff options
author | 2003-02-14 20:17:45 +0000 | |
---|---|---|
committer | 2003-02-14 20:17:45 +0000 | |
commit | fb4f41570566506bb623180c93643f17ac9673df (patch) | |
tree | 3b4e31649f598ef48ed7fd41d48386dd751e6f45 | |
parent | delete $W in trap handler (diff) | |
download | wireguard-openbsd-fb4f41570566506bb623180c93643f17ac9673df.tar.xz wireguard-openbsd-fb4f41570566506bb623180c93643f17ac9673df.zip |
Pad boot out to 512 byte boundary... some old prom's don't like binaries
which end on "odd" boundaries.
-rw-r--r-- | sys/arch/sparc/stand/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/stand/boot/Makefile b/sys/arch/sparc/stand/boot/Makefile index 1c74591bab0..687a4f28ba4 100644 --- a/sys/arch/sparc/stand/boot/Makefile +++ b/sys/arch/sparc/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 2002/08/11 23:11:22 art Exp $ +# $OpenBSD: Makefile,v 1.11 2003/02/14 20:17:45 jason Exp $ # $NetBSD: Makefile,v 1.2 1995/09/30 21:43:38 pk Exp $ .PATH: ${.CURDIR}/../common @@ -26,7 +26,7 @@ ${PROG}: ${OBJS} ${LIBS} elfclean ./elfclean elf objcopy -j .text -j .data -j .bss -O a.out-sparc-netbsd elf a.out @size a.out - (echo -n 01 | tr 01 '\01\03'; tail +3c a.out) > ${.TARGET} + (echo -n 01 | tr 01 '\01\03'; tail +3c a.out) | dd obs=512 conv=osync > ${.TARGET} @rm a.out elf srt0.o: srt0.S |