From 5b98b64392dc078c1c5a0e06c21511c0e05ae40d Mon Sep 17 00:00:00 2001 From: Benno Rice Date: Fri, 10 Nov 2000 06:29:42 +0000 Subject: [PATCH] OpenFirmware/PowerPC loader, part 2. This brings the loader up to the point where I can compile it under NetBSD/macppc and have it boot, interact and talk to NFS servers. sys/boot/ofw/libofw/main.c has been deleted (it has no revision history) and replaced with sys/boot/ofw/common/main.c Reviewed by: obrien --- sys/boot/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys/boot/Makefile b/sys/boot/Makefile index f0cf5ff1bc42..4711995f8373 100644 --- a/sys/boot/Makefile +++ b/sys/boot/Makefile @@ -3,6 +3,11 @@ # Build the add-in FORTH interpreter SUBDIR+= ficl +# Build OpenFirmware library on PowerPC +.if ${MACHINE_ARCH} == "powerpc" +SUBDIR+= ofw +.endif + # Pick the machine-dependant subdir based on the target architecture. # XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98. .if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"