From owner-freebsd-current Wed Dec 20 10:29: 1 2000 From owner-freebsd-current@FreeBSD.ORG Wed Dec 20 10:28:57 2000 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from updraft.jp.freebsd.org (updraft.jp.FreeBSD.ORG [210.157.158.42]) by hub.freebsd.org (Postfix) with ESMTP id C5FB037B402 for ; Wed, 20 Dec 2000 10:28:56 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by updraft.jp.freebsd.org (8.11.1+3.4W/8.11.1) with ESMTP/inet id eBKISr844856; Thu, 21 Dec 2000 03:28:53 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: imp@village.org In-Reply-To: <200012201805.eBKI5is41536@billy-club.village.org> References: <20001221021801G.matusita@jp.FreeBSD.org> <200012201805.eBKI5is41536@billy-club.village.org> X-Face: '*aj"d@ijeQ:/X}]oM5c5Uz{ZZZk90WPt>a^y4$cGQp8:!H\W=hSM;PuNiidkc]/%,;6VGu e+`&APmz|P;F~OL/QK%;P2vU>\j4X.8@i%j6[%DTs_3J,Fff0)*oHg$A.cDm&jc#pD24WK@{,"Ef!0 P\):.2}8jo-BiZ?X&t$V X-User-Agent: Mew/1.94.2 XEmacs/21.2 (Peisino,Ak(B) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 33 From: Makoto MATSUSHITA To: current@FreeBSD.ORG Subject: Re: Why 'lnc.ko' instead of 'if_lnc.ko' ? Date: Thu, 21 Dec 2000 03:28:46 +0900 Message-Id: <20001221032846U.matusita@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp> Typo, I think. The module needs to be named if_XXX.ko for the imp> automatic kldload in ifconfig to work. OK, attached below is a (trivial) patch to fix this. -- - Makoto `MAR' MATSUSHITA Index: Makefile =================================================================== RCS file: /lab/FreeBSD/FreeBSD.cvs/src/sys/modules/lnc/Makefile,v retrieving revision 1.1 diff -c -r1.1 Makefile *** Makefile 2000/12/16 01:47:37 1.1 --- Makefile 2000/12/20 18:19:11 *************** *** 1,7 **** # $FreeBSD: src/sys/modules/lnc/Makefile,v 1.1 2000/12/16 01:47:37 paul Exp $ .PATH: ${.CURDIR}/../../dev/lnc ! KMOD = lnc SRCS = if_lnc.c if_lnc_pci.c if_lnc_isa.c if_lnc_pc98.c SRCS += opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h #SRCS += miibus_if.h --- 1,7 ---- # $FreeBSD: src/sys/modules/lnc/Makefile,v 1.1 2000/12/16 01:47:37 paul Exp $ .PATH: ${.CURDIR}/../../dev/lnc ! KMOD = if_lnc SRCS = if_lnc.c if_lnc_pci.c if_lnc_isa.c if_lnc_pc98.c SRCS += opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h #SRCS += miibus_if.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message