Date: Sun, 20 Oct 2002 02:31:48 +0900 From: Makoto Matsushita <matusita@jp.FreeBSD.org> To: imp@bsdimp.com, nyan@FreeBSD.ORG Cc: mobile@FreeBSD.ORG Subject: Re: pccard[dc] still needed? Message-ID: <20021020023148Y.matusita@jp.FreeBSD.org> In-Reply-To: <20021019.001551.106891083.imp@bsdimp.com> References: <20021019135304P.matusita@jp.FreeBSD.org> <20021019.001551.106891083.imp@bsdimp.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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 majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021020023148Y.matusita>