summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2013-12-08 14:42:22 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2013-12-08 14:42:22 +0000
commit0d51f2437b8c53e33001327201ea57b5e2a4aa2f (patch)
tree1ff6a3f739c742337468dddac1ecf4d1b55eb886
parent421577de121a8973b81e742593876afa058d9294 (diff)
Don't forget to create a boot-IP28 link in /usr/mdec, for the sake of the
installer. Fixes boot block installation on, well, IP28.
-rw-r--r--distrib/sets/lists/base/md.sgi1
-rw-r--r--sys/arch/sgi/stand/boot64/Makefile3
2 files changed, 3 insertions, 1 deletions
diff --git a/distrib/sets/lists/base/md.sgi b/distrib/sets/lists/base/md.sgi
index 14a57bc4060..80f0690b2f5 100644
--- a/distrib/sets/lists/base/md.sgi
+++ b/distrib/sets/lists/base/md.sgi
@@ -2405,6 +2405,7 @@
./usr/local/libdata/perl5/site_perl/mips64-openbsd
./usr/mdec/boot-IP22
./usr/mdec/boot-IP27
+./usr/mdec/boot-IP28
./usr/mdec/boot-IP30
./usr/mdec/boot-IP32
./usr/mdec/boot32
diff --git a/sys/arch/sgi/stand/boot64/Makefile b/sys/arch/sgi/stand/boot64/Makefile
index feff68fe4f7..095cc666458 100644
--- a/sys/arch/sgi/stand/boot64/Makefile
+++ b/sys/arch/sgi/stand/boot64/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.2 2012/10/19 11:29:56 miod Exp $
+# $OpenBSD: Makefile,v 1.3 2013/12/08 14:42:21 miod Exp $
LDFLAGS+= ${SALDFLAGS} --oformat=elf64-tradbigmips -e __start
STRIP= strip
@@ -19,6 +19,7 @@ ${PROG}: $(OBJS) $(LDADD)
$(STRIP) --strip-unneeded ${PROG}
LINKS= ${BINDIR}/${PROG} ${BINDIR}/boot-IP27
+LINKS+= ${BINDIR}/${PROG} ${BINDIR}/boot-IP28
LINKS+= ${BINDIR}/${PROG} ${BINDIR}/boot-IP30
.include <bsd.prog.mk>