diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-16 19:13:06 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-16 19:13:06 +0000 |
commit | 08aec857db4dcea36d35f417da015d94c3109784 (patch) | |
tree | a1bf3e80f06c3804c3a06304c3083e0547b46069 /sys | |
parent | 7398c1de13fac821b5834e8c3fd67fac18e9dd0d (diff) |
do not include the bsd into the lif, make links in the mdec
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/stand/boot/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/arch/hppa/stand/boot/Makefile b/sys/arch/hppa/stand/boot/Makefile index f544c943ee2..e295c6ab58c 100644 --- a/sys/arch/hppa/stand/boot/Makefile +++ b/sys/arch/hppa/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2002/12/19 00:28:54 mickey Exp $ +# $OpenBSD: Makefile,v 1.15 2003/01/16 19:13:05 mickey Exp $ MAN= boot.8 MANSUBDIR=/hppa @@ -17,6 +17,9 @@ STRIP?= strip SADIR= ${.CURDIR}/.. CRTBEGIN= CRTEND= +LINKS= ${BINDIR}/boot.lif ${BINDIR}/sdboot \ + ${BINDIR}/boot.lif ${BINDIR}/stboot \ + ${BINDIR}/boot.lif ${BINDIR}/xxboot LDADD= ${LIBSA} ${LIBZ} ${LIBKERN} DPADD= ${LIBSA} ${LIBZ} ${LIBKERN} @@ -25,11 +28,9 @@ DPADD= ${LIBSA} ${LIBZ} ${LIBKERN} all: boot.lif -.if exists(${.CURDIR}/../../compile/GENERIC/bsd) -bsd: ${.CURDIR}/../../compile/GENERIC/bsd - gzip -9 -c ${.CURDIR}/../../compile/GENERIC/bsd > bsd -ADDBOOT+=bsd -.endif +realinstall: + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + boot.lif ${DESTDIR}${BINDIR} # probably we should check for 256k limit for ISL boot.lif: ${PROG} ${ADDBOOT} |