From 323fed60a542987ffd05a79ffdfc47250af03ef7 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Fri, 29 Jun 2001 15:23:31 +0000 Subject: [PATCH] Two more "oops"es here: i didn't mean to turn on fdc debugging by default in the KLD, and to turn off pccard support, so reverse each of the flags. Also, the flags should be overridable by /etc/make.conf. --- sys/modules/fdc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/fdc/Makefile b/sys/modules/fdc/Makefile index 09e6ea24ae8..bbd7ae068bf 100644 --- a/sys/modules/fdc/Makefile +++ b/sys/modules/fdc/Makefile @@ -8,8 +8,8 @@ SRCS= fd.c \ bus_if.h card_if.h device_if.h isa_if.h NOMAN= -FDC_DEBUG= 1 # 0/1 -FDC_PCCARD= 0 # 0/1 whether pccard support (i. e. Y-E DATA PCMCIA +FDC_DEBUG?= 0 # 0/1 +FDC_PCCARD?= 1 # 0/1 whether pccard support (i. e. Y-E DATA PCMCIA # # fdc) is desired CLEANFILES= card.h