Re: pccard[dc] still needed?
Makoto Matsushita <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.mobile |
|---|---|
| Message-ID | <[email protected]> |
imp> Yes. They are not needed anymore. However, there may be some OLDCARD
imp> specific stuff inside of sysinstall that's not needed when one boots a
imp> NEWCARD kernel.
How about this patch? Undef PCCARD_ARCH for i386 seems enough for me...
-- -
Makoto `MAR' Matsushita
Index: Makefile
===================================================================
RCS file: /home/ncvs/src/usr.sbin/sysinstall/Makefile,v
retrieving revision 1.126
diff -u -r1.126 Makefile
--- Makefile 30 Apr 2002 22:40:05 -0000 1.126
+++ Makefile 19 Oct 2002 17:26:47 -0000
@@ -10,7 +10,7 @@
system.c tape.c tcpip.c termcap.c ttys.c ufs.c usb.c user.c \
variable.c wizard.c keymap.h
-.if ${MACHINE_ARCH} == "i386"
+.if ${MACHINE} == "pc98"
SRCS+= pccard.c
.endif
Index: sysinstall.h
===================================================================
RCS file: /home/ncvs/src/usr.sbin/sysinstall/sysinstall.h,v
retrieving revision 1.228
diff -u -r1.228 sysinstall.h
--- sysinstall.h 1 Jun 2002 14:50:14 -0000 1.228
+++ sysinstall.h 19 Oct 2002 17:24:49 -0000
@@ -54,7 +54,7 @@
/*** Defines ***/
-#if defined(__i386__) || defined(PC98)
+#if defined(PC98)
#define PCCARD_ARCH 1 /* Support PCCARD installations */
#endif
/* device limits */
To Unsubscribe: send mail to [email protected]
with "unsubscribe freebsd-mobile" in the body of the message