From eugen@D00015.dialonly.kemerovo.su  Sun Jan 13 01:10:03 2002
Return-Path: <eugen@D00015.dialonly.kemerovo.su>
Received: from D00015.dialonly.kemerovo.su (www2.svzserv.kemerovo.su [213.184.65.86])
	by hub.freebsd.org (Postfix) with ESMTP id 9EB3537B400
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 13 Jan 2002 01:09:58 -0800 (PST)
Received: (from eugen@localhost)
	by D00015.dialonly.kemerovo.su (8.11.6/8.11.6) id g0D98u103264;
	Sun, 13 Jan 2002 16:08:56 +0700 (KRAT)
	(envelope-from eugen)
Message-Id: <200201130908.g0D98u103264@D00015.dialonly.kemerovo.su>
Date: Sun, 13 Jan 2002 16:08:56 +0700 (KRAT)
From: Eugene Grosbein <eugen@D00015.dialonly.kemerovo.su>
Reply-To: Eugene Grosbein <eugen@D00015.dialonly.kemerovo.su>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Correct kernel config for 4.4-RELEASE is incorrect for 4.5-RC1
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         33833
>Category:       kern
>Synopsis:       Correct kernel config for 4.4-RELEASE is incorrect for 4.5-RC1
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    remko
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jan 13 01:20:00 PST 2002
>Closed-Date:    Fri Jan 05 12:16:08 GMT 2007
>Last-Modified:  Fri Jan 05 12:16:08 GMT 2007
>Originator:     Eugene Grosbein
>Release:        FreeBSD 4.5-RC i386
>Organization:
Svyaz Service JSC
>Environment:
System: FreeBSD D00015.dialonly.kemerovo.su 4.5-RC FreeBSD 4.5-RC #1: Sun Jan 13 13:22:48 KRAT 2002 eu@D00015.dialonly.kemerovo.su:/usr/local/obj/mnt/old/usr/src/sys/DADV i386

>Description:

	MFC 1.24.2.11 of src/sys/netinet/ip_dummynet.c made
	ipfw/dummynet/bridge KLD'able and broke compilations of kernels
	containing DUMMYNET and not containing pseudo-device ether.

>How-To-Repeat:
	
	Try to build this kernel. 
	It's nearly real config for PPP-only networking.

#start of file
machine		i386
cpu		I486_CPU
cpu		I586_CPU
cpu		I686_CPU
ident		EP
maxusers	4

options		INET			#InterNETworking
options		FFS			#Berkeley Fast Filesystem
options		FFS_ROOT		#FFS usable as root device [keep this!]
options		COMPAT_43		#Compatible with BSD 4.3 [KEEP THIS!]
options		USERCONFIG		#boot -c editor
options		VISUAL_USERCONFIG	#visual boot -c editor
options		IPFIREWALL
options		IPFIREWALL_FORWARD
options		IPDIVERT
options		DUMMYNET

device	isa0

device	fdc0	at isa? port IO_FD1 irq 6 drq 2
device		fd0	at fdc0 drive 0
#device		fd1	at fdc0 drive 1

device	ata0	at isa? port IO_WD1 irq 14
device	ata
device	atadisk

options ATA_STATIC_ID

device		atkbdc0	at isa? port IO_KBD flags 0x01
device		atkbd0	at atkbdc? irq 1
device		vga0	at isa? port ?
options		VGA_NO_MODE_CHANGE
device		sc0	at isa?
options		SC_NO_CUTPASTE
options		SC_NO_SYSMOUSE
options		MAXCONS=8
device		npx0	at nexus? port IO_NPX irq 13

device		sio0	at isa? port IO_COM1 flags 0x10 irq 4
device		sio1	at isa? port IO_COM2 irq 3
device		sio2	at isa? port IO_COM3 irq 7
device		sio3	at isa? port IO_COM4 irq 5

pseudo-device	loop
pseudo-device	ppp 	3
pseudo-device	pty
pseudo-device	bpf	#required by PPP_FILTER
pseudo-device	snp	4
pseudo-device   gif
 
options		PPP_DEFLATE
options		PPP_BSDCOMP
options		PPP_FILTER
options		TCP_DROP_SYNFIN
options		ICMP_BANDLIM
options		DUMMYNET
options		INCLUDE_CONFIG_FILE
options		HZ=1000
options		P1003_1B
options		_KPOSIX_PRIORITY_SCHEDULING
options		_KPOSIX_VERSION=199309L
options		CLK_CALIBRATION_LOOP
options		CLK_USE_I8254_CALIBRATION
options		RANDOM_IP_ID
#end if file

	There are last lines of make's output.

