From owner-freebsd-current Wed Sep 13 15: 1:35 2000 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 6889A37B42C for ; Wed, 13 Sep 2000 15:01:32 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id QAA66987; Wed, 13 Sep 2000 16:01:30 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id QAA91514; Wed, 13 Sep 2000 16:00:58 -0600 (MDT) Message-Id: <200009132200.QAA91514@harmony.village.org> To: Sheldon Hearn Subject: Re: Latest kernel/module restructuring Cc: "Niels Chr. Bank-Pedersen" , current@FreeBSD.ORG In-reply-to: Your message of "Tue, 12 Sep 2000 20:15:26 +0200." <413.968782526@axl.fw.uunet.co.za> References: <413.968782526@axl.fw.uunet.co.za> Date: Wed, 13 Sep 2000 16:00:58 -0600 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <413.968782526@axl.fw.uunet.co.za> Sheldon Hearn writes: : Folks, I agree that it would be nice to have a reinstallkernel target in : src/Makefile.inc1. Other than that, it really does sound like : everyone's just arguing for the sake of being heard. Let's see if this knocks down the noise level: Index: if_ep_pccard.c =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/sys/dev/ep/if_ep_pccard.c,v retrieving revision 1.14 diff -u -r1.14 if_ep_pccard.c --- if_ep_pccard.c 2000/07/13 22:54:23 1.14 +++ if_ep_pccard.c 2000/09/13 03:51:01 @@ -88,7 +88,7 @@ if ((desc = ep_pccard_identify(epb->prod_id)) == NULL) { if (bootverbose) device_printf(dev, "Pass 1 of 2 detection " - "failed (nonfatal)\n"); + "failed (nonfatal) id 0x%x\n", epb->prod_id); epb->cmd_off = 2; epb->prod_id = get_e(sc, EEPROM_PROD_ID); if ((desc = ep_pccard_identify(epb->prod_id)) == NULL) { @@ -127,6 +127,8 @@ return ("3Com Etherlink III 3C589"); case 0x2056: /* 3C562/3C563 */ return ("3Com 3C562D/3C563D"); + case 0x0010: /* 3C1 */ + return ("3Com Megahertz C1"); } return (NULL); } @@ -140,6 +142,7 @@ case 0x2b57: /* 3C572BT */ case 0x4057: /* 3C574 */ case 0x4b57: /* 3C574B */ + case 0x0010: /* 3C1 */ epb->mii_trans = 1; return (1); case 0x2056: /* 3C562D/3C563D */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message