Date: Wed, 27 Mar 1996 21:16:39 +0000 From: "Gary Palmer" <gpalmer@freebsd.org> To: stable@freebsd.org Subject: libdisk Message-ID: <16194.827961399@palmer.demon.co.uk>
next in thread | raw e-mail | index | archive | help
I just tried bootstrapping my machine from an over-customized 2.0R box
(running a -stable kernel) to full -stable, and found that it fell
over in libdisk. There are 2 problems with libdisk r.e. bootstrapping
a) it assumes that file2c is already installed (which, being a 2.0R
system, it wasn't). Patch:
Index: Makefile
===================================================================
RCS file: /mnt/usr/home/ncvs/src/Makefile,v
retrieving revision 1.57.4.10
diff -u -r1.57.4.10 Makefile
--- 1.57.4.10 1996/02/27 20:51:58
+++ Makefile 1996/03/27 21:12:05
@@ -265,6 +265,8 @@
rm -f /usr/sbin/compile_et
cd ${.CURDIR}/usr.bin/mk_cmds && \
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
+ cd ${.CURDIR}/usr.bin/file2c && \
+ ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
libraries:
@echo "--------------------------------------------------------------"
b) It assumed that /usr/mdec/boot[12] existed, which they didn't on my
box. I'm not sure if adding sys/boot/biosboot to the lib-tools
target is a good idea or not...
Comments?
Gary
P.S. The restarted make world is still going, so no doubt I'll find
more bogons yet :)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?16194.827961399>