cc -c -O -pipe -march=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions -ansi  -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter  -D_KERNEL -include opt_global.h -elf  -mpreferred-stack-boundary=2 setdef1.c
touch hack.c
cc -elf -shared -nostdlib hack.c -o hack.So
rm -f hack.c
sh ../../conf/newvers.sh EP
cc -c -O -pipe -march=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions -ansi  -nostdinc -I- -I. -I../.. -I../../../include -I../../contrib/ipfilter  -D_KERNEL -include opt_global.h -elf  -mpreferred-stack-boundary=2 vers.c
linking kernel
ip_dummynet.o: In function `transmit_event':
ip_dummynet.o(.text+0x44e): undefined reference to `bdgtakeifaces_ptr'
ip_dummynet.o(.text+0x4ae): undefined reference to `bdg_forward_ptr'
*** Error code 1

>Fix:

	Workaround: add pseudo-device ether to kernel config
	even if you do not need this.

	Fix: unknown for me. If this won't be fixed before release, 
	this should be documented in the src/UPDATING and dummynet(4)
	man page.
	
	pseudo-device ether adds currently 16Kb to kernel size.

Eugene Grosbein
>Release-Note:
>Audit-Trail:

From: Eugene Grosbein <eugen@kuzbass.ru>
To: bug-followup@freebsd.org
Cc: docs@freebsd.org
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect for 
 4.5-RC1
Date: Tue, 04 Feb 2003 17:07:07 +0700

 Hi!
 
 The problem is still here at the time of 4.7-STABLE:
 dummynet(4) still does not note in 'KERNEL OPTION' section
 that 'pseudo-device ether' is mandatory for dummynet
 even for PPP-only operations.
 
 Eugene Grosbein

From: Maxim Konovalov <maxim@FreeBSD.org>
To: Eugene Grosbein <eugen@kuzbass.ru>
Cc: bug-followup@FreeBSD.org, docs@FreeBSD.org
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect
 for  4.5-RC1
Date: Tue, 4 Feb 2003 13:16:13 +0300 (MSK)

 On 17:07+0700, Feb 4, 2003, Eugene Grosbein wrote:
 
 > Hi!
 >
 > The problem is still here at the time of 4.7-STABLE:
 > dummynet(4) still does not note in 'KERNEL OPTION' section
 > that 'pseudo-device ether' is mandatory for dummynet
 > even for PPP-only operations.
 >
 > Eugene Grosbein
 
 I believe it is a bug in dummynet code. See a related PR, kern/37261.
 
 -- 
 Maxim Konovalov, maxim@macomnet.ru, maxim@FreeBSD.org
 

From: Eugene Grosbein <eugen@kuzbass.ru>
To: bug-followup@freebsd.org
Cc: maxim@freebsd.org, luigi@freebsd.org, ru@freebsd.org
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect for 
 4.5-RC1
Date: Tue, 13 May 2003 12:29:52 +0800

 Are there any plans to deal with this PR and related
 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=kern/37261 ?
 
 Eugene Grosbein

From: Ruslan Ermilov <ru@freebsd.org>
To: Eugene Grosbein <eugen@kuzbass.ru>
Cc: bug-followup@freebsd.org, maxim@freebsd.org, luigi@freebsd.org
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect for 4.5-RC1
Date: Wed, 14 May 2003 19:32:50 +0300

 --eAbsdosE1cNLO4uF
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 On Tue, May 13, 2003 at 12:29:52PM +0800, Eugene Grosbein wrote:
 > Are there any plans to deal with this PR and related
 > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3Dkern/37261 ?
 >=20
 Eugene,
 
 I'm not going to commit any patches to fix this.  I've
 once developed a patch for 4.x, it's now up to Luigi to
 commit it or not.
 
 
 Cheers,
 --=20
 Ruslan Ermilov		Sysadmin and DBA,
 ru@sunbay.com		Sunbay Software AG,
 ru@FreeBSD.org		FreeBSD committer,
 +380.652.512.251	Simferopol, Ukraine
 
 http://www.FreeBSD.org	The Power To Serve
 http://www.oracle.com	Enabling The Information Age
 
 --eAbsdosE1cNLO4uF
 Content-Type: application/pgp-signature
 Content-Disposition: inline
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.2.1 (FreeBSD)
 
 iD8DBQE+wm+yUkv4P6juNwoRAoelAJ0av1XB9nPm8iFV8eAB8HoAUbZCuQCdEIdI
 SsYBab5Z+Sie5zfuQsuGJ28=
 =yrlw
 -----END PGP SIGNATURE-----
 
 --eAbsdosE1cNLO4uF--

From: Eugene Grosbein <eugen@kuzbass.ru>
To: Ruslan Ermilov <ru@freebsd.org>
Cc: bug-followup@freebsd.org, maxim@freebsd.org, luigi@freebsd.org
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect for 
 4.5-RC1
Date: Thu, 15 May 2003 10:30:32 +0800

 Ruslan Ermilov wrote:
 > 
 > On Tue, May 13, 2003 at 12:29:52PM +0800, Eugene Grosbein wrote:
 > > Are there any plans to deal with this PR and related
 > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=kern/37261 ?
 > >
 > Eugene,
 > 
 > I'm not going to commit any patches to fix this.  I've
 > once developed a patch for 4.x, it's now up to Luigi to
 > commit it or not.
 
 Well, could you please give your patch to me for testing?
 
 Eugene Grosbein

From: Ruslan Ermilov <ru@freebsd.org>
To: Eugene Grosbein <eugen@kuzbass.ru>
Cc: bug-followup@freebsd.org, maxim@freebsd.org, luigi@freebsd.org
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect for 4.5-RC1
Date: Thu, 15 May 2003 09:24:16 +0300

 --Bn2rw/3z4jIqBvZU
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 On Thu, May 15, 2003 at 10:30:32AM +0800, Eugene Grosbein wrote:
 > Ruslan Ermilov wrote:
 > >=20
 > > On Tue, May 13, 2003 at 12:29:52PM +0800, Eugene Grosbein wrote:
 > > > Are there any plans to deal with this PR and related
 > > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3Dkern/37261 ?
 > > >
 > > Eugene,
 > >=20
 > > I'm not going to commit any patches to fix this.  I've
 > > once developed a patch for 4.x, it's now up to Luigi to
 > > commit it or not.
 >=20
 > Well, could you please give your patch to me for testing?
 >=20
 It should be somewhere in this PR's Audit-Trail I suppose,
 if I recall the things correctly.
 
 
 Cheers,
 --=20
 Ruslan Ermilov		Sysadmin and DBA,
 ru@sunbay.com		Sunbay Software AG,
 ru@FreeBSD.org		FreeBSD committer,
 +380.652.512.251	Simferopol, Ukraine
 
 http://www.FreeBSD.org	The Power To Serve
 http://www.oracle.com	Enabling The Information Age
 
 --Bn2rw/3z4jIqBvZU
 Content-Type: application/pgp-signature
 Content-Disposition: inline
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.2.1 (FreeBSD)
 
 iD8DBQE+wzKQUkv4P6juNwoRAmX4AJ0RT7pykzzCHNbjWqUZFkbwlAocrQCffh0D
 LPVS91ZhpvIvmSFqCouVWXY=
 =7HZ2
 -----END PGP SIGNATURE-----
 
 --Bn2rw/3z4jIqBvZU--
Responsible-Changed-From-To: freebsd-bugs->luigi 
Responsible-Changed-By: kris 
Responsible-Changed-When: Mon Jul 14 03:21:44 PDT 2003 
Responsible-Changed-Why:  
Assign to ipfw maintainer 

http://www.freebsd.org/cgi/query-pr.cgi?pr=33833 

From: DanGer <danger@rulez.sk>
To: freebsd-gnats-submit@FreeBSD.org,
	eugen@D00015.dialonly.kemerovo.su
Cc:  
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect for 4.5-RC1
Date: Mon, 21 Feb 2005 19:18:24 -0800

 This is a cryptographically signed message in MIME format.
 
 ------------41173D3B82EE31
 Content-Type: text/plain; charset=Windows-1250
 Content-Transfer-Encoding: quoted-printable
 
 Hi freebsd-gnats-submit,
 
   this seems to be really outdated and could be closed, couldn't it ?
 
 --=20
 Best regards
 
 +----------=3D=3D/\/\=3D=3D----------+             FreeBSD
 | DanGer <danger@wilbury.sk> |     (__)    The
 | DanGer@IRCnet ICQ261701668 |  \\\'',)    Power
 | http://danger.homeunix.org |    \/  \ ^  To
 +----------=3D=3D\/\/=3D=3D----------+    .\._/_)  Serve
 
 [ Wacky Wheels =FE Put it in reverse and run over Mario Kart! ]
 
 ------------41173D3B82EE31
 Content-Type: application/pkcs7-signature; name="smime.p7s"
 Content-Transfer-Encoding: base64
 Content-Disposition: attachment; filename="smime.p7s"
 Content-Description: S/MIME Cryptographic Signature
 
 MIIHVwYJKoZIhvcNAQcCoIIHSDCCB0QCAQMxCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC
 BbEwggJqMIIB06ADAgECAgMNsvcwDQYJKoZIhvcNAQEEBQAwYjELMAkGA1UEBhMCWkExJTAj
 BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
 ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA0MTIyODAwMzIyM1oXDTA1MTIyODAw
 MzIyM1owQTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEeMBwGCSqGSIb3DQEJ
 ARYPZGFuZ2VyQHJ1bGV6LnNrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDb7/VY6YOb
 cOc57IG38YMvdO33FMTWVGctbp4of0R2SfhcGFzR69A2+bd1O5TeGu9DrASLIaPKG1UnNNbZ
 AXUOyjc1abDTPbnLxrXsHfbNjuGJE3ryAmtO1rhguLdMuJjDM8H37jZ9mJOrmwkvLMVdmAtf
 uLIRgYbFZDeB0uhSvwIDAQABo08wTTAOBgNVHQ8BAf8EBAMCA4gwEQYJYIZIAYb4QgEBBAQD
 AgUgMBoGA1UdEQQTMBGBD2RhbmdlckBydWxlei5zazAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3
 DQEBBAUAA4GBAGaZqMR1Svtv9VCrDhXhkaVtoL0SQmOM1O5Q0Edit+4w3liLDsNJn8iMIUr2
 +aoswclTd6OmAkeXlj5tvU8Uvjtu0gYtSw5cxsTqfNPSnMWW13zdQXlr1t/YStc4jGlH4qRW
 q3oP+p/h7vHyvPx319NUVImHH+gJ1Wx0f79ApnR2MIIDPzCCAqigAwIBAgIBDTANBgkqhkiG
 9w0BAQUFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UE
 BxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMfQ2Vy
 dGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFs
 IEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUu
 Y29tMB4XDTAzMDcxNzAwMDAwMFoXDTEzMDcxNjIzNTk1OVowYjELMAkGA1UEBhMCWkExJTAj
 BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ
 ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB
 gQDEpjxVc1X7TrnKmVoeaMB1BHCd3+n/ox7svc31W/Iadr1/DDph8r9RzgHU5VAKMNcCY1os
 iRVwjt3J8CuFWqo/cVbLrzwLB+fxH5E2JCoTzyvV84J3PQO+K/67GD4Hv0CAAmTXp6a7n2XR
 xSpUhQ9IBH+nttE8YQRAHmQZcmC3+wIDAQABo4GUMIGRMBIGA1UdEwEB/wQIMAYBAf8CAQAw
 QwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybC50aGF3dGUuY29tL1RoYXd0ZVBlcnNvbmFs
 RnJlZW1haWxDQS5jcmwwCwYDVR0PBAQDAgEGMCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFQ
 cml2YXRlTGFiZWwyLTEzODANBgkqhkiG9w0BAQUFAAOBgQBIjNFQg+oLLswNo2asZw9/r6y+
 whehQ5aUnX9MIbj4Nh+qLZ82L8D0HFAgk3A8/a3hYWLD2ToZfoSxmRsAxRoLgnSeJVCUYsfb
 J3FXJY3dqZw5jowgT2Vfldr394fWxghOrvbqNOUQGls1TXfjViF4gtwhGTXeJLHTHUb/XV9l
 TzGCAW4wggFqAgEBMGkwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0
 aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1
 aW5nIENBAgMNsvcwCQYFKw4DAhoFAKBdMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwIwYJ
 KoZIhvcNAQkEMRYEFLmRCYNX60TH1of8IkgfeAAeNquIMBwGCSqGSIb3DQEJBTEPFw0wNTAy
 MjIwMzE4MjRaMA0GCSqGSIb3DQEBAQUABIGAPCi5prIDZm1SeGNBv536SsuX9pLq9pyEy286
 tauSra0kT2Q+NSTK6xYGeOEisnCING+r7lWBZZ6AN4Wck6xKpQgzGOqoy3bQsYVwST9mO8Pw
 jFRGwzolt/fK5kwAu8W0kPW4EOPQeXZv/xnVtXcVRyLvpKCmPnrCqJNsyaaR+4U=
 ------------41173D3B82EE31--
 

From: Eugene Grosbein <eugen@grosbein.pp.ru>
To: DanGer <danger@rulez.sk>
Cc: bug-followup@freebsd.org
Subject: Re: kern/33833: Correct kernel config for 4.4-RELEASE is incorrect for 4.5-RC1
Date: Wed, 23 Feb 2005 19:02:01 +0700

 DanGer wrote:
 
 > this seems to be really outdated and could be closed, couldn't it ?
 
 Does it mean the problem is fixed?
 
 Eugene Grosbein

From: Eugene Grosbein <eugen@kuzbass.ru>
To: bug-followup@freebsd.org
Cc:  
Subject: Re: kern/33833 : Correct kernel config for 4.4-RELEASE is incorrect for 4.5-RC1
Date: Sat, 7 Jan 2006 16:44:41 +0700

 The problem is still here for 6.0-RELEASE.
 dummynet(4) still does not mention that options DUMMYNET
 requires device ether.
 
 Here is kernel config adopted for 6.0-RELEASE.
 The kernel can be configured, compiled but not linked:
 
 linking kernel
 if.o(.text+0x29a9): In function `if_setlladdr':
 : undefined reference to `arp_ifinit'
 ip_dummynet.o(.text+0x509): In function `transmit_event':
 : undefined reference to `bridge_dn_p'
 ip_dummynet.o(.text+0x52e): In function `transmit_event':
 : undefined reference to `ether_output_frame'
 ip_dummynet.o(.text+0x563): In function `transmit_event':
 : undefined reference to `ether_demux'
 ip_dummynet.o(.text+0x56d): In function `transmit_event':
 : undefined reference to `bdgtakeifaces_ptr'
 ip_dummynet.o(.text+0x58f): In function `transmit_event':
 : undefined reference to `bdg_forward_ptr'
 *** Error code 1
 
 Stop in /mnt/usr/local/obj6/usr/src/sys/EP.
 *** Error code 1
 
 Stop in /usr/src.
 *** Error code 1
 
 Stop in /usr/src.
 
 Kernel config file follows:
 
 #start of file
 machine		i386
 cpu		I486_CPU
 cpu		I586_CPU
 cpu		I686_CPU
 ident		EP
 maxusers	4
 
 options		SCHED_4BSD
 options		INET			#InterNETworking
 options		FFS			#Berkeley Fast Filesystem
 options		COMPAT_43		#Compatible with BSD 4.3 [KEEP THIS!]
 options		IPFIREWALL
 options		IPFIREWALL_FORWARD
 options		IPDIVERT
 options		DUMMYNET
 
 device	isa
 device	fdc
 device	ata
 device	atadisk
 
 options ATA_STATIC_ID
 
 device		atkbdc
 device		atkbd
 device		vga
 options		VGA_NO_MODE_CHANGE
 device		sc
 options		SC_NO_CUTPASTE
 options		SC_NO_SYSMOUSE
 options		MAXCONS=8
 device		npx
 
 device		sio
 
 device	loop
 device	ppp
 device	pty
 device	bpf	#required by PPP_FILTER
 device	snp
 device  gif
 
 options		PPP_DEFLATE
 options		PPP_BSDCOMP
 options		PPP_FILTER
 options		TCP_DROP_SYNFIN
 options		DUMMYNET
 options		INCLUDE_CONFIG_FILE
 options		HZ=1000
 options		_KPOSIX_PRIORITY_SCHEDULING
 options		CLK_CALIBRATION_LOOP
 options		CLK_USE_I8254_CALIBRATION
 #end if file
 
 Eugene Grosbein
State-Changed-From-To: open->feedback 
State-Changed-By: remko 
State-Changed-When: Sun Dec 31 11:04:18 UTC 2006 
State-Changed-Why:  
Hello, so the problem is still current on a 6.0 machine, 
if you look through the GENERIC kernel configuation you 
will notice this line: 

device          ether           # Ethernet support 

Which basically tells : If you are doing anything that 
requires ethernetworking, you should include this. 

Now the following question would be ofcourse: Do you use 
any ethernetworking ? I think you do (i think almost 
everyone uses this): but i am not very sure about the 
definition of ethernet support here. 


Responsible-Changed-From-To: luigi->remko 
Responsible-Changed-By: remko 
Responsible-Changed-When: Sun Dec 31 11:04:18 UTC 2006 
Responsible-Changed-Why:  
grab the pr to discuss this with the submitter to see whether the 
current kernel option is sufficient. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=33833 
State-Changed-From-To: feedback->closed 
State-Changed-By: remko 
State-Changed-When: Fri Jan 5 12:16:07 UTC 2007 
State-Changed-Why:  
We cannot get the proper feedback, the submitters address bounces. If 
somone has feedback, please notify me. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=33833 
>Unformatted:
