From 3e3869cfef1a8e75c93b0337c3e50d80fb063881 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Mon, 20 Dec 2004 12:29:41 +0000 Subject: firmware loading from the filesystem. pci subsystem type things are still done early, but audio subsystem setup is deferred till after root is mounted. tested by mcbride --- sys/dev/microcode/yds/Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 sys/dev/microcode/yds/Makefile (limited to 'sys/dev/microcode/yds/Makefile') diff --git a/sys/dev/microcode/yds/Makefile b/sys/dev/microcode/yds/Makefile new file mode 100644 index 00000000000..f76c30932f6 --- /dev/null +++ b/sys/dev/microcode/yds/Makefile @@ -0,0 +1,28 @@ +# $OpenBSD: Makefile,v 1.1 2004/12/20 12:29:40 deraadt Exp $ + +NOPROG= +NOMAN= + +# PCI capable systems only +.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ + (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \ + (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "cats") || \ + (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \ + (${MACHINE} == "sgi") + +FIRM= yds + +CLEANFILES+= ${FIRM} build + +all: build + ${.OBJDIR}/build + +afterinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${FIRM} ${DESTDIR}/etc/firmware + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${.CURDIR}/yds-license ${DESTDIR}/etc/firmware +.endif + +.include + -- cgit v1.2.3