summaryrefslogtreecommitdiff
path: root/sys/dev/microcode/daic/Makefile
diff options
context:
space:
mode:
authormartin <martin@NetBSD.org>2010-08-01 20:09:33 +0000
committermartin <martin@NetBSD.org>2010-08-01 20:09:33 +0000
commitd235e83c9d6e1b3b2c64c40c587108686732d8ff (patch)
tree2b43302baeab6d96d6b36da9564cce6d006a2663 /sys/dev/microcode/daic/Makefile
parent45a4c8de5d0f092c77714f5ddeaad224f752a279 (diff)
Remove old style firmware hooks for undistributable bootloader of Diehl
active ISDN cards.
Diffstat (limited to 'sys/dev/microcode/daic/Makefile')
-rw-r--r--sys/dev/microcode/daic/Makefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/sys/dev/microcode/daic/Makefile b/sys/dev/microcode/daic/Makefile
deleted file mode 100644
index b34bddb5519..00000000000
--- a/sys/dev/microcode/daic/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# The Microcode for the Eicon.Diehl active ISDN cards comes in two parts.
-# A tiny bootstrap loader delivered by Diehl as "dnload.bin" and a
-# D-channel protocol specific file, e.g. "te_etsi.sx" for the SX card
-# running E-DSS1.
-# We can not deliver either of these files. The user is assumed to use
-# the ones distributed with his card or download the newest version from
-# http://www.diehl.de.
-# The bootstrap loader is compiled into the kernel, as it is needed to
-# identify the card. The protocol specific part is later downloaded by
-# the ISDN management daemon.
-
-.NOPATH: dnload.bin
-.if exists(dnload.bin)
-# Real part - the bootstrap image is available. We convert it into a
-# static byte array via the "gendnloadh" shell script.
-dnload.h: dnload.bin
- @rm -f dnload.h
- @${HOST_SH} ./gendnloadh
-.else
-# Fake part - user did not copy the necessary file here. Compilation will
-# fail with an error explaining his fault.
-dnload.h: dnload.h-dist
- cp dnload.h-dist dnload.h
-.endif
-
-clean:
- rm -f dnload.h
-
-cleandir: clean
-
-all: includes
-
-includes: dnload.h
-
-.include <bsd.kinc.mk>