diff options
author | tmm <tmm@FreeBSD.org> | 2002-04-01 22:57:51 +0000 |
---|---|---|
committer | tmm <tmm@FreeBSD.org> | 2002-04-01 22:57:51 +0000 |
commit | 7151c10d96675a4f82abd58a8a08ee3b6a8234a6 (patch) | |
tree | b0ecf09b9aad505dde8696e0752ea2cc61d1250c /sys/boot/sparc64/boot1 | |
parent | 83e547f85dce0b26aca4ff184c3af904184815f8 (diff) | |
download | FreeBSD-src-7151c10d96675a4f82abd58a8a08ee3b6a8234a6.zip FreeBSD-src-7151c10d96675a4f82abd58a8a08ee3b6a8234a6.tar.gz |
1.) Produce a boot1 disklabel template of the format disklabel(8) expects.
2.) Clean up and change over to using bsd.prog.mk
Submitted by: jake (2)
Diffstat (limited to 'sys/boot/sparc64/boot1')
-rw-r--r-- | sys/boot/sparc64/boot1/Makefile | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/sys/boot/sparc64/boot1/Makefile b/sys/boot/sparc64/boot1/Makefile index f152c74..bde5360 100644 --- a/sys/boot/sparc64/boot1/Makefile +++ b/sys/boot/sparc64/boot1/Makefile @@ -1,19 +1,29 @@ # $FreeBSD$ +PROG= boot1 +SRCS= _start.S boot1.c +NOMAN= +STRIP= +BINDIR?= /boot +BINMODE= 444 + BOOTBLOCKBASE= 0x4000 -CFLAGS= -W -Wall -I../../ -I../../common/ -Os \ - -DBOOTBLOCKBASE=${BOOTBLOCKBASE} \ - -ffreestanding -mno-app-regs -mcmodel=medlow -OBJ= boot1.o +CFLAGS= -W -Wall -I../../ -I../../common/ -Os -ffreestanding -mno-app-regs \ + -mcmodel=medlow + +boot1.elf: _start.o boot1.o + ${LD} -N -Ttext ${BOOTBLOCKBASE} -o ${.TARGET} _start.o boot1.o + +boot1.aout: boot1.elf + /usr/local/bin/elftoaout -o ${.TARGET} boot1.elf -all: boot1 +# Construct boot1. disklabel expects it to contain zeroed-out space for the +# label, and to be of the correct size. +boot1: boot1.aout + dd if=/dev/zero of=${.TARGET} bs=512 count=16 + dd if=boot1.aout of=${.TARGET} bs=512 oseek=1 conv=notrunc -boot1.o: boot1.c - ${CC} ${CFLAGS} -c -o ${.TARGET} ${.ALLSRC} +CLEANFILES+= boot1.elf boot1.aout -boot1: ${OBJ} - ${LD} -N -Ttext ${BOOTBLOCKBASE} -e main -o boot1 ${OBJ} - /usr/local/bin/elftoaout boot1 -clean: - rm -f *.o boot1 +.include <bsd.prog.mk> |