summaryrefslogtreecommitdiff
path: root/distrib/alpha
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 07:00:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 07:00:48 +0000
commit4b301465c86ff6179a4ef9cbe98597e12b0bdef7 (patch)
treead84422ca53320a3870bb80aed42e6398d3f969a /distrib/alpha
parent124e22ed553b6c1db3b6ee2983145bdf1ce527c5 (diff)
update from netbsd
Diffstat (limited to 'distrib/alpha')
-rw-r--r--distrib/alpha/rz25dist/Makefile25
1 files changed, 18 insertions, 7 deletions
diff --git a/distrib/alpha/rz25dist/Makefile b/distrib/alpha/rz25dist/Makefile
index 844b1c87fc0..9969e506669 100644
--- a/distrib/alpha/rz25dist/Makefile
+++ b/distrib/alpha/rz25dist/Makefile
@@ -1,8 +1,10 @@
-# $NetBSD: Makefile,v 1.7 1995/10/10 01:19:16 cgd Exp $
+# $NetBSD: Makefile,v 1.11 1995/12/09 05:27:22 cgd Exp $
# Make a distribution for the alpha, on a spare disk.
# This creates a large, gzipped disk image in ${.OBJDIR}
+TARGETS= bin.tar.gz etc.tar.gz x11.tar.gz rz25-image.gz
+
.if !defined(DESTDIR) || !defined(DESTDISK)
all:
@echo both 'DESTDIR' and 'DESTDISK' must be defined.
@@ -12,14 +14,13 @@ all:
SECPERCYL= 558
CYLS= 1476
-all: bin.tar.gz etc.tar.gz rz25-image.gz
+all: ${TARGETS}
mount-fs:
disklabel -W ${DESTDISK}
-dd if=/dev/zero of=/dev/r${DESTDISK}c bs=`expr ${SECPERCYL} \* 512` \
count=${CYLS}
- disklabel -w -r -B -b /usr/mdec/sdboot -s /usr/mdec/bootsd \
- ${DESTDISK} rz25
+ disklabel -w -r ${DESTDISK} rz25
disklabel -W ${DESTDISK}
newfs -O /dev/r${DESTDISK}a
newfs -O /dev/r${DESTDISK}d
@@ -31,10 +32,11 @@ build-fs:
cd ${.CURDIR}/../../../etc && make distribution
cd ${.CURDIR}/../../../cygnus && \
make prefix=${DESTDIR}/usr/local install
+ cd ${.CURDIR}/../../../xc && make install install.man
cp ${.CURDIR}/../../../sys/arch/alpha/compile/GENERIC/netbsd ${DESTDIR}
ln -s gcc ${DESTDIR}/usr/local/bin/cc
ln -s \
- ../local/lib/gcc-lib/alpha-unknown-netbsd1.0A/2.7-95q4/cpp \
+ ../local/lib/gcc-lib/alpha-unknown-netbsd1.0A./2.7-95q4/cpp \
${DESTDIR}/usr/libexec
ln -s ../local/bin/ar ${DESTDIR}/usr/bin
ln -s ../local/bin/as ${DESTDIR}/usr/bin
@@ -46,6 +48,9 @@ build-fs:
ln -s ../local/bin/size ${DESTDIR}/usr/bin
ln -s ../local/bin/strip ${DESTDIR}/usr/bin
cp -p ${DESTDIR}/usr/mdec/boot ${DESTDIR}/
+ sync; sleep 1; sync; sleep 1
+ ${DESTDIR}/usr/mdec/installboot -v ${DESTDIR}/boot \
+ ${DESTDIR}/usr/mdec/bootxx /dev/r${DESTDISK}c
unmount-fs:
umount ${DESTDIR}/usr ${DESTDIR}
@@ -58,19 +63,25 @@ rz25-image.gz: mount-fs build-fs unmount-fs
bin.tar.gz: mount-fs build-fs
/bin/rm -f $@
- (cd ${DESTDIR} ; find . | grep -v '^./etc' | pax -w -d | gzip -9) > $@
+ (cd ${DESTDIR} ; find . | grep -v '^./etc' | \
+ grep -v '^./usr/X11R6' | grep -v '^./netbsd' | \
+ grep -v '^./boot' | pax -w -d | gzip -9) > $@
etc.tar.gz: mount-fs build-fs
/bin/rm -f $@
(cd ${DESTDIR} ; find ./etc | pax -w -d | gzip -9) > $@
+x11.tar.gz: mount-fs build-fs
+ /bin/rm -f $@
+ (cd ${DESTDIR} ; find ./usr/X11R6 | pax -w -d | gzip -9) > $@
+
.endif
_SUBDIRUSE:
# clean dependencies in case somebody decides to shortcut the build.
clean:
- /bin/rm -f bin.tar.gz etc.tar.gz rz25-image.gz
+ /bin/rm -f ${TARGETS}
/bin/rm -f mount-fs build-fs unmount-fs
.include <bsd.own.mk>