From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 04:50:02 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56E871065687 for ; Sun, 19 Oct 2008 04:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2E9B18FC0A for ; Sun, 19 Oct 2008 04:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id m9J4o1K2050196 for ; Sun, 19 Oct 2008 04:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id m9J4o1mR050195; Sun, 19 Oct 2008 04:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 19 Oct 2008 04:50:01 GMT Resent-Message-Id: <200810190450.m9J4o1mR050195@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Thinker K.F. Li" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDCF21065689 for ; Sun, 19 Oct 2008 04:44:10 +0000 (UTC) (envelope-from thinker@branda.to) Received: from msr26.hinet.net (msr26.hinet.net [168.95.4.126]) by mx1.freebsd.org (Postfix) with ESMTP id B99638FC0A for ; Sun, 19 Oct 2008 04:44:09 +0000 (UTC) (envelope-from thinker@branda.to) Received: from cowboy.branda.to (122-120-16-55.dynamic.hinet.net [122.120.16.55]) by msr26.hinet.net (8.9.3/8.9.3) with ESMTP id MAA09530 for ; Sun, 19 Oct 2008 12:26:50 +0800 (CST) Received: from cowboy.branda.to (localhost [127.0.0.1]) by cowboy.branda.to (8.14.2/8.14.2) with ESMTP id m9J4QoZZ064565 for ; Sun, 19 Oct 2008 12:26:50 +0800 (CST) (envelope-from thinker@cowboy.branda.to) Received: (from thinker@localhost) by cowboy.branda.to (8.14.2/8.14.2/Submit) id m9J4QomM064564; Sun, 19 Oct 2008 12:26:50 +0800 (CST) (envelope-from thinker) Message-Id: <200810190426.m9J4QomM064564@cowboy.branda.to> Date: Sun, 19 Oct 2008 12:26:50 +0800 (CST) From: "Thinker K.F. Li" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: kern/128219: puc driver can not handle parallel port card with SUN1888 chip. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Thinker K.F. Li" List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2008 04:50:02 -0000 >Number: 128219 >Category: kern >Synopsis: puc driver can not handle parallel port card with SUN1888 chip. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Oct 19 04:50:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Thinker K.F. Li >Release: FreeBSD 8.0-CURRENT i386 >Organization: allwitz.com >Environment: System: FreeBSD cowboy.branda.to 8.0-CURRENT FreeBSD 8.0-CURRENT #7: Fri Oct 17 22:32:29 CST 2008 thinker@cowboy.branda.to:/usr/src/sys/i386/compile/cowboy i386 >Description: puc(4) is a Universal driver for serial & parallel ports. It supports variaous chips & boards except the one I bought from market, SUnix's daul ports parallel card with SUN1888 chip. >How-To-Repeat: Plug a parallel port card with SUN1888 to your FreeBSD box and try to drive it with puc driver module. Nothing is happening. puc(4) can not even recoganize the card. >Fix: apply following small patch on src/sys/dev/puc/, and rebuild the module in src/sys/modules/puc/. --- patch-freebsd-puc.diff begins here --- --- puc.c.orig 2008-10-17 23:55:22.000000000 +0800 +++ puc.c 2008-10-18 15:50:10.000000000 +0800 @@ -606,7 +606,7 @@ if (cookiep == NULL || res != port->p_ires) return (EINVAL); /* We demand that serdev devices use filter_only interrupts. */ - if (ihand != NULL) + if (ihand != NULL && port->p_type == PUC_TYPE_SERIAL) return (ENXIO); if (rman_get_device(port->p_ires) != originator) return (ENXIO); --- pucdata.c.orig 2008-10-17 15:50:37.000000000 +0800 +++ pucdata.c 2008-10-18 03:01:56.000000000 +0800 @@ -586,6 +586,12 @@ .config_function = puc_config_timedia }, + { 0x1409, 0x7268, 0xffff, 0, + "Sunix SUN1888 2 Port Parallel", + DEFAULT_RCLK * 8, + PUC_PORT_2P, 0x10, 8, 0, + }, + /* * Boards with an Oxford Semiconductor chip. * --- patch-freebsd-puc.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 13:05:20 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EEF91065687; Sun, 19 Oct 2008 13:05:20 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E9C2B8FC18; Sun, 19 Oct 2008 13:05:19 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (gavin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id m9JD5JZH028405; Sun, 19 Oct 2008 13:05:19 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id m9JD5JQZ028401; Sun, 19 Oct 2008 13:05:19 GMT (envelope-from gavin) Date: Sun, 19 Oct 2008 13:05:19 GMT Message-Id: <200810191305.m9JD5JQZ028401@freefall.freebsd.org> To: gavin@FreeBSD.org, freebsd-bugs@FreeBSD.org, keramida@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: bin/128058: [patch] pkg_create(1): pkg_create -n flag does not work (lack of code) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2008 13:05:20 -0000 Synopsis: [patch] pkg_create(1): pkg_create -n flag does not work (lack of code) Responsible-Changed-From-To: freebsd-bugs->keramida Responsible-Changed-By: gavin Responsible-Changed-When: Sun Oct 19 13:01:20 UTC 2008 Responsible-Changed-Why: Pass over to keramida, as he committed the fix to HEAD. Keramida: could you take a quick look at this? The original commit (svn r180361) gives a one-week MFC-after, so it may have just been missed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=128058 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 13:16:26 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE0B6106568C; Sun, 19 Oct 2008 13:16:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 83F398FC19; Sun, 19 Oct 2008 13:16:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id m9JDGQha030234; Sun, 19 Oct 2008 13:16:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id m9JDGP37030230; Sun, 19 Oct 2008 13:16:25 GMT (envelope-from linimon) Date: Sun, 19 Oct 2008 13:16:25 GMT Message-Id: <200810191316.m9JDGP37030230@freefall.freebsd.org> To: johan@giantfoo.org, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-fs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/119868: [zfs] [patch] 7.0 kernel panic during boot with ZFS and WD1600JS X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2008 13:16:26 -0000 Old Synopsis: [zfs] 7.0 kernel panic during boot with ZFS and WD1600JS New Synopsis: [zfs] [patch] 7.0 kernel panic during boot with ZFS and WD1600JS State-Changed-From-To: open->analyzed State-Changed-By: linimon State-Changed-When: Sun Oct 19 13:15:19 UTC 2008 State-Changed-Why: Patch has been submitted and has been confirmed as fixing the problem. Responsible-Changed-From-To: freebsd-bugs->freebsd-fs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 19 13:15:19 UTC 2008 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=119868 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 13:47:10 2008 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECB0B1065690 for ; Sun, 19 Oct 2008 13:47:10 +0000 (UTC) (envelope-from alancyang@gmail.com) Received: from mail-gx0-f16.google.com (mail-gx0-f16.google.com [209.85.217.16]) by mx1.freebsd.org (Postfix) with ESMTP id 6EB738FC1C for ; Sun, 19 Oct 2008 13:47:10 +0000 (UTC) (envelope-from alancyang@gmail.com) Received: by gxk9 with SMTP id 9so2630039gxk.19 for ; Sun, 19 Oct 2008 06:47:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=QFWLkeWXzdF/icptxbv4EjwnnQwjAZa3YY4i/itMqiY=; b=rhnLgJ2kg3lWyZS1ss8QbBTD8YvaLn8RJXuGh2aSZFm1tB1+Ygx+q+qoP33h+58nmh qZFDE68b0jtCNsbTHZ5ZaEYyMyDhTMoMdOz4IyoepMvX3MDYjXt0nMe4Z+dKIMPXl9fb JwZTH3lAj9br0gdJXwdE+HPRKLyl3gYU+Obq4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=LP3dfnE8eR/KoD/g7ofKEVyWJ3LG8sltd31wKaF+MLmO2d2Tj6ON8ThQEF1CFFQITW PtCMWsyNRKKZ3dv0qbobg4R2aTMn1V1RnTB7dN7kAs3gDUyagXqZfbigTh42qGIJr+wG W/UUXJ+7cJXkdvNO5jpknan6eiNcXxbwRRdG0= Received: by 10.151.41.14 with SMTP id t14mr10174997ybj.22.1224422760722; Sun, 19 Oct 2008 06:26:00 -0700 (PDT) Received: by 10.150.191.21 with HTTP; Sun, 19 Oct 2008 06:26:00 -0700 (PDT) Message-ID: <290865fd0810190626x6f43f39cv8a5f2faea80c1dbd@mail.gmail.com> Date: Sun, 19 Oct 2008 06:26:00 -0700 From: "alan yang" To: vwe@freebsd.org In-Reply-To: <200810130830.m9D8Utti014751@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_47974_29424431.1224422760711" References: <200810130830.m9D8Utti014751@freefall.freebsd.org> Cc: freebsd-bugs@freebsd.org Subject: Re: kern/128009: setkey(8) coredumps freebsd7 on sha1_result line 263 page fault X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2008 13:47:11 -0000 ------=_Part_47974_29424431.1224422760711 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline it panic. pl see attachment on related. sorry about the late info. On Mon, Oct 13, 2008 at 1:30 AM, wrote: > Synopsis: setkey(8) coredumps freebsd7 on sha1_result line 263 page fault > > State-Changed-From-To: open->feedback > State-Changed-By: vwe > State-Changed-When: Mon Oct 13 08:28:00 UTC 2008 > State-Changed-Why: > > Alan, > does setkey panic your box or does setkey core dump? > Please give us the actual panic message (if panicing your box) and the > backtraces. > Please don't hesitate to also post your kernel config and a dmesg for > your network configuration and crypto messages. > > > Responsible-Changed-From-To: freebsd-bugs->vwe > Responsible-Changed-By: vwe > Responsible-Changed-When: Mon Oct 13 08:28:00 UTC 2008 > Responsible-Changed-Why: > > track > > http://www.freebsd.org/cgi/query-pr.cgi?pr=128009 > ------=_Part_47974_29424431.1224422760711 Content-Type: application/octet-stream; name=MYKERNEL Content-Transfer-Encoding: base64 X-Attachment-Id: f_fmhs0di20 Content-Disposition: attachment; filename=MYKERNEL IwojIEdFTkVSSUMgLS0gR2VuZXJpYyBrZXJuZWwgY29uZmlndXJhdGlvbiBmaWxlIGZvciBGcmVl QlNEL2kzODYKIwojIEZvciBtb3JlIGluZm9ybWF0aW9uIG9uIHRoaXMgZmlsZSwgcGxlYXNlIHJl YWQgdGhlIGhhbmRib29rIHNlY3Rpb24gb24KIyBLZXJuZWwgQ29uZmlndXJhdGlvbiBGaWxlczoK IwojICAgIGh0dHA6Ly93d3cuRnJlZUJTRC5vcmcvZG9jL2VuX1VTLklTTzg4NTktMS9ib29rcy9o YW5kYm9vay9rZXJuZWxjb25maWctY29uZmlnLmh0bWwKIwojIFRoZSBoYW5kYm9vayBpcyBhbHNv IGF2YWlsYWJsZSBsb2NhbGx5IGluIC91c3Ivc2hhcmUvZG9jL2hhbmRib29rCiMgaWYgeW91J3Zl IGluc3RhbGxlZCB0aGUgZG9jIGRpc3RyaWJ1dGlvbiwgb3RoZXJ3aXNlIGFsd2F5cyBzZWUgdGhl CiMgRnJlZUJTRCBXb3JsZCBXaWRlIFdlYiBzZXJ2ZXIgKGh0dHA6Ly93d3cuRnJlZUJTRC5vcmcv KSBmb3IgdGhlCiMgbGF0ZXN0IGluZm9ybWF0aW9uLgojCiMgQW4gZXhoYXVzdGl2ZSBsaXN0IG9m IG9wdGlvbnMgYW5kIG1vcmUgZGV0YWlsZWQgZXhwbGFuYXRpb25zIG9mIHRoZQojIGRldmljZSBs aW5lcyBpcyBhbHNvIHByZXNlbnQgaW4gdGhlIC4uLy4uL2NvbmYvTk9URVMgYW5kIE5PVEVTIGZp bGVzLgojIElmIHlvdSBhcmUgaW4gZG91YnQgYXMgdG8gdGhlIHB1cnBvc2Ugb3IgbmVjZXNzaXR5 IG9mIGEgbGluZSwgY2hlY2sgZmlyc3QKIyBpbiBOT1RFUy4KIwojICRGcmVlQlNEOiBzcmMvc3lz L2kzODYvY29uZi9HRU5FUklDLHYgMS40NzQuMi4yLjIuMSAyMDA4LzAyLzA2IDAzOjI0OjI4IHNj b3R0bCBFeHAgJAoKY3B1CQlJNDg2X0NQVQpjcHUJCUk1ODZfQ1BVCmNwdQkJSTY4Nl9DUFUKI2lk ZW50CQlHRU5FUklDCmlkZW50CQlNWUtFUk5FTAoKIyBUbyBzdGF0aWNhbGx5IGNvbXBpbGUgaW4g ZGV2aWNlIHdpcmluZyBpbnN0ZWFkIG9mIC9ib290L2RldmljZS5oaW50cwojaGludHMJCSJHRU5F UklDLmhpbnRzIgkJIyBEZWZhdWx0IHBsYWNlcyB0byBsb29rIGZvciBkZXZpY2VzLgoKbWFrZW9w dGlvbnMJREVCVUc9LWcJCSMgQnVpbGQga2VybmVsIHdpdGggZ2RiKDEpIGRlYnVnIHN5bWJvbHMK Cm9wdGlvbnMgCVNDSEVEXzRCU0QJCSMgNEJTRCBzY2hlZHVsZXIKb3B0aW9ucyAJUFJFRU1QVElP TgkJIyBFbmFibGUga2VybmVsIHRocmVhZCBwcmVlbXB0aW9uCm9wdGlvbnMgCUlORVQJCQkjIElu dGVyTkVUd29ya2luZwpvcHRpb25zIAlJTkVUNgkJCSMgSVB2NiBjb21tdW5pY2F0aW9ucyBwcm90 b2NvbHMKb3B0aW9ucyAJU0NUUAkJCSMgU3RyZWFtIENvbnRyb2wgVHJhbnNtaXNzaW9uIFByb3Rv Y29sCm9wdGlvbnMgCUZGUwkJCSMgQmVya2VsZXkgRmFzdCBGaWxlc3lzdGVtCm9wdGlvbnMgCVNP RlRVUERBVEVTCQkjIEVuYWJsZSBGRlMgc29mdCB1cGRhdGVzIHN1cHBvcnQKb3B0aW9ucyAJVUZT X0FDTAkJCSMgU3VwcG9ydCBmb3IgYWNjZXNzIGNvbnRyb2wgbGlzdHMKb3B0aW9ucyAJVUZTX0RJ UkhBU0gJCSMgSW1wcm92ZSBwZXJmb3JtYW5jZSBvbiBiaWcgZGlyZWN0b3JpZXMKb3B0aW9ucyAJ VUZTX0dKT1VSTkFMCQkjIEVuYWJsZSBnam91cm5hbC1iYXNlZCBVRlMgam91cm5hbGluZwpvcHRp b25zIAlNRF9ST09UCQkJIyBNRCBpcyBhIHBvdGVudGlhbCByb290IGRldmljZQpvcHRpb25zIAlO RlNDTElFTlQJCSMgTmV0d29yayBGaWxlc3lzdGVtIENsaWVudApvcHRpb25zIAlORlNTRVJWRVIJ CSMgTmV0d29yayBGaWxlc3lzdGVtIFNlcnZlcgpvcHRpb25zIAlORlNfUk9PVAkJIyBORlMgdXNh YmxlIGFzIC8sIHJlcXVpcmVzIE5GU0NMSUVOVApvcHRpb25zIAlNU0RPU0ZTCQkJIyBNU0RPUyBG aWxlc3lzdGVtCm9wdGlvbnMgCUNEOTY2MAkJCSMgSVNPIDk2NjAgRmlsZXN5c3RlbQpvcHRpb25z IAlQUk9DRlMJCQkjIFByb2Nlc3MgZmlsZXN5c3RlbSAocmVxdWlyZXMgUFNFVURPRlMpCm9wdGlv bnMgCVBTRVVET0ZTCQkjIFBzZXVkby1maWxlc3lzdGVtIGZyYW1ld29yawpvcHRpb25zIAlHRU9N X1BBUlRfR1BUCQkjIEdVSUQgUGFydGl0aW9uIFRhYmxlcy4Kb3B0aW9ucyAJR0VPTV9MQUJFTAkJ IyBQcm92aWRlcyBsYWJlbGl6YXRpb24Kb3B0aW9ucyAJQ09NUEFUXzQzVFRZCQkjIEJTRCA0LjMg VFRZIGNvbXBhdCBbS0VFUCBUSElTIV0Kb3B0aW9ucyAJQ09NUEFUX0ZSRUVCU0Q0CQkjIENvbXBh dGlibGUgd2l0aCBGcmVlQlNENApvcHRpb25zIAlDT01QQVRfRlJFRUJTRDUJCSMgQ29tcGF0aWJs ZSB3aXRoIEZyZWVCU0Q1Cm9wdGlvbnMgCUNPTVBBVF9GUkVFQlNENgkJIyBDb21wYXRpYmxlIHdp dGggRnJlZUJTRDYKb3B0aW9ucyAJU0NTSV9ERUxBWT01MDAwCQkjIERlbGF5IChpbiBtcykgYmVm b3JlIHByb2JpbmcgU0NTSQpvcHRpb25zIAlLVFJBQ0UJCQkjIGt0cmFjZSgxKSBzdXBwb3J0Cm9w dGlvbnMgCVNZU1ZTSE0JCQkjIFNZU1Ytc3R5bGUgc2hhcmVkIG1lbW9yeQpvcHRpb25zIAlTWVNW TVNHCQkJIyBTWVNWLXN0eWxlIG1lc3NhZ2UgcXVldWVzCm9wdGlvbnMgCVNZU1ZTRU0JCQkjIFNZ U1Ytc3R5bGUgc2VtYXBob3JlcwpvcHRpb25zIAlfS1BPU0lYX1BSSU9SSVRZX1NDSEVEVUxJTkcg IyBQT1NJWCBQMTAwM18xQiByZWFsLXRpbWUgZXh0ZW5zaW9ucwpvcHRpb25zIAlLQkRfSU5TVEFM TF9DREVWCSMgaW5zdGFsbCBhIENERVYgZW50cnkgaW4gL2RldgpvcHRpb25zIAlBREFQVElWRV9H SUFOVAkJIyBHaWFudCBtdXRleCBpcyBhZGFwdGl2ZS4Kb3B0aW9ucyAJU1RPUF9OTUkJCSMgU3Rv cCBDUFVTIHVzaW5nIE5NSSBpbnN0ZWFkIG9mIElQSQpvcHRpb25zIAlBVURJVAkJCSMgU2VjdXJp dHkgZXZlbnQgYXVkaXRpbmcKCiMgVG8gbWFrZSBhbiBTTVAga2VybmVsLCB0aGUgbmV4dCB0d28g bGluZXMgYXJlIG5lZWRlZApvcHRpb25zIAlTTVAJCQkjIFN5bW1ldHJpYyBNdWx0aVByb2Nlc3Nv ciBLZXJuZWwKZGV2aWNlCQlhcGljCQkJIyBJL08gQVBJQwoKIyBDUFUgZnJlcXVlbmN5IGNvbnRy b2wKZGV2aWNlCQljcHVmcmVxCgojIEJ1cyBzdXBwb3J0LgpkZXZpY2UJCWVpc2EKZGV2aWNlCQlw Y2kKCiMgRmxvcHB5IGRyaXZlcwpkZXZpY2UJCWZkYwoKIyBBVEEgYW5kIEFUQVBJIGRldmljZXMK ZGV2aWNlCQlhdGEKZGV2aWNlCQlhdGFkaXNrCQkjIEFUQSBkaXNrIGRyaXZlcwpkZXZpY2UJCWF0 YXJhaWQJCSMgQVRBIFJBSUQgZHJpdmVzCmRldmljZQkJYXRhcGljZAkJIyBBVEFQSSBDRFJPTSBk cml2ZXMKZGV2aWNlCQlhdGFwaWZkCQkjIEFUQVBJIGZsb3BweSBkcml2ZXMKZGV2aWNlCQlhdGFw aXN0CQkjIEFUQVBJIHRhcGUgZHJpdmVzCm9wdGlvbnMgCUFUQV9TVEFUSUNfSUQJIyBTdGF0aWMg ZGV2aWNlIG51bWJlcmluZwoKIyBTQ1NJIENvbnRyb2xsZXJzCmRldmljZQkJYWhiCQkjIEVJU0Eg QUhBMTc0MiBmYW1pbHkKZGV2aWNlCQlhaGMJCSMgQUhBMjk0MCBhbmQgb25ib2FyZCBBSUM3eHh4 IGRldmljZXMKb3B0aW9ucyAJQUhDX1JFR19QUkVUVFlfUFJJTlQJIyBQcmludCByZWdpc3RlciBi aXRmaWVsZHMgaW4gZGVidWcKCQkJCQkjIG91dHB1dC4gIEFkZHMgfjEyOGsgdG8gZHJpdmVyLgpk ZXZpY2UJCWFoZAkJIyBBSEEzOTMyMC8yOTMyMCBhbmQgb25ib2FyZCBBSUM3OXh4IGRldmljZXMK b3B0aW9ucyAJQUhEX1JFR19QUkVUVFlfUFJJTlQJIyBQcmludCByZWdpc3RlciBiaXRmaWVsZHMg aW4gZGVidWcKCQkJCQkjIG91dHB1dC4gIEFkZHMgfjIxNWsgdG8gZHJpdmVyLgpkZXZpY2UJCWFt ZAkJIyBBTUQgNTNDOTc0IChUZWtyYW0gREMtMzkwKFQpKQpkZXZpY2UJCWhwdGlvcAkJIyBIaWdo cG9pbnQgUm9ja2V0UmFpZCAzeHh4IHNlcmllcwpkZXZpY2UJCWlzcAkJIyBRbG9naWMgZmFtaWx5 CiNkZXZpY2UgCWlzcGZ3CQkjIEZpcm13YXJlIGZvciBRTG9naWMgSEJBcy0gbm9ybWFsbHkgYSBt b2R1bGUKZGV2aWNlCQltcHQJCSMgTFNJLUxvZ2ljIE1QVC1GdXNpb24KI2RldmljZQkJbmNyCQkj IE5DUi9TeW1iaW9zIExvZ2ljCmRldmljZQkJc3ltCQkjIE5DUi9TeW1iaW9zIExvZ2ljIChuZXdl ciBjaGlwc2V0cyArIHRob3NlIG9mIGBuY3InKQpkZXZpY2UJCXRybQkJIyBUZWtyYW0gREMzOTVV L1VXL0YgREMzMTVVIGFkYXB0ZXJzCgpkZXZpY2UJCWFkdgkJIyBBZHZhbnN5cyBTQ1NJIGFkYXB0 ZXJzCmRldmljZQkJYWR3CQkjIEFkdmFuc3lzIHdpZGUgU0NTSSBhZGFwdGVycwpkZXZpY2UJCWFo YQkJIyBBZGFwdGVjIDE1NHggU0NTSSBhZGFwdGVycwpkZXZpY2UJCWFpYwkJIyBBZGFwdGVjIDE1 WzAxMl14IFNDU0kgYWRhcHRlcnMsIEFJQy02WzIzXTYwLgpkZXZpY2UJCWJ0CQkjIEJ1c2xvZ2lj L015bGV4IE11bHRpTWFzdGVyIFNDU0kgYWRhcHRlcnMKCmRldmljZQkJbmN2CQkjIE5DUiA1M0M1 MDAKZGV2aWNlCQluc3AJCSMgV29ya2JpdCBOaW5qYSBTQ1NJLTMKZGV2aWNlCQlzdGcJCSMgVE1D IDE4QzMwLzE4QzUwCgojIFNDU0kgcGVyaXBoZXJhbHMKZGV2aWNlCQlzY2J1cwkJIyBTQ1NJIGJ1 cyAocmVxdWlyZWQgZm9yIFNDU0kpCmRldmljZQkJY2gJCSMgU0NTSSBtZWRpYSBjaGFuZ2Vycwpk ZXZpY2UJCWRhCQkjIERpcmVjdCBBY2Nlc3MgKGRpc2tzKQpkZXZpY2UJCXNhCQkjIFNlcXVlbnRp YWwgQWNjZXNzICh0YXBlIGV0YykKZGV2aWNlCQljZAkJIyBDRApkZXZpY2UJCXBhc3MJCSMgUGFz c3Rocm91Z2ggZGV2aWNlIChkaXJlY3QgU0NTSSBhY2Nlc3MpCmRldmljZQkJc2VzCQkjIFNDU0kg RW52aXJvbm1lbnRhbCBTZXJ2aWNlcyAoYW5kIFNBRi1URSkKCiMgUkFJRCBjb250cm9sbGVycyBp bnRlcmZhY2VkIHRvIHRoZSBTQ1NJIHN1YnN5c3RlbQpkZXZpY2UJCWFtcgkJIyBBTUkgTWVnYVJB SUQKZGV2aWNlCQlhcmNtc3IJCSMgQXJlY2EgU0FUQSBJSSBSQUlECmRldmljZQkJYXNyCQkjIERQ VCBTbWFydFJBSUQgViwgVkkgYW5kIEFkYXB0ZWMgU0NTSSBSQUlECmRldmljZQkJY2lzcwkJIyBD b21wYXEgU21hcnQgUkFJRCA1KgpkZXZpY2UJCWRwdAkJIyBEUFQgU21hcnRjYWNoZSBJSUksIElW IC0gU2VlIE5PVEVTIGZvciBvcHRpb25zCmRldmljZQkJaHB0bXYJCSMgSGlnaHBvaW50IFJvY2tl dFJBSUQgMTgyeApkZXZpY2UJCWhwdHJyCQkjIEhpZ2hwb2ludCBSb2NrZXRSQUlEIDE3eHgsIDIy eHgsIDIzeHgsIDI1eHgKZGV2aWNlCQlpaXIJCSMgSW50ZWwgSW50ZWdyYXRlZCBSQUlECmRldmlj ZQkJaXBzCQkjIElCTSAoQWRhcHRlYykgU2VydmVSQUlECmRldmljZQkJbWx5CQkjIE15bGV4IEFj Y2VsZVJBSUQvZVh0cmVtZVJBSUQKZGV2aWNlCQl0d2EJCSMgM3dhcmUgOTAwMCBzZXJpZXMgUEFU QS9TQVRBIFJBSUQKCiMgUkFJRCBjb250cm9sbGVycwpkZXZpY2UJCWFhYwkJIyBBZGFwdGVjIEZT QSBSQUlECmRldmljZQkJYWFjcAkJIyBTQ1NJIHBhc3N0aHJvdWdoIGZvciBhYWMgKHJlcXVpcmVz IENBTSkKZGV2aWNlCQlpZGEJCSMgQ29tcGFxIFNtYXJ0IFJBSUQKZGV2aWNlCQltZmkJCSMgTFNJ IE1lZ2FSQUlEIFNBUwpkZXZpY2UJCW1seAkJIyBNeWxleCBEQUM5NjAgZmFtaWx5CmRldmljZQkJ cHN0CQkjIFByb21pc2UgU3VwZXJ0cmFrIFNYNjAwMApkZXZpY2UJCXR3ZQkJIyAzd2FyZSBBVEEg UkFJRAoKIyBhdGtiZGMwIGNvbnRyb2xzIGJvdGggdGhlIGtleWJvYXJkIGFuZCB0aGUgUFMvMiBt b3VzZQpkZXZpY2UJCWF0a2JkYwkJIyBBVCBrZXlib2FyZCBjb250cm9sbGVyCmRldmljZQkJYXRr YmQJCSMgQVQga2V5Ym9hcmQKZGV2aWNlCQlwc20JCSMgUFMvMiBtb3VzZQoKZGV2aWNlCQlrYmRt dXgJCSMga2V5Ym9hcmQgbXVsdGlwbGV4ZXIKCmRldmljZQkJdmdhCQkjIFZHQSB2aWRlbyBjYXJk IGRyaXZlcgoKZGV2aWNlCQlzcGxhc2gJCSMgU3BsYXNoIHNjcmVlbiBhbmQgc2NyZWVuIHNhdmVy IHN1cHBvcnQKCiMgc3lzY29ucyBpcyB0aGUgZGVmYXVsdCBjb25zb2xlIGRyaXZlciwgcmVzZW1i bGluZyBhbiBTQ08gY29uc29sZQpkZXZpY2UJCXNjCgpkZXZpY2UJCWFncAkJIyBzdXBwb3J0IHNl dmVyYWwgQUdQIGNoaXBzZXRzCgojIFBvd2VyIG1hbmFnZW1lbnQgc3VwcG9ydCAoc2VlIE5PVEVT IGZvciBtb3JlIG9wdGlvbnMpCiNkZXZpY2UJCWFwbQojIEFkZCBzdXNwZW5kL3Jlc3VtZSBzdXBw b3J0IGZvciB0aGUgaTgyNTQuCmRldmljZQkJcG10aW1lcgoKIyBQQ0NBUkQgKFBDTUNJQSkgc3Vw cG9ydAojIFBDTUNJQSBhbmQgY2FyZGJ1cyBicmlkZ2Ugc3VwcG9ydApkZXZpY2UJCWNiYgkJIyBj YXJkYnVzICh5ZW50YSkgYnJpZGdlCmRldmljZQkJcGNjYXJkCQkjIFBDIENhcmQgKDE2LWJpdCkg YnVzCmRldmljZQkJY2FyZGJ1cwkJIyBDYXJkQnVzICgzMi1iaXQpIGJ1cwoKIyBTZXJpYWwgKENP TSkgcG9ydHMKZGV2aWNlCQlzaW8JCSMgODI1MCwgMTZbNDVdNTAgYmFzZWQgc2VyaWFsIHBvcnRz CmRldmljZQkJdWFydAkJIyBHZW5lcmljIFVBUlQgZHJpdmVyCgojIFBhcmFsbGVsIHBvcnQKZGV2 aWNlCQlwcGMKZGV2aWNlCQlwcGJ1cwkJIyBQYXJhbGxlbCBwb3J0IGJ1cyAocmVxdWlyZWQpCmRl dmljZQkJbHB0CQkjIFByaW50ZXIKZGV2aWNlCQlwbGlwCQkjIFRDUC9JUCBvdmVyIHBhcmFsbGVs CmRldmljZQkJcHBpCQkjIFBhcmFsbGVsIHBvcnQgaW50ZXJmYWNlIGRldmljZQojZGV2aWNlCQl2 cG8JCSMgUmVxdWlyZXMgc2NidXMgYW5kIGRhCgojIElmIHlvdSd2ZSBnb3QgYSAiZHVtYiIgc2Vy aWFsIG9yIHBhcmFsbGVsIFBDSSBjYXJkIHRoYXQgaXMKIyBzdXBwb3J0ZWQgYnkgdGhlIHB1Yyg0 KSBnbHVlIGRyaXZlciwgdW5jb21tZW50IHRoZSBmb2xsb3dpbmcKIyBsaW5lIHRvIGVuYWJsZSBp dCAoY29ubmVjdHMgdG8gc2lvLCB1YXJ0IGFuZC9vciBwcGMgZHJpdmVycyk6CiNkZXZpY2UJCXB1 YwoKIyBQQ0kgRXRoZXJuZXQgTklDcy4KZGV2aWNlCQlkZQkJIyBERUMvSW50ZWwgREMyMXg0eCAo YGBUdWxpcCcnKQpkZXZpY2UJCWVtCQkjIEludGVsIFBSTy8xMDAwIGFkYXB0ZXIgR2lnYWJpdCBF dGhlcm5ldCBDYXJkCmRldmljZQkJaXhnYgkJIyBJbnRlbCBQUk8vMTBHYkUgRXRoZXJuZXQgQ2Fy ZApkZXZpY2UJCWxlCQkjIEFNRCBBbTc5MDAgTEFOQ0UgYW5kIEFtNzlDOXh4IFBDbmV0CmRldmlj ZQkJdHhwCQkjIDNDb20gM2NSOTkwIChgYFR5cGhvb24nJykKZGV2aWNlCQl2eAkJIyAzQ29tIDNj NTkwLCAzYzU5NSAoYGBWb3J0ZXgnJykKCiMgUENJIEV0aGVybmV0IE5JQ3MgdGhhdCB1c2UgdGhl IGNvbW1vbiBNSUkgYnVzIGNvbnRyb2xsZXIgY29kZS4KIyBOT1RFOiBCZSBzdXJlIHRvIGtlZXAg dGhlICdkZXZpY2UgbWlpYnVzJyBsaW5lIGluIG9yZGVyIHRvIHVzZSB0aGVzZSBOSUNzIQpkZXZp Y2UJCW1paWJ1cwkJIyBNSUkgYnVzIHN1cHBvcnQKZGV2aWNlCQliY2UJCSMgQnJvYWRjb20gQkNN NTcwNi9CQ001NzA4IEdpZ2FiaXQgRXRoZXJuZXQKZGV2aWNlCQliZmUJCSMgQnJvYWRjb20gQkNN NDQweCAxMC8xMDAgRXRoZXJuZXQKZGV2aWNlCQliZ2UJCSMgQnJvYWRjb20gQkNNNTcweHggR2ln YWJpdCBFdGhlcm5ldApkZXZpY2UJCWRjCQkjIERFQy9JbnRlbCAyMTE0MyBhbmQgdmFyaW91cyB3 b3JrYWxpa2VzCmRldmljZQkJZnhwCQkjIEludGVsIEV0aGVyRXhwcmVzcyBQUk8vMTAwQiAoODI1 NTcsIDgyNTU4KQpkZXZpY2UJCWxnZQkJIyBMZXZlbCAxIExYVDEwMDEgZ2lnYWJpdCBFdGhlcm5l dApkZXZpY2UJCW1zawkJIyBNYXJ2ZWxsL1N5c0tvbm5lY3QgWXVrb24gSUkgR2lnYWJpdCBFdGhl cm5ldApkZXZpY2UJCW5mZQkJIyBuVmlkaWEgbkZvcmNlIE1DUCBvbi1ib2FyZCBFdGhlcm5ldApk ZXZpY2UJCW5nZQkJIyBOYXRTZW1pIERQODM4MjAgZ2lnYWJpdCBFdGhlcm5ldAojZGV2aWNlCQlu dmUJCSMgblZpZGlhIG5Gb3JjZSBNQ1Agb24tYm9hcmQgRXRoZXJuZXQgTmV0d29ya2luZwpkZXZp Y2UJCXBjbgkJIyBBTUQgQW03OUM5N3ggUENJIDEwLzEwMCAocHJlY2VkZW5jZSBvdmVyICdsZScp CmRldmljZQkJcmUJCSMgUmVhbFRlayA4MTM5QysvODE2OS84MTY5Uy84MTEwUwpkZXZpY2UJCXJs CQkjIFJlYWxUZWsgODEyOS84MTM5CmRldmljZQkJc2YJCSMgQWRhcHRlYyBBSUMtNjkxNSAoYGBT dGFyZmlyZScnKQpkZXZpY2UJCXNpcwkJIyBTaWxpY29uIEludGVncmF0ZWQgU3lzdGVtcyBTaVMg OTAwL1NpUyA3MDE2CmRldmljZQkJc2sJCSMgU3lzS29ubmVjdCBTSy05ODR4ICYgU0stOTgyeCBn aWdhYml0IEV0aGVybmV0CmRldmljZQkJc3RlCQkjIFN1bmRhbmNlIFNUMjAxIChELUxpbmsgREZF LTU1MFRYKQpkZXZpY2UJCXN0Z2UJCSMgU3VuZGFuY2UvVGFtYXJhY2sgVEM5MDIxIGdpZ2FiaXQg RXRoZXJuZXQKZGV2aWNlCQl0aQkJIyBBbHRlb24gTmV0d29ya3MgVGlnb24gSS9JSSBnaWdhYml0 IEV0aGVybmV0CmRldmljZQkJdGwJCSMgVGV4YXMgSW5zdHJ1bWVudHMgVGh1bmRlckxBTgpkZXZp Y2UJCXR4CQkjIFNNQyBFdGhlclBvd2VyIElJICg4M2MxNzAgYGBFUElDJycpCmRldmljZQkJdmdl CQkjIFZJQSBWVDYxMnggZ2lnYWJpdCBFdGhlcm5ldApkZXZpY2UJCXZyCQkjIFZJQSBSaGluZSwg UmhpbmUgSUkKZGV2aWNlCQl3YgkJIyBXaW5ib25kIFc4OUM4NDBGCmRldmljZQkJeGwJCSMgM0Nv bSAzYzkweCAoYGBCb29tZXJhbmcnJywgYGBDeWNsb25lJycpCgojIElTQSBFdGhlcm5ldCBOSUNz LiAgcGNjYXJkIE5JQ3MgaW5jbHVkZWQuCmRldmljZQkJY3MJCSMgQ3J5c3RhbCBTZW1pY29uZHVj dG9yIENTODl4MCBOSUMKIyAnZGV2aWNlIGVkJyByZXF1aXJlcyAnZGV2aWNlIG1paWJ1cycKZGV2 aWNlCQllZAkJIyBORVsxMl0wMDAsIFNNQyBVbHRyYSwgM2M1MDMsIERTODM5MCBjYXJkcwpkZXZp Y2UJCWV4CQkjIEludGVsIEV0aGVyRXhwcmVzcyBQcm8vMTAgYW5kIFByby8xMCsKZGV2aWNlCQll cAkJIyBFdGhlcmxpbmsgSUlJIGJhc2VkIGNhcmRzCmRldmljZQkJZmUJCSMgRnVqaXRzdSBNQjg2 OTZ4IGJhc2VkIGNhcmRzCmRldmljZQkJaWUJCSMgRXRoZXJFeHByZXNzIDgvMTYsIDNDNTA3LCBT dGFyTEFOIDEwIGV0Yy4KZGV2aWNlCQlzbgkJIyBTTUMncyA5MDAwIHNlcmllcyBvZiBFdGhlcm5l dCBjaGlwcwpkZXZpY2UJCXhlCQkjIFhpcmNvbSBwY2NhcmQgRXRoZXJuZXQKCiMgV2lyZWxlc3Mg TklDIGNhcmRzCmRldmljZQkJd2xhbgkJIyA4MDIuMTEgc3VwcG9ydApkZXZpY2UJCXdsYW5fd2Vw CSMgODAyLjExIFdFUCBzdXBwb3J0CmRldmljZQkJd2xhbl9jY21wCSMgODAyLjExIENDTVAgc3Vw cG9ydApkZXZpY2UJCXdsYW5fdGtpcAkjIDgwMi4xMSBUS0lQIHN1cHBvcnQKZGV2aWNlCQl3bGFu X2FtcnIJIyBBTVJSIHRyYW5zbWl0IHJhdGUgY29udHJvbCBhbGdvcml0aG0KZGV2aWNlCQl3bGFu X3NjYW5fYXAJIyA4MDIuMTEgQVAgbW9kZSBzY2FubmluZwpkZXZpY2UJCXdsYW5fc2Nhbl9zdGEJ IyA4MDIuMTEgU1RBIG1vZGUgc2Nhbm5pbmcKZGV2aWNlCQlhbgkJIyBBaXJvbmV0IDQ1MDAvNDgw MCA4MDIuMTEgd2lyZWxlc3MgTklDcy4KZGV2aWNlCQlhdGgJCSMgQXRoZXJvcyBwY2kvY2FyZGJ1 cyBOSUMncwpkZXZpY2UJCWF0aF9oYWwJCSMgQXRoZXJvcyBIQUwgKEhhcmR3YXJlIEFjY2VzcyBM YXllcikKZGV2aWNlCQlhdGhfcmF0ZV9zYW1wbGUJIyBTYW1wbGVSYXRlIHR4IHJhdGUgY29udHJv bCBmb3IgYXRoCmRldmljZQkJYXdpCQkjIEJheVN0YWNrIDY2MCBhbmQgb3RoZXJzCmRldmljZQkJ cmFsCQkjIFJhbGluayBUZWNobm9sb2d5IFJUMjUwMCB3aXJlbGVzcyBOSUNzLgpkZXZpY2UJCXdp CQkjIFdhdmVMQU4vSW50ZXJzaWwvU3ltYm9sIDgwMi4xMSB3aXJlbGVzcyBOSUNzLgojZGV2aWNl CQl3bAkJIyBPbGRlciBub24gODAyLjExIFdhdmVsYW4gd2lyZWxlc3MgTklDLgoKIyBQc2V1ZG8g ZGV2aWNlcy4KZGV2aWNlCQlsb29wCQkjIE5ldHdvcmsgbG9vcGJhY2sKZGV2aWNlCQlyYW5kb20J CSMgRW50cm9weSBkZXZpY2UKZGV2aWNlCQlldGhlcgkJIyBFdGhlcm5ldCBzdXBwb3J0CmRldmlj ZQkJc2wJCSMgS2VybmVsIFNMSVAKZGV2aWNlCQlwcHAJCSMgS2VybmVsIFBQUApkZXZpY2UJCXR1 bgkJIyBQYWNrZXQgdHVubmVsLgpkZXZpY2UJCXB0eQkJIyBQc2V1ZG8tdHR5cyAodGVsbmV0IGV0 YykKZGV2aWNlCQltZAkJIyBNZW1vcnkgImRpc2tzIgpkZXZpY2UJCWdpZgkJIyBJUHY2IGFuZCBJ UHY0IHR1bm5lbGluZwpkZXZpY2UJCWZhaXRoCQkjIElQdjYtdG8tSVB2NCByZWxheWluZyAodHJh bnNsYXRpb24pCmRldmljZQkJZmlybXdhcmUJIyBmaXJtd2FyZSBhc3Npc3QgbW9kdWxlCgojIFRo ZSBgYnBmJyBkZXZpY2UgZW5hYmxlcyB0aGUgQmVya2VsZXkgUGFja2V0IEZpbHRlci4KIyBCZSBh d2FyZSBvZiB0aGUgYWRtaW5pc3RyYXRpdmUgY29uc2VxdWVuY2VzIG9mIGVuYWJsaW5nIHRoaXMh CiMgTm90ZSB0aGF0ICdicGYnIGlzIHJlcXVpcmVkIGZvciBESENQLgpkZXZpY2UJCWJwZgkJIyBC ZXJrZWxleSBwYWNrZXQgZmlsdGVyCgojIFVTQiBzdXBwb3J0CmRldmljZQkJdWhjaQkJIyBVSENJ IFBDSS0+VVNCIGludGVyZmFjZQpkZXZpY2UJCW9oY2kJCSMgT0hDSSBQQ0ktPlVTQiBpbnRlcmZh Y2UKZGV2aWNlCQllaGNpCQkjIEVIQ0kgUENJLT5VU0IgaW50ZXJmYWNlIChVU0IgMi4wKQpkZXZp Y2UJCXVzYgkJIyBVU0IgQnVzIChyZXF1aXJlZCkKI2RldmljZQkJdWRicAkJIyBVU0IgRG91Ymxl IEJ1bGsgUGlwZSBkZXZpY2VzCmRldmljZQkJdWdlbgkJIyBHZW5lcmljCmRldmljZQkJdWhpZAkJ IyAiSHVtYW4gSW50ZXJmYWNlIERldmljZXMiCmRldmljZQkJdWtiZAkJIyBLZXlib2FyZApkZXZp Y2UJCXVscHQJCSMgUHJpbnRlcgpkZXZpY2UJCXVtYXNzCQkjIERpc2tzL01hc3Mgc3RvcmFnZSAt IFJlcXVpcmVzIHNjYnVzIGFuZCBkYQpkZXZpY2UJCXVtcwkJIyBNb3VzZQpkZXZpY2UJCXVyYWwJ CSMgUmFsaW5rIFRlY2hub2xvZ3kgUlQyNTAwVVNCIHdpcmVsZXNzIE5JQ3MKZGV2aWNlCQlydW0J CSMgUmFsaW5rIFRlY2hub2xvZ3kgUlQyNTAxVVNCIHdpcmVsZXNzIE5JQ3MKZGV2aWNlCQl1cmlv CQkjIERpYW1vbmQgUmlvIDUwMCBNUDMgcGxheWVyCmRldmljZQkJdXNjYW5uZXIJIyBTY2FubmVy cwojIFVTQiBFdGhlcm5ldCwgcmVxdWlyZXMgbWlpYnVzCmRldmljZQkJYXVlCQkjIEFETXRlayBV U0IgRXRoZXJuZXQKZGV2aWNlCQlheGUJCSMgQVNJWCBFbGVjdHJvbmljcyBVU0IgRXRoZXJuZXQK ZGV2aWNlCQljZGNlCQkjIEdlbmVyaWMgVVNCIG92ZXIgRXRoZXJuZXQKZGV2aWNlCQljdWUJCSMg Q0FUQyBVU0IgRXRoZXJuZXQKZGV2aWNlCQlrdWUJCSMgS2F3YXNha2kgTFNJIFVTQiBFdGhlcm5l dApkZXZpY2UJCXJ1ZQkJIyBSZWFsVGVrIFJUTDgxNTAgVVNCIEV0aGVybmV0CgojIEZpcmVXaXJl IHN1cHBvcnQKZGV2aWNlCQlmaXJld2lyZQkjIEZpcmVXaXJlIGJ1cyBjb2RlCmRldmljZQkJc2Jw CQkjIFNDU0kgb3ZlciBGaXJlV2lyZSAoUmVxdWlyZXMgc2NidXMgYW5kIGRhKQpkZXZpY2UJCWZ3 ZQkJIyBFdGhlcm5ldCBvdmVyIEZpcmVXaXJlIChub24tc3RhbmRhcmQhKQpkZXZpY2UJCWZ3aXAJ CSMgSVAgb3ZlciBGaXJlV2lyZSAoUkZDIDI3MzQsMzE0NikKZGV2aWNlCQlkY29ucwkJIyBEdW1i IGNvbnNvbGUgZHJpdmVyCmRldmljZQkJZGNvbnNfY3JvbQkjIENvbmZpZ3VyYXRpb24gUk9NIGZv ciBkY29ucwoKIyAtLS0KIyBlbmFibGUgYnJpZGdpbmcKZGV2aWNlCQlpZl9icmlkZ2UKCiMgZW5h YmxlIElQc2VjCm9wdGlvbnMJCUlQU0VDCiMgb3B0aW9ucwkJSVBTRUNfRVNQCm9wdGlvbnMJCUlQ U0VDX0ZJTFRFUlRVTk5FTApvcHRpb25zCQlJUFNFQ19ERUJVRwpkZXZpY2UJCWNyeXB0bwoKIyBl bmFibGUgcGYKZGV2aWNlCQlwZgpkZXZpY2UJCXBmbG9nCmRldmljZQkJcGZzeW5jCgojIGVuYWJs ZSBBTFRRCm9wdGlvbnMJCUFMVFEKb3B0aW9ucwkJQUxUUV9DQlEKb3B0aW9ucwkJQUxUUV9SRUQK b3B0aW9ucwkJQUxUUV9SSU8Kb3B0aW9ucwkJQUxUUV9IRlNDCm9wdGlvbnMJCUFMVFFfUFJJUQpv cHRpb25zCQlBTFRRX05PUENDCgojIGVuYWJsZSBrZXJuZWwgZGVidWdnZXIKb3B0aW9ucwkJS0RC Cm9wdGlvbnMJCUREQgpvcHRpb25zCQlHREIKCg== ------=_Part_47974_29424431.1224422760711 Content-Type: text/plain; name=dmesg.txt Content-Transfer-Encoding: base64 X-Attachment-Id: f_fmhs1gun1 Content-Disposition: attachment; filename=dmesg.txt Q29weXJpZ2h0IChjKSAxOTkyLTIwMDggVGhlIEZyZWVCU0QgUHJvamVjdC4KQ29weXJpZ2h0IChj KSAxOTc5LCAxOTgwLCAxOTgzLCAxOTg2LCAxOTg4LCAxOTg5LCAxOTkxLCAxOTkyLCAxOTkzLCAx OTk0CglUaGUgUmVnZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLiBBbGwgcmln aHRzIHJlc2VydmVkLgpGcmVlQlNEIGlzIGEgcmVnaXN0ZXJlZCB0cmFkZW1hcmsgb2YgVGhlIEZy ZWVCU0QgRm91bmRhdGlvbi4KRnJlZUJTRCA3LjAtUkVMRUFTRSAjMjogV2VkIE9jdCAgOCAyMjox ODoyOSBQRFQgMjAwOAogICAgcm9vdEBQYXZpbGlvbi5nZW5vdmFuZXR3b3Jrcy5jb206L3Vzci9z cmMvc3lzL2kzODYvY29tcGlsZS9NWUtFUk5FTApUaW1lY291bnRlciAiaTgyNTQiIGZyZXF1ZW5j eSAxMTkzMTgyIEh6IHF1YWxpdHkgMApDUFU6IEludGVsIFBlbnRpdW0gSUlJICg1OTguNDgtTUh6 IDY4Ni1jbGFzcyBDUFUpCiAgT3JpZ2luID0gIkdlbnVpbmVJbnRlbCIgIElkID0gMHg2ODEgIFN0 ZXBwaW5nID0gMQogIEZlYXR1cmVzPTB4MzgzZjlmZjxGUFUsVk1FLERFLFBTRSxUU0MsTVNSLFBB RSxNQ0UsQ1g4LFNFUCxNVFJSLFBHRSxNQ0EsQ01PVixQQVQsUFNFMzYsTU1YLEZYU1IsU1NFPgpy ZWFsIG1lbW9yeSAgPSAyNjg0MjMxNjggKDI1NSBNQikKYXZhaWwgbWVtb3J5ID0gMjQ4NjY0MDY0 ICgyMzcgTUIpCmtiZDEgYXQga2JkbXV4MAphdGhfaGFsOiAwLjkuMjAuMyAoQVI1MjEwLCBBUjUy MTEsIEFSNTIxMiwgUkY1MTExLCBSRjUxMTIsIFJGMjQxMywgUkY1NDEzKQpocHRycjogSFBUIFJv Y2tldFJBSUQgY29udHJvbGxlciBkcml2ZXIgdjEuMSAoU2VwIDMwIDIwMDggMDk6NTc6NDUpCmNy eXB0b3NvZnQwOiA8c29mdHdhcmUgY3J5cHRvPiBvbiBtb3RoZXJib2FyZAphY3BpMDogPEFTVVMg S2VzdHJlbD4gb24gbW90aGVyYm9hcmQKYWNwaTA6IFtJVEhSRUFEXQphY3BpMDogUG93ZXIgQnV0 dG9uIChmaXhlZCkKYWNwaTA6IHJlc2VydmF0aW9uIG9mIDAsIGEwMDAwICgzKSBmYWlsZWQKYWNw aTA6IHJlc2VydmF0aW9uIG9mIDEwMDAwMCwgZmYwMDAwMCAoMykgZmFpbGVkClRpbWVjb3VudGVy ICJBQ1BJLXNhZmUiIGZyZXF1ZW5jeSAzNTc5NTQ1IEh6IHF1YWxpdHkgODUwCmFjcGlfdGltZXIw OiA8MjQtYml0IHRpbWVyIGF0IDMuNTc5NTQ1TUh6PiBwb3J0IDB4ZTQwOC0weGU0MGIgb24gYWNw aTAKY3B1MDogPEFDUEkgQ1BVPiBvbiBhY3BpMApwY2liMDogPEFDUEkgSG9zdC1QQ0kgYnJpZGdl PiBwb3J0IDB4Y2Y4LTB4Y2ZmIG9uIGFjcGkwCnBjaTA6IDxBQ1BJIFBDSSBidXM+IG9uIHBjaWIw CmFncDA6IDxWSUEgODJDNjkxIChBcG9sbG8gUHJvKSBob3N0IHRvIFBDSSBicmlkZ2U+IG9uIGhv c3RiMAphZ3AwOiBhcGVydHVyZSBzaXplIGlzIDI1Nk0KcGNpYjE6IDxQQ0ktUENJIGJyaWRnZT4g YXQgZGV2aWNlIDEuMCBvbiBwY2kwCnBjaTE6IDxQQ0kgYnVzPiBvbiBwY2liMQp2Z2FwY2kwOiA8 VkdBLWNvbXBhdGlibGUgZGlzcGxheT4gbWVtIDB4ZTAwMDAwMDAtMHhlMGZmZmZmZiwweGUyMDAw MDAwLTB4ZTNmZmZmZmYgaXJxIDExIGF0IGRldmljZSAwLjAgb24gcGNpMQppc2FiMDogPFBDSS1J U0EgYnJpZGdlPiBhdCBkZXZpY2UgNy4wIG9uIHBjaTAKaXNhMDogPElTQSBidXM+IG9uIGlzYWIw CmF0YXBjaTA6IDxWSUEgODJDNTk2QiBVRE1BNjYgY29udHJvbGxlcj4gcG9ydCAweDFmMC0weDFm NywweDNmNiwweDE3MC0weDE3NywweDM3NiwweGQ4MDAtMHhkODBmIGF0IGRldmljZSA3LjEgb24g cGNpMAphdGEwOiA8QVRBIGNoYW5uZWwgMD4gb24gYXRhcGNpMAphdGEwOiBbSVRIUkVBRF0KYXRh MTogPEFUQSBjaGFubmVsIDE+IG9uIGF0YXBjaTAKYXRhMTogW0lUSFJFQURdCnVoY2kwOiA8VklB IDgzQzU3MiBVU0IgY29udHJvbGxlcj4gcG9ydCAweGQ0MDAtMHhkNDFmIGlycSA5IGF0IGRldmlj ZSA3LjIgb24gcGNpMAp1aGNpMDogW0dJQU5ULUxPQ0tFRF0KdWhjaTA6IFtJVEhSRUFEXQp1c2Iw OiA8VklBIDgzQzU3MiBVU0IgY29udHJvbGxlcj4gb24gdWhjaTAKdXNiMDogVVNCIHJldmlzaW9u IDEuMAp1aHViMDogPFZJQSBVSENJIHJvb3QgaHViLCBjbGFzcyA5LzAsIHJldiAxLjAwLzEuMDAs IGFkZHIgMT4gb24gdXNiMAp1aHViMDogMiBwb3J0cyB3aXRoIDIgcmVtb3ZhYmxlLCBzZWxmIHBv d2VyZWQKcGNpMDogPGJyaWRnZSwgSE9TVC1QQ0k+IGF0IGRldmljZSA3LjMgKG5vIGRyaXZlciBh dHRhY2hlZCkKcmwwOiA8QWNjdG9uIE1QWCA1MDMwLzUwMzggMTAvMTAwQmFzZVRYPiBwb3J0IDB4 ZDAwMC0weGQwZmYgbWVtIDB4ZGY4MDAwMDAtMHhkZjgwMDBmZiBpcnEgOSBhdCBkZXZpY2UgMTAu MCBvbiBwY2kwCm1paWJ1czA6IDxNSUkgYnVzPiBvbiBybDAKcmxwaHkwOiA8UmVhbFRlayBpbnRl cm5hbCBtZWRpYSBpbnRlcmZhY2U+IFBIWSAwIG9uIG1paWJ1czAKcmxwaHkwOiAgMTBiYXNlVCwg MTBiYXNlVC1GRFgsIDEwMGJhc2VUWCwgMTAwYmFzZVRYLUZEWCwgYXV0bwpybDA6IEV0aGVybmV0 IGFkZHJlc3M6IDAwOjEwOmI1OjQ5OjA2OjNhCnJsMDogW0lUSFJFQURdCnBjaTA6IDxzaW1wbGUg Y29tbXM+IGF0IGRldmljZSAxMS4wIChubyBkcml2ZXIgYXR0YWNoZWQpCnBjaTA6IDxtdWx0aW1l ZGlhLCBhdWRpbz4gYXQgZGV2aWNlIDEyLjAgKG5vIGRyaXZlciBhdHRhY2hlZCkKZmRjMDogPGZs b3BweSBkcml2ZSBjb250cm9sbGVyPiBwb3J0IDB4M2YyLTB4M2Y1LDB4M2Y3IGlycSA2IGRycSAy IG9uIGFjcGkwCmZkYzA6IFtGSUxURVJdCmZkMDogPDE0NDAtS0IgMy41IiBkcml2ZT4gb24gZmRj MCBkcml2ZSAwCnNpbzA6IHJlc2VydmVkIGZvciBsb3ctbGV2ZWwgaS9vCnNpbzA6IHJlc2VydmVk IGZvciBsb3ctbGV2ZWwgaS9vCmF0a2JkYzA6IDxLZXlib2FyZCBjb250cm9sbGVyIChpODA0Mik+ IHBvcnQgMHg2MCwweDY0IGlycSAxIG9uIGFjcGkwCmF0a2JkMDogPEFUIEtleWJvYXJkPiBpcnEg MSBvbiBhdGtiZGMwCmtiZDAgYXQgYXRrYmQwCmF0a2JkMDogW0dJQU5ULUxPQ0tFRF0KYXRrYmQw OiBbSVRIUkVBRF0KcHNtMDogPFBTLzIgTW91c2U+IGlycSAxMiBvbiBhdGtiZGMwCnBzbTA6IFtH SUFOVC1MT0NLRURdCnBzbTA6IFtJVEhSRUFEXQpwc20wOiBtb2RlbCBJbnRlbGxpTW91c2UsIGRl dmljZSBJRCAzCnNpbzA6IHJlc2VydmVkIGZvciBsb3ctbGV2ZWwgaS9vCnNpbzA6IHJlc2VydmVk IGZvciBsb3ctbGV2ZWwgaS9vCnBtdGltZXIwIG9uIGlzYTAKb3JtMDogPElTQSBPcHRpb24gUk9N PiBhdCBpb21lbSAweGMwMDAwLTB4Y2E3ZmYgcG5waWQgT1JNMDAwMCBvbiBpc2EwCnBwYzA6IDxQ YXJhbGxlbCBwb3J0PiBhdCBwb3J0IDB4Mzc4LTB4MzdmIGlycSA3IG9uIGlzYTAKcHBjMDogU01D LWxpa2UgY2hpcHNldCAoRUNQL0VQUC9QUzIvTklCQkxFKSBpbiBDT01QQVRJQkxFIG1vZGUKcHBj MDogRklGTyB3aXRoIDE2LzE2LzggYnl0ZXMgdGhyZXNob2xkCnBwYnVzMDogPFBhcmFsbGVsIHBv cnQgYnVzPiBvbiBwcGMwCnBwYnVzMDogW0lUSFJFQURdCnBsaXAwOiA8UExJUCBuZXR3b3JrIGlu dGVyZmFjZT4gb24gcHBidXMwCmxwdDA6IDxQcmludGVyPiBvbiBwcGJ1czAKbHB0MDogSW50ZXJy dXB0LWRyaXZlbiBwb3J0CnBwaTA6IDxQYXJhbGxlbCBJL08+IG9uIHBwYnVzMApwcGMwOiBbR0lB TlQtTE9DS0VEXQpwcGMwOiBbSVRIUkVBRF0Kc2MwOiA8U3lzdGVtIGNvbnNvbGU+IGF0IGZsYWdz IDB4MTAwIG9uIGlzYTAKc2MwOiBWR0EgPDE2IHZpcnR1YWwgY29uc29sZXMsIGZsYWdzPTB4MzAw PgpzaW8wOiByZXNlcnZlZCBmb3IgbG93LWxldmVsIGkvbwpzaW8xIGF0IHBvcnQgMHgyZjgtMHgy ZmYgaXJxIDMgb24gaXNhMApzaW8xOiB0eXBlIDE2NTUwQQpzaW8xOiBbRklMVEVSXQp2Z2EwOiA8 R2VuZXJpYyBJU0EgVkdBPiBhdCBwb3J0IDB4M2MwLTB4M2RmIGlvbWVtIDB4YTAwMDAtMHhiZmZm ZiBvbiBpc2EwCmF1ZTA6IDxBRE10ZWsgVVNCIFRvIExBTiBDb252ZXJ0ZXIsIGNsYXNzIDAvMCwg cmV2IDEuMTAvMS4wMSwgYWRkciAyPiBvbiB1aHViMAptaWlidXMxOiA8TUlJIGJ1cz4gb24gYXVl MAphY3BoeTA6IDxBQ1hYWCAxMC8xMDAgbWVkaWEgaW50ZXJmYWNlPiBQSFkgMSBvbiBtaWlidXMx CmFjcGh5MDogIDEwMGJhc2VGWCwgMTAwYmFzZUZYLUZEWCwgMTBiYXNlVCwgMTBiYXNlVC1GRFgs IDEwMGJhc2VUWCwgMTAwYmFzZVRYLUZEWCwgYXV0bwphdWUwOiBFdGhlcm5ldCBhZGRyZXNzOiAw MDoxNDpkMToxNTo2MzozYwphdWUxOiA8QURNdGVrIFVTQiBUbyBMQU4gQ29udmVydGVyLCBjbGFz cyAwLzAsIHJldiAxLjEwLzEuMDEsIGFkZHIgMz4gb24gdWh1YjAKbWlpYnVzMjogPE1JSSBidXM+ IG9uIGF1ZTEKYWNwaHkxOiA8QUNYWFggMTAvMTAwIG1lZGlhIGludGVyZmFjZT4gUEhZIDEgb24g bWlpYnVzMgphY3BoeTE6ICAxMDBiYXNlRlgsIDEwMGJhc2VGWC1GRFgsIDEwYmFzZVQsIDEwYmFz ZVQtRkRYLCAxMDBiYXNlVFgsIDEwMGJhc2VUWC1GRFgsIGF1dG8KYXVlMTogRXRoZXJuZXQgYWRk cmVzczogMDA6MTg6ZTc6MTU6ZjU6YTIKVGltZWNvdW50ZXIgIlRTQyIgZnJlcXVlbmN5IDU5ODQ3 NzY1OSBIeiBxdWFsaXR5IDgwMApUaW1lY291bnRlcnMgdGljayBldmVyeSAxLjAwMCBtc2VjCkZh c3QgSVBzZWM6IEluaXRpYWxpemVkIFNlY3VyaXR5IEFzc29jaWF0aW9uIFByb2Nlc3NpbmcuCmhw dHJyOiBubyBjb250cm9sbGVyIGRldGVjdGVkLgphZDA6IDM5MDgyTUIgPE1heHRvciA1NDA5OFU4 IERBNjIwQ1EwPiBhdCBhdGEwLW1hc3RlciBVRE1BNjYKYWQxOiA3NjMxOU1CIDxXREMgV0Q4MDBK Qi0wMERVQTMgNzUuMTNCNzU+IGF0IGF0YTAtc2xhdmUgVURNQTY2CmFjZDA6IENEUlcgPExHIENE LVJXIENFRC04MDgwQi8xLjA1PiBhdCBhdGExLW1hc3RlciBVRE1BMzMKYWNkMTogRFZEUk9NIDxQ aW9uZWVyIERWRC1ST00gQVRBUElNb2RlbCBEVkQtMTE0IDAxMjQvRTEuMjQ+IGF0IGF0YTEtc2xh dmUgVURNQTMzClRyeWluZyB0byBtb3VudCByb290IGZyb20gdWZzOi9kZXYvYWQwczFhCldBUk5J Tkc6IC8gd2FzIG5vdCBwcm9wZXJseSBkaXNtb3VudGVkCldBUk5JTkc6IC91c3Igd2FzIG5vdCBw cm9wZXJseSBkaXNtb3VudGVkCldBUk5JTkc6IC92YXIgd2FzIG5vdCBwcm9wZXJseSBkaXNtb3Vu dGVkCi92YXI6IG1vdW50IHBlbmRpbmcgZXJyb3I6IGJsb2NrcyA0IGZpbGVzIDAKV0FSTklORzog L2FkMSB3YXMgbm90IHByb3Blcmx5IGRpc21vdW50ZWQK ------=_Part_47974_29424431.1224422760711 Content-Type: text/plain; name=gdb.txt Content-Transfer-Encoding: base64 X-Attachment-Id: f_fmhs1pnm2 Content-Disposition: attachment; filename=gdb.txt IzAgIGRvYWR1bXAgKCkgYXQgcGNwdS5oOjE5NQojMSAgMHhjMDdhMjIxNyBpbiBib290IChob3d0 bz0yNjApIGF0IC4uLy4uLy4uL2tlcm4va2Vybl9zaHV0ZG93bi5jOjQwOQojMiAgMHhjMDdhMjUw YiBpbiBwYW5pYyAoZm10PVZhcmlhYmxlICJmbXQiIGlzIG5vdCBhdmFpbGFibGUuCikgYXQgLi4v Li4vLi4va2Vybi9rZXJuX3NodXRkb3duLmM6NTYzCiMzICAweGMwNGQyMWU3IGluIGRiX3Bhbmlj IChhZGRyPUNvdWxkIG5vdCBmaW5kIHRoZSBmcmFtZSBiYXNlIGZvciAiZGJfcGFuaWMiLgopIGF0 IC4uLy4uLy4uL2RkYi9kYl9jb21tYW5kLmM6NDMzCiM0ICAweGMwNGQyOTQ1IGluIGRiX2NvbW1h bmRfbG9vcCAoKSBhdCAuLi8uLi8uLi9kZGIvZGJfY29tbWFuZC5jOjQwMQojNSAgMHhjMDRkNDM3 NSBpbiBkYl90cmFwICh0eXBlPTEyLCBjb2RlPTApIGF0IC4uLy4uLy4uL2RkYi9kYl9tYWluLmM6 MjIyCiM2ICAweGMwN2M5NGU2IGluIGtkYl90cmFwICh0eXBlPTEyLCBjb2RlPTAsIHRmPTB4Y2Qw ZjM3NjApCiAgICBhdCAuLi8uLi8uLi9rZXJuL3N1YnJfa2RiLmM6NTAyCiM3ICAweGMwYWQwOThm IGluIHRyYXBfZmF0YWwgKGZyYW1lPTB4Y2QwZjM3NjAsIGV2YT0wKQogICAgYXQgLi4vLi4vLi4v aTM4Ni9pMzg2L3RyYXAuYzo4OTAKIzggIDB4YzBhZDBjNTAgaW4gdHJhcF9wZmF1bHQgKGZyYW1l PTB4Y2QwZjM3NjAsIHVzZXJtb2RlPTAsIGV2YT0wKQogICAgYXQgLi4vLi4vLi4vaTM4Ni9pMzg2 L3RyYXAuYzo4MTIKIzkgIDB4YzBhZDE2NGEgaW4gdHJhcCAoZnJhbWU9MHhjZDBmMzc2MCkgYXQg Li4vLi4vLi4vaTM4Ni9pMzg2L3RyYXAuYzo0OTAKIzEwIDB4YzBhYjZiNmIgaW4gY2FsbHRyYXAg KCkgYXQgLi4vLi4vLi4vaTM4Ni9pMzg2L2V4Y2VwdGlvbi5zOjEzOQojMTEgMHhjMDRkMDViYSBp biBzaGExX3Jlc3VsdCAoY3R4dD0weGMyNmM4ZDgwLCBkaWdlc3QwPTB4MCkKICAgIGF0IC4uLy4u Ly4uL2NyeXB0by9zaGExLmM6MjYzCiMxMiAweGMwOTdkNDE4IGluIFNIQTFGaW5hbF9pbnQgKGJs az0weDAsIGN0eD0weGMyNmM4ZDgwKQogICAgYXQgLi4vLi4vLi4vb3BlbmNyeXB0by94Zm9ybS5j OjY0MQojMTMgMHhjMDk3N2JjYiBpbiBzd2NyX2F1dGhwcmVwYXJlIChheGY9MHhjMGMyYzcwYywg c3c9MHhjMjMzNzJlMCwgCiAgICBrZXk9MHhjMjMzN2MwMCAiMTIzNDU2NzgxMjM0NTY3ODEyMzQi LCBrbGVuPTIwKQogICAgYXQgLi4vLi4vLi4vb3BlbmNyeXB0by9jcnlwdG9zb2Z0LmM6NDM2CiMx NCAweGMwOTc5Mjg5IGluIHN3Y3JfbmV3c2Vzc2lvbiAoZGV2PTB4YzIxZjY5ODAsIHNpZD0weGNk MGYzODUwLCAKICAgIGNyaT0weGNkMGYzOGE0KSBhdCAuLi8uLi8uLi9vcGVuY3J5cHRvL2NyeXB0 b3NvZnQuYzo3NDkKIzE1IDB4YzA5NzVjZjggaW4gY3J5cHRvX25ld3Nlc3Npb24gKHNpZD0weGMy NmM4ZDc4LCBjcmk9MHhjZDBmMzg4MCwgCiAgICBjcmlkPTUwMzMxNjQ4KSBhdCBjcnlwdG9kZXZf aWYuaDoyOAojMTYgMHhjMDkzNzE0ZSBpbiBlc3BfaW5pdCAoc2F2PTB4YzI2YzhkMDAsIHhzcD0w eGMwYzJhNzg0KQogICAgYXQgLi4vLi4vLi4vbmV0aXBzZWMveGZvcm1fZXNwLmM6MjI2CiMxNyAw eGMwOTI0NGUzIGluIHhmb3JtX2luaXQgKHNhdj0weGMyNmM4ZDAwLCB4ZnR5cGU9MykKICAgIGF0 IC4uLy4uLy4uL25ldGlwc2VjL2lwc2VjLmM6MTk2NwojMTggMHhjMDkyYTc2YyBpbiBrZXlfc2V0 c2F2YWwgKHNhdj0weGMyNmM4ZDAwLCBtPVZhcmlhYmxlICJtIiBpcyBub3QgYXZhaWxhYmxlLgop IGF0IC4uLy4uLy4uL25ldGlwc2VjL2tleS5jOjMxMjEKIzE5IDB4YzA5MmFhNjQgaW4ga2V5X25l d3NhdiAobT0weGMyM2Q4YjAwLCBtaHA9MHhjZDBmMzlmNCwgc2FoPTB4YzI2YzhiODAsIAogICAg ZXJycD0weGNkMGYzOTY4LCB3aGVyZT0weGMwYjdjM2YyICIuLi8uLi8uLi9uZXRpcHNlYy9rZXku YyIsIHRhZz00OTUwKQogICAgYXQgLi4vLi4vLi4vbmV0aXBzZWMva2V5LmM6Mjc1NAojMjAgMHhj MDkzMDJmYiBpbiBrZXlfYWRkIChzbz0weGMyNGU0N2JjLCBtPTB4YzIzZDhiMDAsIG1ocD0weGNk MGYzOWY0KQogICAgYXQgLi4vLi4vLi4vbmV0aXBzZWMva2V5LmM6NDk1MAojMjEgMHhjMDkzMzA0 NyBpbiBrZXlfcGFyc2UgKG09MHhjMjNkOGIwMCwgc289MHhjMjRlNDdiYykKICAgIGF0IC4uLy4u Ly4uL25ldGlwc2VjL2tleS5jOjY4OTgKIzIyIDB4YzA5MzRiMjggaW4ga2V5X291dHB1dCAobT0w eGMyM2Q4YjAwLCBzbz0weGMyNGU0N2JjKQogICAgYXQgLi4vLi4vLi4vbmV0aXBzZWMva2V5c29j ay5jOjExOQojMjMgMHhjMDg1MDFiOSBpbiByYXdfdXNlbmQgKHNvPTB4YzI0ZTQ3YmMsIGZsYWdz PVZhcmlhYmxlICJmbGFncyIgaXMgbm90IGF2YWlsYWJsZS4KKSBhdCAuLi8uLi8uLi9uZXQvcmF3 X3VzcnJlcS5jOjI2NwojMjQgMHhjMDkzM2ZlNSBpbiBrZXlfc2VuZCAoc289MHhjMjRlNDdiYywg ZmxhZ3M9MCwgbT0weGMyM2Q4YjAwLCBuYW09MHgwLCAKICAgIGNvbnRyb2w9MHgwLCB0ZD0weGMy NmFiNjMwKSBhdCAuLi8uLi8uLi9uZXRpcHNlYy9rZXlzb2NrLmM6NTAxCiMyNSAweGMwN2Y3ODc1 IGluIHNvc2VuZF9nZW5lcmljIChzbz0weGMyNGU0N2JjLCBhZGRyPTB4MCwgdWlvPTB4Y2QwZjNi ZTgsIAogICAgdG9wPTB4YzIzZDhiMDAsIGNvbnRyb2w9MHgwLCBmbGFncz0wLCB0ZD0weGMyNmFi NjMwKQogICAgYXQgLi4vLi4vLi4va2Vybi91aXBjX3NvY2tldC5jOjEyNDAKIzI2IDB4YzA3ZjM4 M2YgaW4gc29zZW5kIChzbz0weGMyNGU0N2JjLCBhZGRyPTB4MCwgdWlvPTB4Y2QwZjNiZTgsIHRv cD0weDAsIAogICAgY29udHJvbD0weDAsIGZsYWdzPTAsIHRkPTB4YzI2YWI2MzApIGF0IC4uLy4u Ly4uL2tlcm4vdWlwY19zb2NrZXQuYzoxMjg2CiMyNyAweGMwN2Y5ZmM2IGluIGtlcm5fc2VuZGl0 ICh0ZD0weGMyNmFiNjMwLCBzPTQsIG1wPTB4Y2QwZjNjNjQsIGZsYWdzPTAsIAogICAgY29udHJv bD0weDAsIHNlZ2ZsZz1VSU9fVVNFUlNQQUNFKSBhdCAuLi8uLi8uLi9rZXJuL3VpcGNfc3lzY2Fs bHMuYzo3ODkKIzI4IDB4YzA3ZmQwODEgaW4gc2VuZGl0ICh0ZD0weGMyNmFiNjMwLCBzPTQsIG1w PTB4Y2QwZjNjNjQsIGZsYWdzPTApCiAgICBhdCAuLi8uLi8uLi9rZXJuL3VpcGNfc3lzY2FsbHMu Yzo3MzAKIzI5IDB4YzA3ZmQxOTggaW4gc2VuZHRvICh0ZD0weGMyNmFiNjMwLCB1YXA9MHhjZDBm M2NmYykKICAgIGF0IC4uLy4uLy4uL2tlcm4vdWlwY19zeXNjYWxscy5jOjg0MQojMzAgMHhjMGFk MGZhNSBpbiBzeXNjYWxsIChmcmFtZT0weGNkMGYzZDM4KSBhdCAuLi8uLi8uLi9pMzg2L2kzODYv dHJhcC5jOjEwMzUKIzMxIDB4YzBhYjZiZDAgaW4gWGludDB4ODBfc3lzY2FsbCAoKSBhdCAuLi8u Li8uLi9pMzg2L2kzODYvZXhjZXB0aW9uLnM6MTk2CiMzMiAweDAwMDAwMDMzIGluID8/ICgpCg== ------=_Part_47974_29424431.1224422760711 Content-Type: application/octet-stream; name=kmsg Content-Transfer-Encoding: base64 X-Attachment-Id: f_fmhs1yvv3 Content-Disposition: attachment; filename=kmsg RnJlZUJTRCBQYXZpbGlvbi5nZW5vdmFuZXR3b3Jrcy5jb20gNy4wLVJFTEVBU0UgRnJlZUJTRCA3 LjAtUkVMRUFTRSAjMjogV2VkIE9jdCAgOCAyMjoxODoyOSBQRFQgMjAwOCAgICAgcm9vdEBQYXZp bGlvbi5nZW5vdmFuZXR3b3Jrcy5jb206L3Vzci9zcmMvc3lzL2kzODYvY29tcGlsZS9NWUtFUk5F TCAgaTM4Ngo= ------=_Part_47974_29424431.1224422760711 Content-Type: application/octet-stream; name=setkey.conf Content-Transfer-Encoding: base64 X-Attachment-Id: f_fmhs2b1j4 Content-Disposition: attachment; filename=setkey.conf I3NwZGFkZCAxMC4yLjAuMC8xNiAxMC4xLjAuMC8xNiBhbnkgLVAgb3V0IGlwc2VjIGVzcC90dW5u ZWwvMTkyLjE2OC4wLjExMC0xOTIuMTY4LjAuMTAxL3JlcXVpcmUgOwojc3BkYWRkIDEwLjEuMC4w LzE2IDEwLjIuMC4wLzE2IGFueSAtUCBpbiAgaXBzZWMgZXNwL3R1bm5lbC8xOTIuMTY4LjAuMTAx LTE5Mi4xNjguMC4xMTAvcmVxdWlyZSA7CmFkZCAxOTIuMTY4LjAuMTAxIDE5Mi4xNjguMC4xMTAg ZXNwLW9sZCAweDEwMDAxIC1tIGFueSAtRSBkZXMtY2JjICIxMjM0NTY3OCIgLUEga2V5ZWQtc2hh MSAiMTIzNDU2NzgxMjM0NTY3ODEyMzQiIDsKI2FkZCAxOTIuMTY4LjAuMTEwIDE5Mi4xNjguMC4x MDEgZXNwLW9sZCAweDEwMDAyIC1tIGF5biAtRSBkZXMtY2JjICIxMjM0NTY3OCIgLUEga2V5ZWQt c2hhMSAidGVzdCIgOwoK ------=_Part_47974_29424431.1224422760711-- From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 19 14:50:04 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CA781065689 for ; Sun, 19 Oct 2008 14:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 289EF8FC1A for ; Sun, 19 Oct 2008 14:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id m9JEo4Rq039828 for ; Sun, 19 Oct 2008 14:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id m9JEo4XG039827; Sun, 19 Oct 2008 14:50:04 GMT (envelope-from gnats) Resent-Date: Sun, 19 Oct 2008 14:50:04 GMT Resent-Message-Id: <200810191450.m9JEo4XG039827@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, McKursus Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63ED31065692 for ; Sun, 19 Oct 2008 14:41:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 50FA18FC27 for ; Sun, 19 Oct 2008 14:41:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id m9JEfYZU060571 for ; Sun, 19 Oct 2008 14:41:34 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id m9JEfXaT060560; Sun, 19 Oct 2008 14:41:33 GMT (envelope-from nobody) Message-Id: <200810191441.m9JEfXaT060560@www.freebsd.org> Date: Sun, 19 Oct 2008 14:41:33 GMT From: McKursus To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 X-Mailman-Approved-At: Sun, 19 Oct 2008 19:50:32 +0000 Cc: Subject: misc/128223: La configuracion no se pudo cargar. No se le permite acceder a la configuracion del sistema X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2008 14:50:04 -0000 >Number: 128223 >Category: misc >Synopsis: La configuracion no se pudo cargar. No se le permite acceder a la configuracion del sistema >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 19 14:50:03 UTC 2008 >Closed-Date: >Last-Modified: >Originator: McKursus >Release: 7.0 >Organization: >Environment: Gnome >Description: "La configuracion no se pudo cargar. No se le permite acceder a la configuracion del sistema." Asi comenzo mi pesadilla, con una ventana emitiendo ese mensaje, despues de haber instalado FreeBSD 7.0, haberme logeado como usuario, y mas tarde como root en el panel de entrada de gnome. Estaba tan contento con mi recien instalado FreeBSD cuando de pronto ¡horror! me di cuenta que desde el entorno grafico gnome no podia cambiar nada, ni usuarios, ni crearlos, ni crear carpetas compartidas, ni modificar los parametros de la red para meter IPs, o hacer algo tan simple como cambiar el dia la hora y la fecha. Estoy hablando de hacerlo desde entorno grafico genome, no de hacerlo como root en modo terminal que desde ahi seguramente si se podra, o al menos eso creo. Bueno, pues me lance a googlear un buen rato, y busque la posible causa de esta decepcionante advertencia que fustra las expectativas de lanzarse a usar gnome en FReeBSD. No esta en el manual de FreeBSD, lo he comprobado. Aunque hay gente que ha sufrido el mismo problema, parece que la solucion no es facil de conseguir. Muchos usuarios de FreeBSD trabajan en modo Texto, y miran con cierta distancia a los que usan FreeBSD en Kde o Gnome. Asi que he recorrido muchos sitios en busca de la solucion, pero nadie parece saber que es o por que pasa o como se repara el asunto. Hay referencias en Ubuntu, o en Kubuntu, Debian incluso, pero no estamos hablando de esos sistemas sino de como lograr la solucion para aplicarla al entorno FreeBSD. Si no es mucho pedir, y si alguien tubiera alguna idea y quisiera darme detalles, seria de agradecer. Tengo una maquina AMD con FreeBSD instalado y quiero hacer algunas cosillas pero con ese problema, que ya llevo tres semanas atrapado, estoy atado de pies y manos. Gracias por la ayuda >How-To-Repeat: Cada vez que intento modificar la red y ajustar alguna IP o cambiar o añadir un usuario con gnome se produce este problema. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 20 11:08:37 2008 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA6DF1065676 for ; Mon, 20 Oct 2008 11:08:37 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A5A2A8FC23 for ; Mon, 20 Oct 2008 11:08:37 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id m9KB8bH2084717 for ; Mon, 20 Oct 2008 11:08:37 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id m9KB8aTE084713 for freebsd-bugs@FreeBSD.org; Mon, 20 Oct 2008 11:08:36 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 20 Oct 2008 11:08:36 GMT Message-Id: <200810201108.m9KB8aTE084713@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports containing patches X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2008 11:08:37 -0000 (Note: an HTML version of this report is available at http://people.freebsd.org/~linimon/studies/prs/prs_for_tag_patch.html .) S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/128233 lwhsu [PATCH] net/nepim: update to 0.52 o ports/128232 netchild [PATCH] audio/lame: update to 3.98.2 f ports/128231 lwhsu [PATCH] graphics/p5-Imager-Graph: update to 0.06 f ports/128230 lwhsu [PATCH] devel/p5-SVN-Agent: update to 0.03 f ports/128226 miwi [patch] net-mgmt/nagios update to nagios-3.0.4 o docs/128222 doc [patch] man page truss(1) claims that init(8) can be t f ports/128220 miwi [patch] net-mgmt/nagios-plugins Exception in check_nt o kern/128219 [puc] [patch] puc driver can not handle parallel port o conf/128215 [patch] calendar.music: Chuck Berry was born in St. Lo o ports/128214 pgollucci [PATCH] archivers/p5-Archive-Extract: update to 0.28 f ports/128213 chinsan [PATCH] archivers/libunrar: update to 3.8.4 o ports/128201 gnome [PATCH] graphics/gimp-app: broken pkg-plist o ports/128192 mat [PATCH] textproc/p5-Pod-Simple: simplify dependency f ports/128187 tobez [PATCH] devel/p5-Parse-RecDescent: simplfy dependency o ports/128185 lth [PATCH] devel/p5-Log-Log4perl: simplify dependency o ports/128184 mat [PATCH] devel/p5-Set-Infinite: update to 0.63 o bin/128167 [patch] [libc] add support for SCTP to getaddrinfo(3) o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o kern/128134 rrs [netinet] [patch] src/sys/netinet - crc32c calculation p usb/128115 usb [uplcom] [patch] USB-RS232 circuets on chip PL2303HX n f ports/128108 [patch] net/rabbitmq runs as root, but can be unprivil o ports/128107 [PATCH] dns/nss_mdns: install extra module o kern/128103 vwe [feature request] [patch] new SiS 190 NIC driver o bin/128096 bushman [patch] nscd(1): Failure in memset . o bin/128094 [patch] lint(1): Sizeof(pointer) bug in usr.bin/xlint/ o docs/128089 doc [patch] Incorrect type in archive_write(3) manpage f ports/128087 dinoex [PATCH] graphics/gd: add support russian font p bin/128064 [ipfw][patch] ipfw -n nat N config caused error o bin/128058 keramida [patch] pkg_create(1): pkg_create -n flag does not wor o ports/128044 clsung [PATCH] devel/p5-PAR-Dist: update to 0.37 o kern/128040 [pccbb] [patch] System hangs when PCMCIA-CF adapter pl o kern/128037 [pccbb] [patch] System hang on shutdown with PCMCIA-CF o kern/128036 [sio] [patch] serial console mostly ignores typein to o ports/128031 lwhsu [PATCH] misc/apparix: update to 20080725 f ports/128029 chinsan [PATCH] graphics/p5-Image-ExifTool: update to 7.47 o ports/128025 shaun [patch] security/heimdal ldap support broken under 7 f ports/128020 chinsan [PATCH] www/youtube_dl: fix files/conv2avi.patch o i386/128014 i386 [geode] [patch] AMD Geode CS5536 watchdog(9) not disab o bin/127986 [patch] ee(1): fix compiler warnings caused by use of o ports/127962 gabor [patch] archivers/rar: update to 3.8.0 o kern/127951 kib [ufs] [panic] [patch] kernel crash in fsck_ufs o ports/127945 flz [PATCH] net-p2p/rtorrent-devel: update to 0.8.3 o ports/127944 flz [PATCH] net-p2p/libtorrent-devel: update to 0.12.3 o ports/127936 kuriyama [patch] update port: databases/pgpool-II o bin/127932 [patch] mkdir(1): mkdir -p PATH fails if a directory i o kern/127928 net [tcp] [patch] TCP bandwidth gets squeezed every time t o bin/127922 marcel [patch] gpart(8): restore auto-padding gptboot o bin/127918 [patch] ATA Security support for atacontrol(8) o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o docs/127908 doc [PATCH] readdir(3) error documentation o www/127898 www [patch] query-pr.cgi: properly treat quoted-printable o ports/127895 miwi [Patch] devel/m17n-lib (and -docs, -db) to 1.5.2, some o ports/127892 miwi [Patch] textproc/scim-m17n: Aesthetic changes and adop o ports/127886 db [PATCH] science/linsmith: update to 0.99.11 o bin/127872 [libc] [patch] Rewinding on unionfs and Subversion f ports/127863 lth [PATCH] net-mgmt/pnp: Fix PHP module dependency o kern/127859 [identcpu] [patch] Update AMD features in identcpu.c f ports/127854 miwi [PATCH] databases/couchdb: update to 0.8.1 o docs/127840 doc [patch] fix entity references in release/doc/en_US.ISO o ports/127838 yuanjue [patch] devel/kdesvn: update to 1.0.2 o kern/127834 net [ixgbe] [patch] wrong error counting o misc/127828 [nanobsd] [patch] improve nanobsd package handling a b o ports/127823 mat [PATCH] net/p5-Net: update depenedency o ports/127822 tmclaugh [PATCH] security/sudo: add tuneable variable SUDO_LDAP o ports/127817 [PATCH] www/tomcat55: update to 5.5.27 o kern/127815 net [gif] [patch] if_gif does not set vlan attributes from o ports/127808 dryice [PATCH] devel/ipython: update to 0.9.1 o stand/127795 standards [patch] INFINITY and INF have wrong type f ports/127793 lwhsu [PATCH] graphics/p5-Graphics-ColorNames-WWW: update to o ports/127777 chinsan [PATCH] www/xpi-quick-locale-switcher: update to 1.6.5 o ports/127773 chinsan [PATCH] www/xpi-adblock: small modification to incorpo o ports/127769 lth [PATCH] devel/p5-Perl-Version: fix typo in the port o ports/127765 skv [PATCH] devel/p5-Danga-Socket: fix dependency o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 o misc/127759 [nanobsd] [patch] nanobsd.sh incorrectly calculates pa f ports/127758 leeym [PATCH] mail/p5-Net-SMTP-TLS: fix dependencies o ports/127754 wxs [PATCH] Added documentation in devel/git o ports/127753 skv [PATCH] misc/xdelta: update to 3.0u o bin/127745 jb [patch] unbreak kldstat(8) on releng_7 o ports/127741 shaun [PATCH] devel/p5-ReadLine-Gnu: update to 1.17a o ports/127740 shaun [PATCH] devel/p5-ReadLine-Perl: unbreak o ports/127718 brooks [patch] devel/llvm: use PIC on amd64 and add optional o kern/127717 [ata] [patch] - support write cache toggling per devic o ports/127715 alexbl [PATCH] textproc/highlight: update to 2.6.12 f ports/127675 [patch] net/nss_ldap version 259, with fix for pw_{cha p ports/127661 gnome [PATCH]textproc/libxml2: update to 2.7.1, which includ o kern/127645 [ata] [patch] Add support for nVidia MCP67 AHCI SATA C o ports/127636 mnag [PATCH] www/lighttpd: lighttpd dir_favicon o bin/127633 edwin [patch] Update top(1) to 3.8b1 o ports/127615 sobomax [PATCH] net/asterisk: fix WITH_ZAPTEL option handling s ports/127608 marius [patch] sysutils/cdrtools - cdrecord: fix device enume o kern/127605 [libcam] [patch] properly initialise ccb_h.path_id in o docs/127602 doc [patch] Incomplete information in nsswitch.conf(5) o bin/127591 [patch] [libc] spurious warning against DNAME RRs in g o kern/127581 acpi [patch] [acpi_sony] Add support for more Sony features o docs/127575 doc [patch] Update to ports (7) as it is missing a few mak o ports/127563 lev [PATCH] devel/mingw32-bin-msvcrt: [SUMMARIZE CHANGES] o ports/127560 netchild [PATCH] audio/lame update to 3.98.2 o ports/127554 portmgr [Patch] bsd.port.mk - OPTIONS dialog doesn't show up f ports/127552 stefan [PATCH] devel/libffi: Put include files into ${PREFIX} p kern/127551 antoine [build] [patch] Kernel with RAID driver hptiop (HighPo o misc/127550 [tools] [patch] src/tools/tools/editing/freebsd.vim im o usb/127549 usb [umass] [patch] Meizu MiniPlayer M6 (SL) requires some o usb/127543 n_hibma [patch] [ubsa] Support Option Globetrotter HSDPA modem f ports/127537 jmelo [patch] fix sysutils/file MASTER_SITES o ports/127534 des [PATCH]: net-mgmt/pav: Unbreak port o bin/127532 [patch] install(1): install -S Not Safe in Jail with s o bin/127514 edwin [patch] regression tests for date(1) o conf/127511 pf [patch] /usr/sbin/authpf: add authpf folders to BSD.ro o conf/127510 gshapiro [patch] etc/mail/aliases: Add URL as reference for RFC o ports/127506 doceng [PATCH]print/ghostscript8: update to 8.63 f ports/127499 mi [PATCH] Update devel/icu to 4.0 o ports/127478 arved [patch] security/libgcrypt update to 1.4.3 o bin/127475 [patch] sockstat(1) output columns run into each other o misc/127471 [build] [patch] installworld fails if install-info is o ports/127468 multimedia [PATCH]audio/wavpack: update to 4.50.1 o ports/127449 lev [PATCH] lang/hope: unbreak, rename patch files, tuning f kern/127446 emax [kbdmux] [patch] fix race in sys/dev/kbdmux/kbdmux.c p docs/127432 remko [patch] update fsck_ffs(8) man-page with regarding to o misc/127430 edwin [patch] Add check-script for share/misc/iso3166 o conf/127429 edwin [patch] update share/misc/iso3166 o misc/127428 edwin [patch] Add check-script for share/misc/iso639 o conf/127422 edwin [patch] update share/misc/iso639 o ports/127418 clement [patch] www/apache22: initialize environment in rc.d s o docs/127406 doc [patch] update umodem man page: Sony Ericsson W810i o ports/127389 lwhsu [PATCH] www/xist: update to 3.4.3 o i386/127387 i386 [i386] [patch] Inline assembler in x86 _start() in crt o i386/127367 i386 [vesa] [patch] Improve VESA support for Parallels (pat o ports/127362 amdmi3 [PATCH] comms/libsyncml: unbreak port o ports/127348 shaun [PATCH] net-im/ejabberd: Fix rc script's status comman o ports/127347 lev [PATCH] devel/subversion: Fix typo in message a bin/127331 edwin [patch] top(1) only shows cputime used by one process o ports/127330 novel [PATCH] security/gnutls update to 2.5.4 o ports/127319 dougb [PATCH] ports-mgmt/portmaster - add completion for zsh o ports/127313 shaun [patch] security/knock: use less CPU o ports/127308 itetcu [Patch]ports-mgmt/tinderbox: some mirror revisement of o ports/127307 lev [patch] Upgrade www/neon28 to 0.28.3 o ports/127306 nemoliu [patch] Upgrade www/tomcat6 to 6.0.18 o ports/127303 kuriyama [patch] misc/amanda-server Add pkg-install to create m o ports/127291 perky [PATCH] irc/py-irclib: update to 0.4.7 o kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt o bin/127280 des [libfetch] [patch] fetch/libfetch RFC 1738 %2F escaped o bin/127265 [patch] ddb(4): Adding the ddb command set from module o ports/127261 araujo [PATCH] devel/nx: unbreak, update to 0.37 o ports/127231 obrien [PATCH] editors/vim: fix distinfo error o kern/127230 ipfw [ipfw] [patch] Feature request to add UID and/or GID l s ports/127229 lwhsu [PATCH] sysutils/dtc: unbreak, fix some typos, remove f ports/127224 arved [patch] security/libgcrypt update to 1.4.2 o docs/127220 doc [patch] err(3) suggests using exit values from sysexit o docs/127219 doc [patch] style(9) is inconsistent regarding usage of sy o ports/127214 secteam [PATCH] ports-mgmt/portaudit: Please change to U f ports/127212 lwhsu [PATCH] misc/ipbt: unbreak, update package size/checks p bin/127194 antoine [patch] telnet(1): arpa/telnet.h: TELOPT(x) returns wr o ports/127168 bsam [PATCH] Upgrade editors/emacs to GNU Emacs 22.3 o docs/127167 dougb [patch] add AUTO_UPGRADE to mergemaster(8) man page o kern/127121 pf [pf] [patch] pf incorrect log priority o kern/127098 rnoland [drm] [patch] Additional SIS662 DRM PCI ID o ports/127097 marcus [patch] net/wireshark update to 1.0.3 o ports/127081 marcus [PATCH] ports-mgmt/portlint: detect missuse of rmdirtr p bin/127076 brooks [patch] teach dhclient(8) to recognize options 66 and o kern/127042 pf [pf] [patch] pf recursion panic if interface group is o kern/127040 [patch] mqueuefs(5) witness panic o bin/127034 [patch] Add option to count apparent size to du(1) f ports/127021 dinoex [PATCH] print/cups-base: fix pkg-plist and other minor o kern/126984 net [carp][patch] add carp userland notifications via devc f ports/126981 chinsan [PATCH] www/tinymce: update to 3.1.1 o threa/126950 threads [patch] rtld(1): rtld malloc is thread-unsafe o conf/126946 [patch] Add OpenVPN ports to services(5) o kern/126926 [build] [patch] Add MACHINE to dmesg o kern/126924 net [an] [patch] printf -> device_printf and simplify prob o docs/126921 doc [patch] History section of cpuset(1) incorrect o kern/126895 net [patch] [ral] Add antenna selection (marked as TBD) o usb/126884 usb [patch] Bug in buffer handling in ugen.c p conf/126841 philip [syscons] [patch] Add eee900 keyboard layout to /usr/s f ports/126840 stefan [PATCH] update sysutils/fusefs-wdfs to use neon28 if p o ports/126790 pb [PATCH] multimedia/dvdauthor: Fix graphics/ImageMagick o ports/126787 farrokhi [PATCH] net-mgmt/nefu: various port enthancements f ports/126705 jpaetzel [patch] devel/bazaar Update neon dependancy f ports/126704 jpaetzel [patch] update neon dependancy in audio/libmusicbrainz o ports/126690 hrs [PATCH] Update www/p5-PodToHTML to 0.08 o kern/126688 net [ixgbe] [patch] 1.4.7 ixgbe driver panic with 4GB and a bin/126682 delphij [patch] sed(1) segfaults on error rather than error me o ports/126668 multimedia [patch] multimedia/ffmpeg - quick and dirty symbol bui p bin/126657 [patch] w(1) breaks multibyte date format p kern/126609 antoine [vm] [patch] Unused variable `nosleepwithlocks' in sys o docs/126590 doc [patch] Write routine called forever in Sample Echo Ps o kern/126561 net [nlm] [patch] NLM (rpclockd) RPC UNLOCK failure (stall f ports/126559 araujo [PATCH] www/mod_security: add WITH_MLOGC knob, ModSecu f ports/126544 python [PATCH] devel/py-tables: update to 2.0.4 p kern/126525 jhb [pci] [patch] Extended PCI Configuration register (>= o ports/126514 danfe [patch] games/openttd: update to 0.6.2, fix Generic Tr o ports/126507 kde [PATCH] bsd.cmake.mk: set CMAKE_BUILD_TYPE to "" f ports/126478 lippe [patch] finance/kmymoney2: update to 0.9 p misc/126435 ed [patch] /usr/share/examples/drivers/make_pseudo_driver o bin/126433 [patch] some missing checks in rm(1) o ports/126357 skv [patch] misc/xdelta: move to glib20 o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim f ports/126322 [patch] sysutils/fusefs-kmod: Make install location co o kern/126300 [build] [patch] Add missing -mno-sse3 flag for AMD64 t o ports/126252 stas [PATCH] net-mgmt/flow-tools: update to 0.68.4 f ports/126228 [PATCH] mail/courier: new version 0.60.0 o docs/126227 doc [patch] kthread(9) refers to non-existent manpage, des o ports/126164 mnag [PATCH] security/openssh-portable: fix rootless build o ports/126143 acm [PATCH] graphics/php4-ffmpeg: update to 0.5.3.1 o kern/126128 threads [patch] pthread_condattr_getpshared is broken f ports/126079 portmgr [patch] [bsd.port.mk] make openssl.mk usable after pre p conf/126060 antoine [ipfw] [patch] IPFW limit checking in nightly security o ports/125996 danfe [patch] x11/nvidia-driver - remove pkg_info statements o bin/125922 net [patch] Deadlock in arp(8) o docs/125896 doc [PATCH] arp manual and syntax synchronisation p misc/125881 n_hibma [nanobsd] [patch] nanobsd fails on creating a director o bin/125878 pjd [patch] [request] Add zfs/zpool to rescue programs. o kern/125845 net [netinet] [patch] tcp_lro_rx() should make use of hard o ports/125823 sem [PATCH] ports-mgmt/portupgrade does not use custom ECH p kern/125822 multimedia [snd_hda] [patch] Does not define the device: pcm0: 16 serial number with Int o ports/124061 stefan [patch]: lang/mlton (new features) o bin/124052 [patch] adduser(8) throws errors when -f input file in o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a p kern/123961 net [vr] [patch] Allow vr interface to handle vlans o gnu/123921 [patch] cpio(1): cpio -oc bug with write_out_header() o ports/123912 perl [PATCH] Mk/bsd.perl.mk: Fix WANT_PERL5 related typos o kern/123892 net [tap] [patch] No buffer space available o kern/123858 net [stf] [patch] stf not usable behind a NAT p bin/123807 imp [patch] timed(8) does not run on arm (incorrect getopt o kern/123793 bz [ipsec] [patch] KAME IPSEC does not pass processed pac o bin/123774 [patch] kdump(1): time_t printing issues f ports/123756 stefan [patch] put devel/libffi includes in sane place o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o bin/123703 [patch] timed(8): qualify bad diagnostic in src/usr.sb o kern/123696 davidch [bce] [patch] if_bce firmware timeout on new bce chips o bin/123693 [patch] burncd(8): workaround for busy cd-writer while o bin/123644 [patch] [sysctl] Allow sysctl(8) to ignore unknown OID o kern/123640 ariff [patch] [snd_cmi] add support of "C-Media INC. USB Sou o kern/123630 geom [patch] [gmirror] gmirror doesnt allow the original dr o bin/123553 [patch] Prevent indent(1) from splitting unrecognized o conf/123551 [patch][periodic] /etc/periodic/daily/440.status-mailq f ports/123536 pgollucci [PATCH] www/p5-Apache-Reload: update to 0.10 p kern/123518 [patch] src/sys/kern.mk fails to disable -msse3 for am o docs/123484 edwin [patch] teach pxeboot.8 about ISC DHCP v3 o bin/123418 [patch] du(1): add -g (Gbyte) option to du(1) + manpag p bin/123329 phk [patch] usage strings for fifolog_create(1) and fifolo o ports/123290 mat [PATCH] irc/anope: update to 1.7.21 o misc/123240 [nanobsd] [patch] rerunning nanobsd.inc.sh fails becau o bin/123237 [sysinstall] [patch]: sysinstall(8) -- remove dummy qu o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o ports/123185 portmgr [PATCH]: Mk/bsd.port.mk - Add extended description to o kern/123179 gabor [libc] [patch] src/lib/libc/nls/es_ES.ISO8859-1.msg fo o kern/123177 secteam [random] [patch] arc4rand(9) produces the same sequenc o misc/123156 [build] [patch] make.conf update to "make update" sect o misc/123155 [build] [patch] src/Makefile.inc1 bug: remove obsolete p usb/123148 usb [uscanner] [patch] Epson DX8400/50 needs uscanner to s p kern/123147 remko [ti] [patch] ti(4) doesn't use mii, but kernel configs f kern/123123 yongari [re][patch] Realtek RTL8111C detection and failure o conf/123119 ipfw [patch] rc script for ipfw does not handle IPv6 o ports/123112 stas [PATCH] lang/ruby18 - rdoc node numbering non-determin o bin/123069 [patch] ps(1): invalid value of 'elapsed' field in ps f kern/123053 yongari [re][patch] re(4) unsupported hardware revision (8168/ o ports/123042 portmgr [PATCH] bsd.port.mk - Fix USE_LDCONFIG when used with f docs/123038 trhodes [patch] update to projects/c99/index.sgml o docs/123035 doc [patch] bugs in refuse.README a bin/123021 [patch] mount(8): mount -p shows incorrect mount optio o bin/123015 brooks [patch] rc.conf(8): implement automated creation of /e o ports/122974 dougb [PATCH] dns/bind94: add DLZ config options o kern/122957 [ath] [patch] ath_hal is too verbose when booting p kern/122925 kib [cd9660] [patch] sftp(1) duplicates filename when get o ports/122907 stefan [patch] sysutils/fusefs-kmod dataloss on write shortly o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa f ports/122904 glewis [patch] java/jdk15 javaws fails on amd64 o conf/122883 [patch] login class for ukrainian users accounts o ports/122877 portmgr [PATCH]: Mk/bsd.port.mk - Show all pkg-message files o kern/122847 [ata] [patch] atacontrol reports "ioctl(IOCATADEVICES) o conf/122811 [periodic] [patch] the daily_clean_disks scripts walks o kern/122744 andre [tcp] [panic] [patch] hostcache: supervisor read, page p usb/122712 brooks [usbdevs] [patch] Sony Vaio RF keyboard/mouse receiver o kern/122670 sos [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE p bin/122659 stefanf [patch] sh(1) long arithmetics broken on certain archi o bin/122652 [patch] du(1) support for inode count o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl o usb/122621 usb [patch] [request] New driver for Sierra Wireless 3G US f ports/122571 clsung [patch] net/libnet10 does not work on amd64 o bin/122519 [patch] ppp(8): ppp provides deficient DNS info o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o docs/122470 doc [patch] exit status on fetch(1) manual page o ports/122421 joerg [PATCH] devel/dwarfdump: version 20080228, no output o o misc/122300 [build] [patch] SEPARATE_LIVEFS arch dependent set but o kern/122288 gavin [md] [patch] mdconfig(8) returning negative unit numbe o bin/122282 dougb [patch] mergemaster(8): check the presence of fstab's o bin/122271 [patch] usr.bin/xinstall - Add support for -D option ( o conf/122170 rc [patch] [request] New feature: notify admin via page o o bin/122137 matteo [patch] Have crontab(1) use snprintf instead of sprint f ports/122123 clsung [patch] security/snort not working in inline mode o bin/122070 matteo [patch] crontab(1): Zero out pw_passwd in crontab o docs/122053 doc [patch] update on vinum(4) reference to newfs(8) o kern/122047 [ext2fs] [patch] incorrect handling of UF_IMMUTABLE / o bin/122043 [patch] du(1) does not support byte-count-based report o conf/122037 [patch] add rsync example for inetd.conf o usb/122025 usb [patch] uscanner does not attach to Epson RX620 printe o stand/121921 standards [patch] Add leap second support to at(1), atrun(8) s ports/121902 jmz [PATCH] textproc/ispell add OPTIONS o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o kern/121897 [PATCH] realpath(3) segmentation fault o bin/121895 [patch] rtsol(8)/rtsold(8) doesn't handle managed netw o ports/121831 ehaupt [PATCH] net/openbgpd: [SUMMARIZE CHANGES] p docs/121821 danger [patch] wpa_supplicant.conf.5 - provide pointer to sam p conf/121783 cperciva [patch] freebsd-update(8) upgrade overwrites device.hi o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o kern/121706 net [netinet] [patch] "rtfree: 0xc4383870 has 1 refs" emit o ports/121688 kde [patch] editors/koffice-kde3: several depencancy fixes o ports/121672 wes [Patch] mail/mimedefang: opt out of clamav use o bin/121671 bushman [PATCH] nscd(8) prints needless banner o ports/121670 gnome [PATCH] Update converters/libiconv to 1.12 f kern/121660 jkoshy [hwpmc] [patch] hwpmc(4) incorrectly handles PMC sampl o bin/121656 [libc] [patch] telldir(3) issues o stand/121568 standards [patch] ln(1): wrong "ln -s" behaviour o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o kern/121559 geom [patch] [geom] geom label class allows to create inacc o bin/121542 krion [patch] teach pkg_add(1) to accept PACKAGEROOT and PAC o kern/121522 delphij [libc] [patch] [request] add closefrom() system call o kern/121521 sos [ata] [patch] add VIA CX700M2 chipset to ata driver o bin/121520 rwatson [patch]: support for multiple arguments for dirname(1) p bin/121512 mtm [sysctl] [patch] sysctl(8) should return 1 if the user o kern/121504 acpi [patch] Correctly set hw.acpi.osname on certain machin o bin/121502 [patch] option -P appears to be broken in restore(8) s p docs/121490 brueffer [patch] Multiple typos ("in in") in /usr/src files o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o bin/121424 [patch] [ipfw] Rectify ambiguous English in manual p kern/121421 marcel [uart][patch]: Tune 16550A FIFO interrupt level via de o ports/121413 portmgr [PATCH] bsd.port.mk: introduce USE_LZMA for lzma-compr o bin/121366 [zfs] [patch] Automatic disk scrubbing from periodic(8 o bin/121359 [patch] ppp(8): fix local stack overflow in ppp o bin/121243 des [patch] passwd(1) patch for usage with PAM/LDAP o arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't o ports/121230 x11 [patch] ports/x11/xkeyboard-config WITHOUT_NLS support o docs/121197 doc [patch] edits to books/porters-handbook o usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o bin/121182 [patch] newfs_msdos(8) should supports devices without o docs/121173 doc [patch] mq_getattr(2): mq_flags mistakenly described a o ports/121172 tobez [patch] lang/perl5.8 - Silence warning about UTF7 o kern/121156 multimedia [sound]: [PATCH] Turn on inverted external amplifier s o ports/121143 markus [PATCH] audio/cdparanoia: rip multisession CDs correct o kern/121122 ipfw [ipfw] [patch] add support to ToS IP PRECEDENCE fields o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 p bin/121093 brooks [patch] pkg_add(1) does nothing and returns zero if ca o bin/121074 des [patch] Add RFC2617 digest authentication to fetch(3) o kern/121073 [kernel] [patch] run chroot as an unprivileged user o conf/121064 [patch] Use ASCII characters for box/line characters i o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o bin/120994 [patch] alignment violation in chap module of ppp(8) c o conf/120993 [patch] 340.noid -- Add "find -x" capability (don't cr o bin/120990 marcel [PATCH] support "BIOS Boot" partition type in gpt(8) o kern/120989 scottl [udf] [patch] UDF (with DVD RAM) isn't mountable/reada o ports/120983 philip [patch] devel/p5-SDL update to 2.1.3 p docs/120945 net [PATCH] ip6(4) man page lacks documentation for TCLASS p bin/120891 dwmalone [patch] enhancement to syslogd(8) - always printing lo o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/120872 [libkvm] [patch] fstat exit on signal 11 o bin/120870 [patch] truss(1) shows 'pipe' system call as having 6 o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 o bin/120813 [patch] grdc(6) off by 500 ms (on average) o bin/120784 [patch] mount(8): allow mount from fstab with 3rd part o ports/120756 des [PATCH] sysutils/munin-node: Use fixed GID o ports/120755 des [PATCH] sysutils/munin-main: Use fixed UID/GID p kern/120714 gonzo [viapm] [patch] viapm driver doesn't work on VIA VT823 o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o kern/120533 [bce] [patch] Multicast not accepted on bce devices o ports/120532 portmgr [PATCH] bsd.port.mk - add more recursive-foo targets o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o ports/120506 skv [patch] devel/bugzilla with mysql depends problems o kern/120483 [ntfs] [patch] NTFS filesystem locking changes o kern/120482 [ntfs] [patch] Sync style changes between NetBSD and F o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o kern/120304 net [netgraph] [patch] netgraph source assumes 32-bit time o kern/120270 simon [crypto] [patch] AES-192 and AES-256 support for HW-ac o conf/120263 [patch] 800.loginfail misses relevant security informa o bin/120256 [patch] ftp(1): ftp -u URL/ returns a -1 p docs/120248 danger [patch] getaddrinfo() implementation on FreeBSD 7 is i o kern/120232 net [nfe] [patch] Bring in nfe(4) to RELENG_6 o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap p bin/120208 rwatson [patch]: gzip(1) cannot preserve utimes() because it f o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot o kern/120138 jeff [sched_ule] [patch] steal_thresh may be set a wrong va o kern/120128 attilio [libc] [patch] __getcwd erroneously returning ENOENT o docs/120125 doc [patch] Installing FreeBSD 7.0 via serial console and o bin/120114 [patch] reboot(8) - add features available in Solaris. o conf/120113 [patch] [L10n] Croatian locale support for hr_HR.ISO88 f ports/120099 ed [Patch] vietnamese/vnelvis: don't use sgtty, but termi f ports/120096 ed [Patch] vietnamese/vnterm: use termios, not sgtty o kern/120073 [patch] [request] new driver: add support for Meinberg o kern/120057 pf [pf] [patch] Allow proper settings of ALTQ_HFSC. The c o usb/120017 usb [ehci] [patch] CS5536 (AMD Geode) USB 2.0 quirk o ports/119997 dougb [PATCH] dns/bind94: added GeoIP patches o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o ports/119923 demon [patch] sysutils/ascpu does not work FreeBSD 8.0-CURRE p threa/119920 deischen [patch] fork broken in libpthread o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro a kern/119868 fs [zfs] [patch] 7.0 kernel panic during boot with ZFS an o stand/119804 standards [timedef] [patch] Invalid (long)date format in pl_PL.I o kern/119767 jfv [em] [patch] if_em fix for systems without msix suppor o ports/119710 sumikawa [patch] net/netcat - nc command runs BSD nc instead of p bin/119705 keramida [PATCH] make iostat(8) a bit smarter about the number o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing p docs/119658 keramida [patch] Add syntax note to loader.conf.5 o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch p bin/119614 keramida [feature request] [patch] add regression tests for tr( o bin/119610 [patch] config(8): config -x appends unwanted trailing o kern/119606 [sio] [patch] PCMCIA card not attached to driver o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o bin/119589 [patch] powerd(8): default parameter of powerd is unsu o kern/119575 simokawa [firewire] [patch] sbp_targ cannot handle multiple CTI o ports/119556 edwin [PATCH] textproc/xerces-c2: Update to 2.8.0 f kern/119530 emaste [kqueue] [patch] kqueue/kevent causes fatal trap 12 o bin/119483 [patch] vidcontrol(1) misses latest VESA mode (off-by- o conf/119464 [patch] [request] Add 'sorted' option to etc/periodic/ o kern/119358 [kernel] [patch] SYSINIT_VERBOSE can be more verbose o docs/119329 doc [patch] Fix misleading man 1 split o kern/119307 emaste [queue] [patch] TRASHIT macro blasts list header if RE o kern/119298 [xfs] [patch] 7-Stable/sys/modules/xfs fails to make f o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o kern/119205 [dc] [patch] Collect various stats regarding dc(4) int o ports/119204 openoffice [patch] editors/OpenOffice.org-2 v2.3 loops when file o kern/119202 [kernel] [patch] Add generic support for disabling dev o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o usb/119150 usb [usbdevs] [patch] new usbdevs for CDMA 1xEVDO devices o ports/119095 brooks [PATCH] sysutils/ganglia-monitor-core: allow to run mu o conf/119076 rc [patch] [rc] /etc/rc.d/netif tries to remove alias add o bin/119014 [patch] IPv6 addresses cause sockstat(1) to run column p conf/118976 [patch] Turkish locale support for tr_TR.ISO8859-9 o docs/118902 doc [patch] wrong signatures in d2i_RSAPublicKey man pages a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o bin/118874 [patch] tftpd(8): add TFTP Option Extension (rfc 2347) p conf/118770 mtm [patch] rc.d scripts: print information instead of sil o kern/118739 [cpufreq] [patch] Allow the cpufreq/p4tcc driver to de o kern/118727 net [netgraph] [patch] [request] add new ng_pf module o bin/118723 gcooper [patch] od(1)/hexdump(1) truncates last partial repeat o kern/118713 [minidump] [patch] Display media size required for a k o usb/118686 usb [usbdevs] [patch] teach usbdevs / ubsa(4) about Huawei o bin/118636 [sysinstall] [patch] [request] remove requirement for o ports/118547 x11 [patch] x11/xdm fails with pam_krb5 o threa/118544 delphij [libc] [patch] the "clnt_create" function in "libc/rpc o kern/118540 kaiw [elf] [patch] update sys/sys/elf_common.h with new ema o kern/118493 weongyo [ndis] [patch] a trivial fix when ndis sets `ndis_reso f bin/118488 [patch] pw(8) usershow doesn't print password hashes w o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround p usb/118479 kan [ubsa] [patch] ubsa driver does not recognize AnyDATA o kern/118447 sos [ata] [patch] Troublesome DMA modes with VIA Apollo VP p kern/118439 thompsa [ndis] [patch] if_ndis - fix a panic when ndis_attach( p usb/118374 attilio [ubsa] [patch] support Option GlobeTrotter Max 3.6 wir p kern/118370 thompsa [ndis] [patch] if_ndis - fix a scanning problem of Mar o bin/118355 pf [pf] [patch] pfctl(8) help message options order false o bin/118325 rc [patch] [request] new periodic script to test statuses o kern/118320 pjd [zfs] [patch] NFS SETATTR sometimes fails to set file o kern/118317 [zlib] [patch] Incorrect gzeof() return value in zlib o bin/118297 weongyo [patch] ndiscvt(8): sort a output format. o bin/118296 weongyo [patch] ndiscvt(8) can't parse a STRING WORD pattern w o bin/118295 weongyo [patch] ndiscvt(8) makes a syntax error when it proces o bin/118294 weongyo [patch] ndiscvt(8) can't parse WORD which includes '(' o kern/118287 [kernel] [patch] tty write is not always atomic for sm o bin/118205 [patch] [request] new options -r to pkill(1) a pid aft o ports/118168 multimedia [patch] multimedia/transcode - Add WITHOUT_X11 and WIT f ports/118159 ijliao [PATCH] security/cryptopp: update to 5.5.2 o bin/118144 des [patch] pam_lastlog doesn't check return values in pam o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o bin/118132 [PATCH] pax(1): broken -s handling of \1, \2 ... o bin/118123 [patch] chat(8) has infinite recursion bug o bin/118114 [patch] update manctl(8) o conf/118111 [patch] [request] Add MAC address based interface rena o bin/118069 thomas [PATCH] camcontrol(8) should be able to leave device s o bin/118014 remko [patch] arp(8): Minor style(9) change to src/usr.sbin/ o ports/117993 cokane [patch] [request] misc/cpuid add AMD Miscellanous Feat p bin/117944 keramida [PATCH] [request] add a du(1) -l option to count hardl o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o conf/117935 rc [patch] ppp fails to start at boot because of missing o bin/117830 [patch] who(1) no longer displays entries for folk log f bin/117751 [patch] [request] Make pw(8) support "-d" argument o bin/117733 [patch] [request] allow to tee(1) to sockets, descript o kern/117709 simon [libcrypto] [patch] Base openssl does not define OPENS o bin/117687 [patch] fstab(5) format cannot handle spaces f bin/117603 iedowse [patch] dump(8) hangs on SMP - 4way and higher. o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni a conf/117555 dougb [patch] NIS-dependent services cannot start if ypbind o usb/117546 usb [uftdi] [patch] Add MaxStream ZigBee product ID to uft o bin/117520 mux [patch] csup(1) not-really-equivalent to cvsup p kern/117512 des [libpam] [patch] document .opieaccess for pam_opieacce o kern/117510 [headers] [patch] sys/cdefs.h lacks support for PCC o bin/117452 [patch] tftp(1): the fix for PR 103206 was incorrect o bin/117339 net [patch] route(8): loading routing management commands o conf/117323 [termcap] [patch] Missing termcap entry for rxvt-unico o bin/117277 des [PATCH] fetch(1): fetch's resume mode doesn't verify t o kern/117257 [syscons] [patch] [L10n] British English Dvorak keymap o kern/117234 ipfw [ipfw] [patch] ipfw send_pkt() and ipfw_tick() don't s o usb/117205 usb [uscanner] [patch] uscanner support for HP ScanJet 447 o bin/117191 [patch] OptionalObsoleteFiles.inc - Add files to remov s kern/117190 [ata] [patch] Support ATA ICH7 controller (SATA150 mod o usb/117185 usb [umodem] [patch] Add support for UNION interface descr o bin/117093 kensmith [patch] [request] Teach sysinstall(8) to load config f o ports/117080 linimon [PATCH]: Mk/bsd.perl.mk o usb/117075 usb [scsi_da] [patch] quirk: USB Samsung YP-U3 MP3 p ports/116984 dinoex [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o bin/116980 [patch] [msdosfs] mount_msdosfs(8) resets some flags f o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th p kern/116896 pjd [patch] Typo in a kassert in GEOM o bin/116849 [patch] dump(8) fails to dump UFS filesystems when nul o kern/116837 net [tun] [panic] [patch] ifconfig tunX destroy: panic o stand/116826 standards [PATCH] sh support for POSIX character classes o kern/116697 kmacy [net] [patch] ifconfig's name argument has no efect on f bin/116643 bz [patch] [request] fstat(1): add INET/INET6 socket deta p kern/116608 [panic] [patch] [msdosfs] msdosfs fails to check mount o bin/116606 sam [patch] Enable history support in wpa_cli(8) o ports/116601 portmgr [patch] bsd.port.mk - fail if dependency failed a kern/116538 jkim [fdc] [patch] reintroduce FD_NO_CHLINE flag for fdc(4) o bin/116425 [patch] [request] ls(1) options for pre-sort of direct o conf/116416 mtm [patch] [request] per-jail rc.conf(5) style configurat o conf/116237 [patch] ugly output of the 405.status-ata-raid if fdes o ports/116219 edwin [patch] Add @rmtry to bsd.port.mk o bin/116209 [patch] [request] decimal suffix in split(1) o ports/116083 ahze [PATCH] graphics/py-opengl: update to 2.0.1.09 o kern/116077 net [ip] [patch] 6.2-STABLE panic during use of multi-cast o conf/116071 [patch] loader.conf update some variables o kern/116009 ipfw [ipfw] [patch] Ignore errors when loading ruleset from o bin/115960 des sshd's X11 forwarding broken on IPv6 only machine [pat o bin/115946 des [libpam] [patch] not thread-safe o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o kern/115801 sos [ata] [patch] Writing of crash dumps is unreliable a docs/115774 murray [patch] Mailing list users aren't warned about public p kern/115755 ipfw [ipfw][patch] unify message and add a rule number wher f conf/115751 linimon [PATCH] etc/rc.d/mdconfig (RELENG_6) o kern/115631 [libc] [patch] [request] make dlclose(3) atexit-aware a kern/115623 imp [cardbus] [patch] Xircom CardBus Ethernet II 10/100 Ad o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect f kern/115547 geom [geom] [patch] [request] let GEOM Eli get password fro o bin/115513 [patch] [request] Add step down/up options to powerd(8 o bin/115486 [patch] [request] newsyslog(8) -- provide ability to c s ports/115461 clement [patch] bsd.apache.mk - Create packages for apache mod o bin/115447 [patch] [request] teach make(1) to respect TMPDIR envi o bin/115431 [patch] [request] improvement to split(1): add -B swit o bin/115406 [patch] gpt(8) GPT MBR hangs award BIOS on boot o kern/115371 imp [cardbus] [patch] Device removal leaves resource datab o kern/115196 bushman [libc] [patch] [request] Implement getgroupmembership( o bin/115174 [patch] growfs(8) needs zero-writing for safe filesyst o bin/115172 ipfw [patch] ipfw(8) list show some rules with a wrong form o kern/115164 des [libpam] [patch] [request] Add support for the account o kern/115162 des [libpam] [patch] [request] Add check for target user's o kern/115133 scottl [mpt] [mfi] [patch] Patches to make mfi support LSI SA o docs/115065 doc [patch] sync ps.1 with p_flag and keywords o misc/115025 [tools] [patch] new flash device for nanobsd's FlashDe o kern/114955 fs [cd9660] [patch] [request] support for mask,dirmask,ui o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114915 net [patch] [pcn] pcn (sys/pci/if_pcn.c) ethernet driver f o kern/114847 fs [ntfs] [patch] [request] dirmask support for NTFS ala o kern/114714 net [gre][patch] gre(4) is not MPSAFE and does not support o kern/114646 [firewire] [patch] firewire0: device physically ejecte o kern/114492 [kernel] [patch] device_attach() doesn't unset devclas o bin/114468 fs [patch] [request] add -d option to umount(8) to detach o bin/114465 [patch] [request] script(1): add really cool -d, -p & o kern/114451 [nfs] [patch] prevent NFS server possible crash o docs/114371 doc [patch] [ip6] rtadvd.con(5) should show how to adverti o kern/114331 vanhu [crypto] [patch] VIA padlock freesession bug o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o kern/114291 kmacy [RFE][modules] [patch] add dynamic module references o ports/114231 edwin [patch] multimedia/audacious-plugins - audacious/plugi o ports/114229 nork [patch] [www/linuxpluginwrapper] libmap.conf-FreeBSD6 p bin/114195 gshapiro [patch] [request] make default mail directory for mail o docs/114184 doc [patch] [ndis]: add info to man 4 ndis o ports/114167 portmgr [PATCH] bsd.port.mk - ignoring major numbers in LIB_DE p usb/114154 imp [PATCH] umass quirk: Samsung YP-U2 USB MP3/Ogg Player o bin/114129 mux [patch] csup(1) doesn't support authentication o conf/114119 rc [jail] [patch] [request] /etc/rc.d/jail improvements f p conf/114101 se [PATCH]: Add ZFS to periodic locate run o bin/114081 bz [patch] ppp(8) should be able to set ethernet address o usb/114068 usb [umass] [patch] Problems with connection of the umass o bin/114059 [patch] shutdown(8) should fall back to exec reboot/ha o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o bin/113979 matteo [patch] sysinstall(8) does not support UFS1 filesystem p usb/113964 imp [ucom] [patch] kernel panic when dropping a connection s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/113913 [patch] [requst] new file /etc/periodic/daily/490.stat o kern/113885 geom [gmirror] [patch] improved gmirror balance algorithm o bin/113881 [patch] sysctl(8): Wrong memory usage o kern/113849 [libdisk][patch] Correction of Sanitize_Bios_Geom for o bin/113838 fs [patch] [request] mount(8): add support for relative p o kern/113825 [patch] [libc] [ggated] Fix -STABLE build with -fno-st o bin/113813 [patch] terminating powerd(8) should restore max CPU f o docs/113803 ipfw [patch] ipfw(8) - don't get bitten by the fwd rule o bin/113702 krion [PATCH]: bad output from "pkginfo -g" o bin/113682 [patch] sysinstall(8) warns for invalid geometry which o bin/113518 [patch] make(1): Prevent execution when command is a c o kern/113398 [libc] [patch] initgroups fails rather than truncates p kern/113388 ipfw [ipfw][patch] Addition actions with rules within speci o gnu/113343 [patch] grep(1) outputs NOT-matched lines (with multi- p kern/113266 harti [libgssapi] [patch] Missing handling of mech_type in g o conf/113265 [patch] Add registered epmd port number to etc/service o bin/113239 [patch] atrun(8) loses jobs due to race condition o bin/113230 des [pam] [patch] const-ify PAM-headers a kern/113218 jkim [sysvipc] [patch] Overflow in shmget's memory size che o docs/113194 doc [patch] [request] crontab.5: handling of day-in-month o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC f ports/113099 tmclaugh [PATCH] sysutils/libchk may skip $X11BASE now o ports/113096 edwin [patch] x11/xorg - X.org manpages broken o bin/113074 [patch] ppp(8): include for strcasecmp(3) a usb/113060 usb [usbdevs] [patch] Samsung printer not working in bidir o bin/113049 fs [patch] [request] make quot(8) use getopt(3) and show o conf/112997 [patch] Add note about the 'native' mtune option to sh o kern/112984 rnoland [drm] [patch] Xorg 7.2 locks up with AIGLX enabled on p bin/112955 des [patch] login(1): add netgroup support back to pam_log o usb/112944 usb [ulpt] [patch] Bi-directional access to HP LaserJet 10 o kern/112938 [headers] [patch] utmp.h is too limiting for modern sy p docs/112935 remko [patch] newfs_msdos(8): document 4.3g limit on files w o bin/112794 [patch] [request] pam_exec(8): allow pam_exec to expor o kern/112775 [libmd] [patch] libmd(3) bug for some zero-length file a bin/112694 [patch] segfault in pam_lastlog(8) on sshd exit when n o bin/112673 [patch] pkg_add(1): pkg_add -S leaks the temp dir o kern/112658 fs [smbfs] [patch] smbfs and caching problems (resolves b o conf/112558 [patch] /etc/periodic/daily/200.backup-passwd poor han o bin/112557 net [patch] ppp(8) lock file should not use symlink name o bin/112556 [patch]: sysctl(8) needs to fix multi-lineal descripti o kern/112554 silby [kernel] [patch] unp_gc is overly agressive and remove s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/112477 marius [ofw] [patch] Add support to set the node and type on o power/112435 ppc [nexus] [patch] Update nexus children to use ofw_bus f o bin/112379 [patch] [request] lockf(1): on closing stdin, stdout, p ports/112347 obrien [PATCH] editors/vim re-enable WITH_TCL o bin/112336 [patch] install(1): install -S (safe copy) with -C or s gnu/112215 obrien [patch] gcc(1): "gcc -m32" attempts to link against 64 o bin/112213 [patch] touch(1)ing a directory and failing yields ret o conf/112024 [patch] misc fixes to fortunes f kern/111990 [pccbb] [patch] system freeze in initialization proces o bin/111978 [patch] [request] make syspath list for mount(8) confi p usb/111710 imp [patch] [usb] add support for Option GlobeTrotter 3G+ o kern/111537 kmacy [netinet6] [patch] ip6_input() treats mbuf cluster wro o bin/111493 [PATCH] routed(8) doesn't use multicasts for RIPv2 via o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o bin/111226 [patch] Incorrect usage of chflags() in various FreeBS o ports/111120 tobez [PATCH] lang/perl5.8: Provide @INC modification via op o bin/111024 [request] [patch] atacontrol(8): support for stand-by o kern/111023 sos [ata] [request] [patch] please expand ata timeouts o kern/110995 kmacy [loader] [patch] loader wastes space worth symtab size o conf/110993 [patch] /etc/netstart should start rpcbind p usb/110992 imp [uftdi] [patch] Add Tactrix Openport support in uftdi s usb/110991 usb [usbdevs] [patch] QUIRK: Super Top IDE DEVICE (depends o usb/110988 usb [umass] [patch] Handling of quirk IGNORE_RESIDUE is um o bin/110887 [patch] truss(1) missing linux_access syscall descript o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu f kern/110720 kmacy [net] [patch] [request] support for interface descript p usb/110681 imp [ukbd] [patch] multiple keys will be repeated o ports/110533 olgeni [patch] WITHOUT_NLS support for www/neon and www/sitec p usb/110477 imp [usbdevs] [patch] add Benq 3300U/4300U support to Free o kern/110392 scottl [hptmv] [patch] hptmv very old and missing important f o docs/110376 doc [patch] add some more explanations for the iwi/ipw fir o kern/110284 kmacy [if_ethersubr] [patch] Invalid Assumption in SIOCSIFAD o docs/110253 doc [patch] rtprio(1): remove processing starvation commen o kern/110249 kmacy [kernel] [regression] [patch] setsockopt() error regre o kern/110199 jmg [kqueue] [patch] kqueue_register doesn't update the kn o bin/110146 [patch] [request] Allow arbitrary gdb(1) options to by p usb/110122 imp [ugen] [patch] usb_interrupt_read does not respect tim o bin/110068 [patch] rewrite of mdmfs(8) in shell o docs/110062 doc [patch] mount_nfs(8) fails to mention a failure condit o docs/110061 doc [PATCH] tuning(7) missing reference to vfs.read_max o kern/110017 [libexec] [patch] serial port console output garbled a amd64/109584 edwin [patch] zdump(8) doesn't work a ports/109580 glewis [patch] math/gnuplot does not include bsd.emacs.mk whe o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o bin/109521 [patch] chio(1): 'chio return' breaks on non-voltag ch o ports/109501 krion [PATCH] add some configurable vars to mail/exim o bin/109478 [libc] [patch] adopt reentrant syslog functions from O a kern/109477 yongari [vr] [patch] onboard via vt6103 ethernet does not work o kern/109416 des [libpam] [patch] pam_group doesn't check login_group m o bin/109413 jhb [PATCH] top(1) shows at least 50% idle when hyperthrea o kern/109277 [pppd] [patch] : kernel ppp(4) botches clist reservati o kern/109251 [re] [patch] if_re cardbus card won't attach o kern/109232 imp [sio][patch] ibufsize calculation wrong causing data l o docs/109008 csjp [patch] add summary of kern/48198 to jexec(8) o kern/108899 [termcap] [patch] termcap update for screen and linux p usb/108810 imp [patch] quirk for I/O Magic USB flash drive "Giga Bank s bin/108743 vwe [patch] who(1): IPv6 addresses truncated to maximum IP o bin/108656 [patch] Segfault of sshd(8) for unknown user when priv p bin/108523 trhodes [patch] daemon(8): support for dropping privileges p usb/108427 imp [patch] quirk: Samsung MP0402H o kern/108390 [libc] [patch] wait4() erroneously waits for all child p bin/108368 [patch] tip(1) coredumped when 'du' capability is used o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge p usb/108097 imp [usbgen] [patch] ADMtek 851X USB-to-LAN adapter o kern/107944 net [wi] [patch] Forget to unlock mutex-locks o usb/107924 usb [patch] usbd(8) does not call detach o ports/107816 roam [patch] The IPv6 patch breaks the location feature of o kern/107707 geom [geom] [patch] [request] add new class geom_xbox360 to p stand/107561 standards [libc] [patch] [request] Missing SUS function tcgetsid o bin/107515 [patch] ls(1) bug p usb/107495 imp [cam] [patch] Fix long wait before WD My Book 250GB (U o usb/107388 usb [patch] [request] new driver: add utoppy device from N o usb/107248 usb [umass] [patch] scsi_da.c quirk for Cowon iAUDIO X5 MP o usb/107243 usb [cam] [patch] Apacer USB Flash Drive quirk o bin/107171 [patch] [ncurses] systat(1) doesn't die when it's xter o conf/107035 net [patch] bridge interface given in rc.conf not taking a o bin/106872 [patch] [request] extattr support for find(1) o usb/106861 usb [usbdevs] [patch]: usbdevs update: Add product ACER Ze s ports/106848 portmgr [PATCH] Mk/bsd.port.mk -- Add support to remove locale o bin/106734 [patch] [request] bzip2(1): SSE2 optimization for bzip o kern/106722 glebius [net] [patch] ifconfig may not connect an interface to o kern/106646 [nfs] [patch] Pointer incorrectly cast to ulong o kern/106645 [uart] [patch] uart device description in 7-CURRENT is o bin/106642 dougb [patch] [request] Allow excluding certain files from m o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken p usb/106565 imp [ums] [patch] ums(4) does not work if the mouse defaul o i386/106493 ru [patch] pxeboot(8) uses /pxeroot instead of / o ports/106483 portmgr [PATCH]: embed distfile information in +CONTENTS o ports/106463 ume [patch] [request] please add audacious support for aud o bin/106431 sos [patch] atacontrol(8): Inform user of ata RAID5 acting o kern/106255 trhodes [msdosfs] [patch]: correct setting of archive flag p bin/106049 [tftpd] [patch] tftpd(8) - improve -w option to suppor o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o bin/105614 [patch] setkey(8): Creating NULL encryption ESP SAs wi o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o ports/105516 obrien [patch] sysutils/asr-utils needs ASR_COMPAT kernel opt o docs/105456 keramida [patch] overhaul of the security chapter (14) o bin/105341 [libpam] [patch] [request] pam_krb5: Add minimum_uid/m o www/105333 www [PATCH] Base selection in events in libcommon.xsl does o kern/105330 ipfw [ipfw] [patch] ipfw (dummynet) does not allow to set q o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp a ports/105122 shaun [PATCH] net-im/ejabberd: new UID/GID collides with Sam o conf/105100 [locale] [patch] no support for lv (latvian) locale o kern/105093 [ext2fs] [patch] ext2fs on read-only media cannot be m o bin/104921 ipfw [patch] ipfw(8) sometimes treats ipv6 input as ipv4 (a o kern/104882 [iicbb] [patch] pvr250 and pvrxxx drivers need iicbb p o kern/104851 [inet6] [patch] On link routes not configured when usi o bin/104746 [PATCH] traceroute(8): 'traceroute -e -P TCP' cannot w o stand/104743 standards [headers] [patch] Wrong values for _POSIX_ minimal lim o kern/104738 mlaier [inet] [patch] Reentrant problem with inet_ntoa in the o bin/104731 gad [patch] missing newline in lpq(1) output s bin/104689 matteo [patch] [request] powerd(8): add support for limiting o kern/104682 ipfw [ipfw] [patch] Some minor language consistency fixes a o bin/104553 [patch] [request] Add login group support to login.acc o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o gnu/104533 bugmeister [patch] [request] make send-pr(1) read configuration f o docs/104493 roberto [patch] Wrong description in ntp.conf(5) (CURRENT and o kern/104389 geom [geom] [patch] sys/geom/geom_dump.c doesn't encode XML o usb/104352 usb [ural] [patch] ural driver doesnt work o usb/104290 usb [umass] [patch] quirk: TOSHIBA DVD-RAM drive (libretto p kern/104212 [puc] [patch] support for Kuroutoshikou SERIAL4P-LPPCI o bin/104092 [patch] iostat(8): missing blanks in iostat output o kern/103764 [libradius] [patch] libradius aborts server processing p usb/103702 imp [cam] [patch] ChipsBnk: Unsupported USB memory stick o bin/103682 [patch] [request] nfsstat(1) should use %u instead of o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa o conf/103489 rc [rc.d] [jail] [patch] named_chroot_autoupdate doesn't o conf/103486 rc [rc.d] [jail] [patch] rc.d/jail: mount fstab after dev o kern/103454 ipfw [ipfw] [patch] [request] add a facility to modify DF b o usb/103418 usb usbhidctl(1): [patch] [request] usbhidctl: add ability p usb/103167 imp [ehci] [patch] Transcend JetFlash120 memory stick prob o kern/103059 [bce] [patch] "Error mapping mbuf into TX chain!" (ten o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an o kern/102956 rink [linux] [patch] Add partial support for SO_PEERCRED in o ports/102946 secteam [patch] ports-mgmt/portaudit o bin/102834 [patch] mail(1) hangs on the sigsuspend system call in o bin/102793 edwin [patch] [request] top(1): display feature of current C o bin/102747 brian [ppp] [patch] ppp timer subsystem stops under certain o docs/102719 doc [patch] ng_bpf(4) example leads to unneeded promiscuos o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o bin/102638 matteo [patch] sysinstall(8): custom dist set always install o bin/102609 [PATCH] Add filtering capability to date(1) o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o kern/102540 [netgraph] [patch] supporting vlan(4) by ng_fec(4) o conf/102502 net [patch] ifconfig name does't rename netgraph node in n o kern/102471 ipfw [ipfw] [patch] add tos and dscp support o ports/102414 ume [PATCH] mail/cyrus-imapd: avoid fopen limit during mbo o bin/102394 [patch] ls(1) do not shows inode number symbolic link o kern/102390 [pppd] [patch] kernel pppd don't using pam o bin/102299 [patch] grep(1) malloc abuse? o kern/102211 sos [ar] [patch] detach raid member and reboot will cause o bin/102162 [tftpd] [patch] tftpd(8): Limit port range for tftpd f usb/102096 usb [patch] usbd(8) does not handle multiple devices in on o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/101761 usb [usb] [patch] [request] usb.h: increase maximal size o p usb/101757 imp [patch] uhid.4: correct structure field names to match o kern/101274 yongari [sk] [patch] SysKonnect Yukon initialization bug on K8 o kern/101228 embedded [nanobsd] [patch] Two more entries for FlashDevice.sub o bin/100956 remko [patch] support setting carp device state with ifconfi o bin/100921 [patch] tftpd(8): libexec/tftpd: `-w' non-traditional o bin/100914 [patch] tftpd(8): libexec/tftpd: write access control o docs/100803 jhb [patch] the man page about ithread is expired. o conf/100782 [keyboard] [patch] Default keymap to support ALT+Left, o conf/100616 [patch] syslog.conf: lines after exclamation point ign o bin/100535 [patch] cal(1) and ncal(1) do not take into account mu o ports/100504 skv [PATCH] databases/p5-Class-DBI: Reduce dependencies a bin/100496 [patch] Fix to get rid of the telnet(1) to cisco probl o bin/100424 [patch] ssh(1): SSH option BindAddress is ignored by o o misc/100322 [tools] [patch] kerninclude.sh doesn't dump object nam o i386/100142 i386 [pci] [patch] /dev/smb0 device not available on system a bin/100089 [patch] ftp(1): default ftp application of FreeBSD giv o bin/100018 gavin [patch] newsyslog(8) does not check size if time_at is o stand/100017 standards [Patch] Add fuser(1) functionality to fstat(1) o kern/99979 [patch] Get Ready for Kernel Module in C++ o bin/99896 gad [patch] lpr(1): lpr -r flag has no effect o kern/99800 [libc] [patch] Add support for profiling multiple exec o kern/99758 [pty] [patch] chown/chmod pty slave side in kernel o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s s bin/99693 antoine [patch] add magic(5)/file(1) support for FreeBSD 6.1 d o kern/99692 [patch] [L10n] A pl_PL.dvorak keymap for syscons. o misc/99627 [build] [patch] make update & CVSROOT o bin/99566 jail [jail] [patch] fstat(1) according to specified jid p kern/99500 glebius [netgraph] [patch] netgraph doesn't honor the monitor o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/99328 linimon [patch] updates for src/share/examples/cvsup o bin/99307 [patch] mount_nfs(8) incompatible with zVM VMNFS 3A0 o bin/99217 [patch] pam_ssh(8) waits for a wrong ssh-agent PID at o kern/99188 andre [tcp] [patch] FIN in same packet as duplicate ACK is l o kern/99186 lulf [gvinum] [patch] Gvinum dumpconfig/setstate/stop imple o gnu/99173 [PATCH] replace gnu patch with a bsd-licensed one. f kern/99068 [linux] [patch] Linux emulator crashed by java, when c o kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98978 net [ipf] [patch] ipfilter drops OOW packets under 6.1-Rel o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98932 i386 [i386] [patch] Kernel compilation failed on specific P o conf/98846 rc [jail] [patch] Templatize 'jail_rootdir' in /etc/rc.d/ o conf/98815 [locale] [PATCH] Add euro symbol to pt_PT locale using o kern/98788 [syscons] [patch] Add sysctl to disallow VT_LOCKSWITCH o docs/98759 doc [patch] sbp_targ(4) man page missing reference to devi o conf/98758 rc [jail] [patch] Templatize 'jail_fstab' in /etc/rc.d/ja o kern/98460 [kernel] [patch] fpu_clean_state() cannot be disabled f docs/98344 linimon [patch] An update of the article "Choosing the FreeBSD o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/98091 scottl [mfi] [patch] Makefile style of mfi kernel module brok p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/97951 ipfw [ipfw] [patch] ipfw does not tie interface details to p conf/97697 matteo [patch] rc.conf - jail__exec_afterstart[0..n] o bin/97499 [patch] one of sshd_config(5) options does not work o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 o kern/97381 [fdc] [patch] Patch to add zero-sector and spanned-sid o kern/97377 [ntfs] [patch] syntax cleanup for ntfs_ihash.c o kern/97329 [nfs] [patch] code simplification o kern/97153 [patch] When -NO_KERBEROS is set, libcom_err still get o bin/97083 [patch] passwd(1) does not support _PWF_HESIOD o kern/97071 jail [jail] [patch] add security.jail.jid sysctl o bin/97002 [patch] cron(8) fails quietly if /usr/sbin/sendmail is o kern/97000 [kernel] [patch] bogus "All threads purged from ugen0. o kern/96999 [procfs] [patch] procfs reports incorrect information o kern/96974 obrien [patch] to build FreeBSD kernel with binutils 2.16.92 o bin/96854 imp [patch] devd(8) parses events incorrectly in some case o kern/96840 [libc] [patch] getgrent() does not return large groups o conf/96746 [nanobsd] [patch] Configuration changes and README for f kern/96743 yongari [sk] [patch] broken 32-bit register operations p usb/96714 imp [uvisor] [patch] Update uvisor to support the Fossil A o bin/96540 [patch] catman(1) does not deal correctly with hard-li o kern/96429 [kernel] [patch] kern_linker.c hardcodes "/boot/kernel f kern/96393 [libz] [patch] assembler implementations for libz on i o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o kern/96346 [modules] [patch] disable build of modules that are al o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/96247 matteo [patch] 550.ipfwlimit reports logs even if log size is o stand/96236 standards [PATCH] [POSIX] sed.1 incorrectly describes a function p usb/96133 imp [scsi] [patch] add scsi quirk for joyfly 128mb flash u o bin/96128 [ahc] [patch] Make aicasm WARNS=6 clean o kern/96030 [bfe] [patch] Install hangs with Broadcomm 440x NIC in f bin/95979 [patch] burncd(8) fails to fixate CDs o conf/95754 [patch] Portuguese timedef p bin/95715 [patch] random(6) busy loop under some conditions o bin/95698 philip [patch] moused(8): Software control of sysmouse o kern/95661 [pci] [patch] pci_pci still not correct for initializi o kern/95368 [kernel] [patch] Test for race between callout_drain() o kern/95339 [libexec] [patch] rtld is thread-unsafe. fixes for dlo o kern/95277 net [netinet] [patch] IP Encapsulation mask_match() return o kern/95239 [libc] [patch] nftw(3) returns EINVAL for large values o ports/95102 ume [PATCH] security/cyrus-sasl2 - change authdaemond_path s ports/95085 portmgr [PATCH]: bsd.port.mk: Add knob to allow for mutually e o kern/95084 ipfw [ipfw] [regression] [patch] IPFW2 ignores "recv/xmit/v o bin/95082 [patch] ping(8) won't handle large preload patterns o bin/95079 [patch] apply(1) dies when there are two %1 in command p usb/94946 imp [uhub] [patch] code dynamic status size for status cha s kern/94863 [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94830 [nfs] [patch] mount_nfs causes a fatal trap 18 if the o kern/94772 [fifo] [patch] FIFOs (named pipes) + select() == broke p usb/94742 imp [umass] [patch] umass driver does not recognise YANO e o ports/94690 ume [PATCH] Daemons in /usr/local/etc/rc.d/ must do "setss o kern/94669 pjd [vfs] [patch] Panic from Failed Removable Media Mount o docs/94625 doc [patch] growfs man page -- document "panic: not enough o bin/94546 [PATCH] Make telnet(1) accept 'host:port' on command l o kern/94519 [libc] [patch] Add UF_HIDDEN file flag; map it to Wind o kern/94480 [libufs] [patch] bread(3) & bwrite(3) can crash under p usb/94439 imp [patch] Add support for JNC MP3 Player o www/94423 danger [patch] XML'ified release todo list o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 p usb/94311 imp [ugen][PATCH] allow interrupt IN transactions to be af o kern/94273 gnn [netipsec] [patch] IPIP decapsulation problem in FAST_ s ports/94138 portmgr [patch] Mk/bsd.gcc.mk, Mk/bsd.port.mk: CPUTYPE cause b p usb/94132 imp [patch] quirk for CENTURY EX35QUAT disk enclosure o bin/94052 [PATCH]: Adds option to script(1) to suppress carriage o bin/94032 krion [patch] Enhancement to pkg_add(1) to add -4 flag to fo o kern/93998 [libstand] [patch] panic in libstand when closing raw o kern/93942 fs [vfs] [patch] panic: ufs_dirbad: bad dir (patch from D o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o bin/93857 [patch] new utility: kiconv_cs_preload(8): Utility for o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o bin/93776 [crypto] [patch] SHA256_Update / SHA512_Update fail to o kern/93705 standards [headers] [patch] ENODATA and EGREGIOUS (for glibc com o docs/93683 chinsan [PATCH] some typos in klist(1) o misc/93661 [patch] loader(8): prevent *.4th files and friends fro o gnu/93566 [patch] sort(1): numeric sort is broken on multi-byte o ports/93560 roam [PATCH] dns/djbdns-ipv6: Update IPv6 patches o bin/93473 des [patch] Let pam_unix(8) use "passwordtime" from login. p kern/93393 imp [ed] [patch] Add Micro Research PCMCIA LAN Adapter MR1 o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o misc/93341 phk [nanobsd] [patch] make more flexibitily for NanoBSD cu o kern/93331 [kernel] [patch] broken asm in kernel o bin/93310 des [libpam] [patch] pam_unix ignores 'passwordtime' from o bin/93309 [rpc.quotad] [patch] rpc.rquotad: group quota support o gnu/93127 [PATCH] add __FreeBSD_kernel__ to pre-defines o kern/92880 [libc] [patch] almost rewritten inet_network(3) functi o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o kern/92786 sos [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92675 [fxp] [patch] fxp(4) unable to recover from occasional o conf/92541 [PATCH] [locale] add ca_AD, ca_FR and ca_IT locales o conf/92523 rc [patch] allow rc scripts to kill process after a timeo s ports/92434 portmgr [patch] Mk/bsd.port.mk automatic show pkg-message o kern/92412 [libexec] [patch] rpc.rstatd reports bogus packets/per o stand/92362 standards [headers] [patch] Missing SIGPOLL in kernel headers p usb/92306 imp [quirk] [patch] Support for iRiver U10 USB media playe o kern/92238 sos [ata] [patch] Spurious "atapci1: failed to enable memo o kern/92092 [iicbus] [patch] Panic if device with iicbus child is o kern/91954 [libpam] [patch] Proposed enhancement for pam_krb5: "o o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o s kern/91777 net [ipf] [patch] wrong behaviour with skip rule inside an o conf/91732 [patch] 800.loginfail: fix log message grep expression o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 f kern/91476 gavin [fdc] [patch] floppy drive doesn't work in MS Virtual o kern/91414 emaste [kernel] [patch] Polling for devices other than NICs o kern/91347 rodrigc [pci] [patch] Add another PCI-e chipset for extended c a bin/91316 [patch] pax(1): pax -pe does not preserve times on sym o bin/91299 yar [patch] add ftpd(8) SITE SHA256 command o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula o kern/91134 [smbfs] [patch] Preserve access and modification time o bin/91101 edwin [patch] whereis(1): make more readable o bin/91034 [patch] minor fix to iostat(8) so that columns line up o kern/90973 thompsa [net] [patch] if_bridge does not handle arp for own ad s conf/90863 dougb [patch] 6.0 boot: name resolution broken for daemon st o bin/90823 [PATCH] cp(1) should use lchflags() o kern/90815 [smbfs] [patch] SMBFS with character conversions somet o bin/90687 [patch] side effect of -delete option of find(1) o bin/90680 [patch] make(1) thinks "^.for.o:" is a directive (".fo o ports/90436 portmgr [patch] Add a way to handle configuration files to bsd o bin/90384 [patch] chroot patch for sftp-server(8) o bin/90311 [patch] add "eject" to mt(1) a conf/90163 dougb [patch] Easily launch non-forking daemons like logsurf p usb/90162 imp [usb] [patch] Add support for the MS Wireless USB Mous o bin/90130 [patch] sysctl(8): print temperature in celsius only w o bin/90114 [patch] pw(8) takes strings after option -g for GID 0 s bin/90082 matteo [syscons] [patch] curses ACS line graphics support for o kern/89989 jail [jail] [patch] Add option -I (ASCII 73) PID to specif o bin/89988 [patch] bootparamd(8) null host support and whoami fix o kern/89876 [txp] [patch] txp driver doesn't work with latest firm o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o bin/89799 [patch] Making natd(8) not require a newline at the en o bin/89770 des [patch] pam_krb5 'authentication token failure' in pas o bin/89762 edwin [patch] top(1) startup is very slow on system with man o kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks a kern/89660 geom [vinum] [patch] [panic] due to g_malloc returning null o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr s kern/89528 jail [jail] [patch] impossible to kill a jail o bin/89410 [PATCH] sh(1) missing \u interpolation and bug/fix in o bin/89326 [PATCH] Add pattern matching to login.access(5) p docs/89325 trhodes [PATCH] Clarification of kbdmap(5), atkbd(4) and kbdco s kern/89305 vwe [vr] [patch] D-Link NIC with VIA Rhine II, lost of Net o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement p usb/88939 imp [umass] [patch] Fix cheapy Myson USB-IDE adapter o conf/88913 rc [patch] wrapper support for rc.subr o bin/88821 pjd [PATCH] IPv6 support for ggated(8) o bin/88780 [PATCH] Baseline ipmon(8) uses LOG_LOCAL0 syslog, not o bin/88655 [patch] tcsh(1): /bin/tcsh ls-F : Floating exception ( a bin/88538 [patch] tcsh(1) ls-F spacing incorrect. o docs/88512 doc [patch] mount_ext2fs(8) man page has no details on lar o kern/88336 [kernel] [patch] setkey(8) -D fails to report all SAs o bin/88215 [patch] syslogd(8) does not pass cleanly parameters to o kern/88117 [rtld] [patch] support of $ORIGIN in rtld-elf. o bin/88056 [patch] [request] cp(1) could really use Linux's -x op o kern/88045 jhb [nve] [patch] 6.0rc1: nve0: device timeout (51) o kern/87990 [kernel] [patch] SMP Race Condition in kdb_enter/kdb_e o bin/87966 [PATCH] newfs(8): introduce -A flag for newfs to enabl o conf/87925 [patch] [request] modify output of 405.status_ata_raid o bin/87792 [patch] very bad performance of cp(1) via NFS, possibl o bin/87729 phk [libc] [patch] most calls to malloc(3) generate warnin o bin/87651 [patch] fsck(8) (on superblock error) tells wrong man o kern/87506 [vr] [patch] Fix alias support on vr interfaces s ports/87420 portmgr [patch] bsd.port.mk: implementing WITH_OPENLDAP_VER to o www/87119 hrs [patch] encode copyright and such symbolically o kern/87032 ipfw [ipfw] [patch] ipfw ioctl interface implementation o kern/86957 ipfw [ipfw] [patch] ipfw mac logging o kern/86944 [nfs] [patch] When I use FreeBSD with NFS client, clos o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o bin/86635 [patch] pfctl(8): allow new page character (^L) in pf. o bin/86485 [PATCH] hexdump(1): hexdump -s speedup on /dev a stand/86484 standards [PATCH] mkfifo(1) uses wrong permissions o bin/86388 [patch] periodic(8) daily should backup bsdlabel(8) / o kern/86290 jeff [kernel] [patch] minor optimizations + cleanup to vrel p usb/86195 imp [aue] [patch] allow USB Ethernet Adaptor "ELECOM LD-US o bin/86148 [patch] dirname(1) doesn't take multiple arguments as o kern/85971 jeff [uma] [patch] minor optimization to uma o gnu/85895 [PATCH] cc -print-search-dirs returns (null) o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc s kern/85658 jeff [sched_ule] [patch] add DDB command, show runq, to sch o kern/85657 [kernel] [patch] capture and expose per-CPU time accou o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during o kern/85651 [kernel] [patch] debugging code to show entries in eve o kern/85650 [libstand] [patch] modifications to tftp-based PXE boo o kern/85648 [net] [patch] provide more specific default network dr o kern/85493 imp [ed] [patch] OLDCARD can't probe ed driver o i386/85417 i386 [i386] [npx] [patch] Possible bug in ia32 floating-poi p kern/85320 gonzo [gre] [patch] possible depletion of kernel stack in ip o kern/85266 [xe] [patch] xe(4) driver does not recognise Xircom XE o docs/85187 doc [patch] find(1) manpage missing block info for -ls o kern/85137 des [pseudofs] [patch] panic due to sleep with held mutex o docs/85128 doc [patch] loader.conf(5) autoboot_delay incompletly desc o docs/85118 doc [PATCH] opiekey(1) references non-existing opiegen(1) o kern/85086 wkoszek [ef] [patch] Locking fixes for ef(4) (+removes mem. le o kern/84981 [headers] [patch] header protection for with aroun p kern/78179 alc [vm] [patch] bus_dmamem_alloc() with BUS_DMA_NOWAIT ca o bin/78170 [patch] Fix signal handler in bootpd(8) o docs/78138 doc [patch] Error in pre-installation section of installat o kern/78114 phk [geom] [patch] Solaris/x86 label structures for GEOM ( p usb/77940 imp [quirk] [patch] insertion of usb keyboard panics syste p kern/77913 net [wi] [patch] Add the APDL-325 WLAN pccard to wi(4) o kern/77355 [i386] [patch] Detect i*86 subarches for uname s kern/77195 net [ipf] [patch] ipfilter ioctl SIOCGNATL does not match o kern/77181 mckusick [newfs] [patch] newfs -g largevalue, mkdir, panic o bin/77031 [patch] comm(1) unable to handle lines greater than LI o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug o kern/76893 [cam] [patch] Fatal divide in booting processes with B o bin/76711 [patch] rm(1): parse error in rm.c:check() while parsi o kern/76678 dfr [libpam] [patch] Allow pam_krb5 to authenticate no loc o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o conf/76626 [patch] 460.status-mail-rejects shows destination doma o kern/76539 [dummynet] [patch] ipnat + dummynet on output on same s kern/76520 [libiconv] [patch] Add new kernel-side libiconv conver o docs/76333 doc [patch] ferror(3): EOF indicator can be cleared by not o gnu/76169 [patch] Add PAM support to cvs pserver o kern/76126 [nfs] [patch] 4.11 client will send a NFS request to r o kern/75934 [libcrypt] [patch] missing blowfish functionality in p o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o docs/75711 keramida [PATCH] opendir(3) missing ERRORS section o conf/75502 [patch] [locale] Fix LC_NUMERIC and LC_MONETARY for de o bin/75258 [patch] dd(1) has not async signal safe interrupt hand o kern/75132 jhb [puc] [patch] add support for the Davicom 56PDV PCI Mo o kern/75122 silby [netinet] [patch] Incorrect inflight bandwidth calcula s kern/74986 jfv [patch] sysctlize a parameter of if_em's interrupt mod p usb/74880 imp [ucom] [patch] Samsung N400 cellphone/acm fails to ata p usb/74849 imp [uvisor] [patch] Samsung SPH-i500 does not attach prop o kern/74786 [irq] [patch] Smartlink Modem causes interrupt storm o p usb/74609 imp [umodem] [patch] allowing cdma modems to work at full f usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o kern/74450 [libalias] [patch] enable libalias/natd to create skip o bin/74360 [patch] ndiscvt(8) generates a driver which doesn't ma o conf/74213 darrenr [PATCH] Connect src/etc/periodic/security/610.ipf6deni o bin/74178 [patch] grdc(6) - scrolling does not work and "AM"/"PM o bin/74127 [patch] patch(1) may misapply hunks with too little co o conf/74004 [PATCH] add fam support to inetd.conf o i386/73921 i386 [sysctl] [patch] sysctlbyname for machdep.tsc_freq doe o conf/73786 [patch] added WARNING in spanish to stable-supfile o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o conf/73677 rc [patch] add support for powernow states to power_profi o conf/73337 [nsswitch.conf] [patch] potential invalid free o kern/73328 edwin [patch] top(1) shows NICE as -111 on processes started o kern/73004 [loader] [patch] PXE loader malfunction in multiple PX a conf/72978 [patch] [L10n] add danish syscons keymap with accents p kern/72933 yar [netgraph] [patch] promisc mode on vlan interface does o conf/72901 [patch]: dot.profile: prevent printing when doing an s o bin/72793 [patch] wicontrol(8) prints out non-printable chars in p usb/72732 imp [patch] Kyocera 7135 quirk. o bin/72588 [patch] iostat(8) tty stats field concatenation o kern/72585 [syscons] [patch] iso05-8x16.fnt lacks letter q o conf/72465 [patch] United States International keyboard layout fo o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o conf/72277 [patch] update for /usr/share/skel o conf/72076 [locale] [patch] German locales use old %d.%m.%y date o conf/71994 [patch] dot.login: login shell may unnecessarily print s bin/71855 [patch] making kdump(1) WARNS=6 clean s bin/71773 des [patch] genericize.pl -c misses some comments o conf/71767 [patch] [L10n] French translations for keyboards keyma o bin/71749 [PATCH] truss -f causes circular wait when traced proc o bin/71671 [PATCH] cleanup of the usr.sbin/apmd code o bin/71667 [PATCH] cleanup of the usr.sbin/bootparamd code o bin/71665 [PATCH] cleanup of the usr.sbin/dconschat code o bin/71664 [PATCH] cleanup of the usr.sbin/fwcontrol code o bin/71661 [PATCH] cleanup of the usr.sbin/keyserv code o bin/71660 [PATCH] cleanup of the usr.sbin/kgmon code p bin/71659 [PATCH] cleanup of the usr.sbin/mount_portalfs code o bin/71632 [PATCH] cleanup of the usr.sbin/ndp code o bin/71631 [PATCH] cleanup of the usr.sbin/pppctl code o bin/71630 [PATCH] cleanup of the usr.sbin/pppd code o bin/71629 [PATCH] cleanup of the usr.sbin/pppstats code o bin/71628 [PATCH] cleanup of the usr.sbin/rpcbind code o bin/71625 [rpc] [patch] cleanup of the usr.sbin/rpc.ypupdated co o bin/71622 [PATCH] sicontrol(8): cleanup of the usr.sbin/sicontro o bin/71621 [PATCH] sliplogin(8): cleanup of the usr.sbin/sliplogi o bin/71618 [PATCH] timed(8): cleanup of the usr.sbin/timed code o bin/71617 [PATCH] ypserv(8): cleanup of the usr.sbin/ypserv code o bin/71616 [PATCH] yp_mkdb(8): cleanup of the usr.sbin/yp_mkdb co o bin/71613 [PATCH] traceroute(8): cleanup of the usr.sbin/tracero o bin/71602 [patch] uninitialized "len" used instead of "slen" wit s bin/71290 des [patch] passwd(1) cannot change passwords other than N o kern/71258 alc [vm] [patch] anonymous mmappings not always page align o stand/70813 standards [PATCH] ls(1) not Posix compliant o kern/70810 [pci] [patch] Enable SMBus device on Asus P4B series m o docs/70652 doc [patch] New man page: portindex(5) o docs/70583 ceri [patch] Update freebsd-glossary o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o bin/70245 ru [patch] [build] Change to src/release/Makefile to aid p kern/70096 trhodes [msdosfs] [patch] full msdos file system causes corrup o bin/69986 [sysinstall] [patch] no job control in fixit shell on o bin/69875 [patch] mlxcontrol(8): `mlxcontrol status ' o docs/69861 doc [patch] usr.bin/csplit/csplit.1 does not document POSI o kern/69650 [patch] make getserv* functions work with nsdispatch o bin/69398 [patch] login(1) cleartext display of password in logi o bin/69268 [patch] Fix ndiscvt(8) to warn you if it's going to ge o bin/69083 [patch] vi(1) basic modelines for contrib/nvi o bin/69010 [patch] [build] Portability fixes for FreeBSD build ut o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports a kern/68905 secteam [patch] core dumps are assigned wrong ownership o bin/68797 [patch] cut(1): fflush after each write if an option i s kern/68692 andre [net] [patch] Move ARP out of routing table o bin/68586 dwmalone [patch] allow syslogd(8) to forward to non-default por o bin/68437 [patch] conscontrol(8) DEVDIR -> _PATH_DEV fix and mor p usb/68412 imp [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o bin/68328 [patch] syslogd(8) enable configuration of extra liste s kern/68317 [kernel] [patch] on soft (clean) reboots clean dmesg o o bin/68312 [patch] be able to create fdisk(8) partions using simi o kern/68311 [patch] it is impossible to override defaults with ker o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction a kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa o conf/68108 [patch] Adding mac-address /conf selector to diskless o kern/67830 [smp] [patch] CPU affinity problem with forked child p o bin/67550 [patch] tftpd(8) Add BLK_SIZE option to tftpd server f ports/67436 portmgr [patch] bsd.port.mk: GNU_CONFIGURE_PREFIX_SUBDIR s i386/67383 [i386] [patch] do a better job disassembling code in 1 o bin/67231 [patch] pam_krb5 doesn't honor default flags from /etc o bin/66988 [patch] apm(8) check validation of the returned values o kern/66960 [fdc] [patch] filesystems not unmounted during reboot o bin/66893 [patch] rpc.yppasswdd(8): Linux NIS clients connecting s ports/66566 portmgr [PATCH] bsd.port.mk: fix build when /usr/obj/usr/ports p docs/66343 imp [patch] unlisted supported card on man page for wi(4) s ports/66342 portmgr [PATCH] fix ECHO_MSG breakage in java ports p docs/66289 brueffer [patch] lib/libc/gen/ualarm.3 refers to non-existent a o kern/66268 glebius [socket] [patch] Socket buffer resource limit (RLIMIT_ o kern/66225 [netgraph] [patch] extend ng_eiface(4) control message o kern/66029 [crypto] [patch] MD5 alignment problem on a TriMedia p o kern/65901 [smbfs] [patch] smbfs fails fsx write/truncate-down/tr s ports/65804 portmgr [PATCH] bsd.port.mk is gratuitously slow o bin/65803 gad [patch] ps(1) enhancements (posix syntax, and more) o kern/65355 [pci] [patch] TC1000 serial ports need enabling o bin/65306 obrien [patch] [build] Portability fixes for FreeBSD build ut o bin/65228 [Patch] Allow rup(1) to parse hostnames from a defined s kern/64875 standards [libc] [patch] [request] add a system call: fdatasync( a kern/64816 [nfs] [patch] mmap and/or ftruncate does not work corr o bin/64327 [patch] make(1): document surprising behaviour of assi o kern/64196 [kernel] [patch] remove the arbitrary MAXSHELLCMDLEN o kern/64178 jmg [kqueue] [patch] kqueue does not work with bpf when us o kern/64114 [vga] [patch] bad vertical refresh for console using R o kern/63863 glebius [netgraph] [patch] [request] implement NGM_ELECTROCUTE f usb/63837 linimon [uhid] [patch] USB: hid_is_collection() only looks for o docs/63570 ceri [patch] Language cleanup for the Handbook's DNS sectio a bin/63197 [patch] tftp(1) Bus error, core dumped o kern/63096 csjp [mac] [patch] MAC entry point for route manipulation o kern/63064 [patch] strptime(3) fails on %z a kern/62278 [nfs] [patch] NFS server may not set eof flag when rea o bin/62077 [patch] Make it possible to abbreviate mixer(8) device o i386/62003 remko [loader] [patch] make /boot/loader "reboot" code same o bin/61978 delphij [patch] sync setkey(8) token.l with KAME o kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture a kern/61744 andre [netinet] [patch] TCP hangs onto mbufs with no tcp dat o bin/61666 peter [patch] mount_nfs(8) parsing bug, segmentation fault s kern/61497 ups [kernel] [patch] __elfN(map_insert) bug s i386/61481 [patch] a mechanism to wire io-channel-check to userla s misc/61322 [build] [patch] bsd.dep.mk disallows shell generated f o docs/61301 doc [patch] Manpage patch for aue(4) to enable HomePNA fun o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o bin/61239 [patch] bootp enhancement, places the dhcp tags into t p usb/61234 imp [usb] [patch] usbhidaction(1) doesn't support using an o kern/60963 [pecoff] [patch] Win32 Applications abort on PECOFF o bin/60892 [patch] added -p option to kldxref(8) to allow creatio o bin/60834 [patch] ftpd(8) send_data()+oldway: anonymous transfer o kern/60697 [pty] [patch] pseudo-tty hack versus telnet race cause o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s ports/60558 portmgr [PATCH] bsd.port.mk: automatically verify GnuPG signat o kern/60550 silby [kernel] [patch] hitting process limits produces sub-o p kern/60307 [pccard] [patch] wrong product id in pccarddevs for Sp o kern/59903 [pci] [patch] "pci_find_device" returns [only/at] the o bin/59777 [patch] ftpd(8)/FreeBSD 5: potential username enumerat o bin/59775 [patch] ftpd(8)/FreeBSD 5: incorrect reply for "unimpl o bin/59774 [patch] ftpd(8)/FreeBSD 5: syslog facility may be chan o bin/59772 [patch] ftpd(8)/FreeBSD 5: support for tcp_wrappers in o docs/59735 kensmith [patch] Adding a reference to Icelandic Rsync to mirro o bin/59708 [sysinstall] [patch] add sSMTP support for Mail select o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans o conf/59600 [PATCH] Improved us.emacs.kbd mapping o bin/59564 [patch] from(1) add option (-S) to also display subjec o www/59307 remko [patch] xml/xsl'ify & update publications page o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o docs/59240 blackend [patch] handbook update: linux MATLAB o bin/59220 obrien [patch] systat(1) device select (:only) broken o docs/59044 doc [patch] doc.docbook.mk does not properly handle a sour o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o kern/58803 [kernel] [patch] kern.argmax isn't changeable even at o kern/58687 deischen [libc] [patch] gethostbyname(3) leaks kqueue file desc s kern/58529 dwmalone [libpcap] [patch] RDWR bpf in pcap. o bin/58483 [patch] mount(8): allow type special or node relative o bin/58012 [patch] tftpd(8) Multihomed tftpd enhancement o bin/57715 [patch] tcopy(1) enhancement o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets o kern/57522 [PATCH] New PID allocater algorithm from NetBSD o conf/57517 [patch] add parameter for /etc/periodic/daily/210.back s bin/57407 [patch] Better NTP support for dhclient(8) and friends o docs/57388 doc [patch] INSTALL.TXT enhancement: mention ok prompt o docs/57298 blackend [patch] add using compact flash cards info to handbook s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET s bin/57088 [cam] [patch] for a possible fd leak in libcam.c s bin/57018 [patch] convert growfs(8) to use libufs(3) o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o bin/56648 [patch] enable rcorder(8) to use a directory for locat o bin/56447 [patch] extend mt(1) command for AIT-2 tape drives o kern/56250 [ums] [patch] ums(4) doesn't work with MCT based PS/2 o kern/55984 ipfw [ipfw] [patch] time based firewalling support for ipfw o docs/55883 kensmith [patch] handbook advanced-networking/chapter.sgml s ports/55841 portmgr [patch] Mk/bsd.port.mk: add routines to use ${PORTSDIR a kern/55542 andre [de] [patch] discard oversize frame (ether type 800 fl o bin/55539 [patch] Parse fstab(5) with spaces in path names o misc/55387 [build] [patch] users LD_LIBRARY_PATH can interfere wi p kern/55018 andre [digi] [patch] Digiboard PC/Xem fails to initialize wh o conf/55015 [patch] 700.kernelmsg: Security check output enhacemen o kern/54891 [libalias] [patch] libalias(3)/natd(8) and exporting c o kern/54604 pjd [kernel] [patch] make 'ps -e' procfs-independent o bin/54594 [patch] make(1) apply regexps to the entire variable - o docs/54461 kensmith [patch] Possible additions to Handbook (Basics and Use o kern/54439 [sysctl] [patch] Protecting sysctls variables by given o bin/54401 [patch] pppstats(8) prints 0 for absolute values in ra o kern/54383 net [nfs] [patch] NFS root configurations without dynamic o bin/54365 [patch] add -u option to install(1) for SysV compatibi o conf/54170 [patch] error from weekly periodic script 330.catman s stand/53682 [feature request] [patch] add fuser(1) utility o bin/53341 [sysinstall] [patch] dump frequency in sysinstall is a f kern/52980 mbr [dc] [patch] dc driver fails to init Intel 21143 Cardb s ports/52765 portmgr [PATCH] Uncompressing manual pages may fail due too "a o kern/52725 [PATCH] installincludes for kmods s ports/52706 portmgr [patch] bsd.port.mk issues warning if a site is explic o kern/52623 [ex] [patch] IRQ error in driver for the Intel EtherEx s docs/52071 delphij [PATCH] Add more information about soft updates into a s usb/51958 usb [urio] [patch] update for urio driver o bin/51827 [libc] [patch] getaddrinfo(3) is broken with numeric s o kern/51583 [nullfs] [patch] allow to work with devices and socket s kern/51341 remko [ipfw] [patch] ipfw rule 'deny icmp from any to any ic o kern/51274 ipfw [ipfw] [patch] ipfw2 create dynamic rules with parent p bin/51205 dwmalone [patch] openssl(1) in base system is not compiled thre o ports/51152 portmgr [patch] bsd.port.mk: generic SHEBANG_FILES o bin/51148 [patch] Control the cache size for pwd_mkdb(8) to spee s bin/51137 [patch] config(8) should check if a scheduler is selec o bin/51070 [patch] add -p option to pom(6) o kern/51009 [aue] [patch] buggy aue driver fixed. s kern/50827 [kernel] [patch] [request] add sane record locking o docs/50773 jmg [patch] NFS problems by jumbo frames to mention in bge o kern/50526 [kernel] [patch] update to #! line termination o kern/50310 [libalias] [patch] natd / libalias fix to allow dcc re o bin/50300 [patch] make the loader(8) use of terminal-control seq p docs/50248 ceri [patch] New FreeBSD books o docs/50211 doc [PATCH] doc.docbook.mk: fix textfile creation o misc/50106 [build] [patch] make 'make release' more flexible behi o kern/49039 [sio] [patch] add support for RS485 hardware where dir a bin/49023 gad [patch] to lpd(8) (printjob.c) to pass source filename s bin/48962 des [patch] modify fetch(1) to allow bandwidth limiting o gnu/48638 [libdialog] [patch] some bug fixes in libdialog o bin/48603 [patch] getopt(1) is broken o kern/48599 [syscons] [patch] syscons cut-n-paste logic is broken o kern/48471 pjd [jail] [patch] [request] private IPC for every jail o conf/48444 [patch] security.functions: count connection attempts o bin/48443 mtm [patch] periodic(8) executes too many files o conf/48325 [patch] /etc/periodic/security/100.chksetuid doesn't w o bin/48183 marcel [patch] gdb(1) on a core(5)-file from a threaded proce o kern/48172 ipfw [ipfw] [patch] ipfw does not log size and flags o conf/48133 [patch] /etc/rc: improved vi recovery notification o docs/48101 doc [patch] add documentation on the fixit disk to the FAQ o docs/47818 doc [patch] ln(1) manpage is confusing o bin/47815 [patch] stty(1) -all should work. o docs/47594 remko [PATCH] passwd(5) incorrectly states allowed username o bin/47576 edwin [PATCH] factor(6)ing of negative numbers o conf/47566 [vinum] [patch] add vinum status verification to perio o bin/47540 [patch] Make natd(8) configurable in running state wit o bin/47387 [patch] gprof(1) -K still requires "a.out" arg / overr o kern/46973 [syscons] [patch] [request] syscons virtual terminals o bin/46888 gad [patch] Add script run hook to newsyslog(8) o bin/46758 [patch] moused(8) enhancements o bin/46676 ru [patch] [build] bsd.dep.mk restricts domain of tags co o bin/46352 [patch] login(1) open file descriptors and signal hand o bin/46328 gad [patch] patch for lpd(8) o kern/46159 ipfw [ipfw] [patch] [request] ipfw dynamic rules lifetime f o kern/45729 [libexec] [patch] make rbootd transfer the default fil o conf/45704 [PATCH] request to change cp866b font to cp866 s bin/45547 sos [patch] make burncd(8) handle .wav files. o bin/45529 gcooper [patch] hexdump(1) core-dumps with certain args o bin/45333 [patch] New option -r for chown(8) and chgrp(1) o bin/45254 [sysinstall] [patch] sysinstall installs things it sho o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/45222 [patch] daily rejected mail hosts report too long p bin/45193 [patch] truss(1) can't truss itself o docs/45011 trhodes [patch] style(9): '->' and '.' don't require spaces o gnu/44984 bugmeister [patch] send-pr(1) can use environmental variable $FRO o conf/44717 [patch] update login.conf and unify login capabilities o gnu/44564 peter [PATCH] Aborted cvs session causes an endless loop in o kern/44365 [headers] [patch] introduce ulong and unchar types o kern/44267 [sio] [patch] One more modem PNP id for /usr/src/sys/i o kern/44202 [rp] [patch] -stable rp driver does not work with mult o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start o kern/43905 jmg [kqueue] [patch] kqueues: EV_SET(kevp++, ...) is non-i o docs/43823 doc [PATCH] update to environ(7) manpage o bin/43819 [patch] changed truss(1) output for utrace calls o kern/43716 [puc] [patch] puc driver does not recognize Lava Dual- o kern/43616 [zlib] [patch] static-ize some functions in sys/net/zl o kern/43611 [crypto] [patch] static-ize some symbols in sys/crypto o bin/43582 [patch] passwd(1) fails on nonexistent users o kern/43577 [kernel] [patch] [request] new kernel option SHUTDOWN_ o conf/43500 [patch] rc.syscons "allscreens" improvements o bin/43434 [patch] new option to dmesg(8) which allows to display o bin/42974 [patch] syslogd(8): add ISO 8601 date format option o kern/42429 [libc] [patch] hash_action called with HASH_DELETE doe o kern/42422 [libc] [patch] dbm_delete returns -1 instead of 1 when o kern/42387 [librpcsvc] [patch] cleaning code of librpcsvc from wa o kern/42386 [libkvm] [patch] cleaning code from warnings in libkvm o bin/42336 [patch] ISO-fication of /usr/src/contrib/tcp_wrappers: o kern/42274 [kernel] [patch] Convert defined variable into tuneabl o misc/42115 luigi [picobsd] [patch] fix build script for 4.6-STABLE s bin/41947 gcooper [patch] hexdump(1) unprintable ASCII enhancement o docs/41879 hrs [patch] cleanup to DOCROOT/share/sgml/freebsd.dsl o docs/41824 murray [patch] LANG is not documented in setlocale(3) o bin/41817 [patch] pw(8): pw groupshow doesn't include the login o conf/41777 [patch] /etc/periodic/daily/100.clean-disks removes li o bin/41674 [patch] iostat(8) column formatting overlaps a bin/41583 [patch] mtree(8) assorted mtree bugs o bin/41556 obrien [patch] wtmp patch for ftpd(8) o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/41307 [libalias] [patch] logging of links lifecycle (add/del o bin/41271 matteo [patch] non-suid crontab(1) o bin/41190 [patch] sed(1) report the { linenum instead of EOF lin o bin/41159 [patch] new sed(1) -c option to allow ; as a separator o conf/40777 [patch] disktab does not support 2.88MB floppies o bin/40597 [patch] add fdisk(8) ability of showing extended parti o kern/40369 [kernel] [patch] rman_reserve_resource - when "count > a bin/40282 [patch] kill(1) has bad error checking for command lin s kern/40021 [build] [patch] use ld(1) to build kernel with linked- o kern/40017 [patch] allows config(8) to specify config metadata di s threa/39922 threads [threads] [patch] Threaded applications executed with o kern/39681 [sysctl] [patch] add hidden kernel boot tunables to sy o ports/39660 portmgr [patch] add ${PKGNAMEPREFIX} to (DOCS|EXAMPLES)DIR o conf/39505 [patch] automate BUILDNAME variable for releases o bin/39463 mtm [patch] Add several options to fingerd(8) o kern/39252 [syscons] [patch] syscons doesn't support 8-bit contro o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o docs/38982 doc [patch] developers-handbook/Jail fix o bin/38727 [patch] mptable(1) should complain about garbage argum a kern/38554 net [patch] changing interface ipaddress doesn't seem to w s kern/38347 [libutil] [patch] [request] new library function abs2r o bin/38256 [patch] linking pax(1) to pax_{cpio|tar} o bin/38168 [patch] [request] installing curses-based versions of o docs/38061 ume [patch] typos in man pages for faith(4) & faithd(8) o gnu/37910 bugmeister [patch] make send-pr(1) respect &'s in /etc/{master.}p o bin/37844 [patch] [build] make knob to not install progs with su o conf/37569 matteo [PATCH] Extend fstab(5) format to allow for spaces in o kern/37555 [kernel] [patch] vnode flags appear to be changed in n o kern/37554 jmg [vm] [patch] make ELF shared libraries immutable once o i386/37523 davidxu [i386] [patch] lock for bios16 call and vm86call o bin/37442 [patch] sleep(1) to support time multipliers s kern/37441 davidxu [isa] [patch] ISA PNP parse problem o bin/37437 [patch] [request] Add HTTP-style support to vis(1)/unv o bin/37083 [patch][request] small improvement to talk(1): add clo o bin/37013 [patch] ls(1) directory name output trailing slash dup o gnu/36926 bugmeister [patch] send-pr destroys PR if emacs interrupt charact o kern/36916 [libdisk] [patch] DOS active partition flag lost in li o kern/36902 [libc] [patch] proposed new format code %N for strftim o bin/36556 [patch] regular expressions for tcpwrappers o bin/36553 gad [patch] [request] Two new features in newsyslog(8) a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o bin/36374 [patch] apmd(8): fix core dumps, other improvements o bin/36262 [patch] Fixed rusers(1) idle-time reporting to use min o kern/36170 [an] [patch] an(4) does an_init() even if interface is o bin/36143 [patch] moused(8): add dynamic (non linear) mouse acce o bin/35886 [patch] pax(1) enhancement: custom time format for lis o conf/35545 [patch] enhanced periodic scripts: 100.clean-disks, 10 o misc/35542 bde [build] [patch] BDECFLAGS needs -U__STRICT_ANSI__ o kern/35442 net [sis] [patch] Problem transmitting runts in if_sis dri o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/35262 [boot2] [patch] generation of boot block for headless o bin/35113 [patch] grdc(6) enhancement: countdown timer mode o bin/35109 edwin [patch] morse(6) add ability to decode morse code s conf/35018 brian [patch] enhancing daily/460.status-mail-rejects o kern/34842 ceri [nis] [patch] VmWare port + NIS causes "broadcast stor o bin/34628 portmgr [patch] pkg_add(1) pkg-routines ignore the recorded md o bin/34412 [patch] tftp(1) will still try and receive traffic eve o kern/33965 [keyboard] [patch] programmable keys of the keyboard ( o bin/33809 mux [patch] mount_nfs(8) has trouble with embedded ':' in o bin/33774 [patch] for killall(1) s docs/33589 doc [patch] to doc.docbook.mk to post process .tex files. o bin/32808 dwmalone [patch] tcpd.h lacks prototype for hosts_ctl o bin/32680 bz [jail] [patch] Allows users to start jail(8) by hostna s kern/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals o bin/31987 [patch] allow dump(1) to notify operators by mail(1) o kern/31981 [libc] [patch] (mis)feature in getnetent parsing -- co o kern/31890 [syscons] [patch] new syscons font s bin/31304 [patch] fix crunchgen(1) to work with more contrib-kin o kern/31201 [libdisk] [patch] add free_space(chunk) to libdisk o conf/30938 [patch] Improving behavior of /etc/periodic/daily/110. o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem o conf/30812 [patch] giant termcap database update o bin/30654 gad [patch] Added ability for newsyslog(8) to archive logs o bin/30542 [patch] add -q option to shut up killall(1) s kern/30422 [patch] new function: add WDT hardware watchdog driver o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari s ports/30331 portmgr [patch] Conflict between bsd.port.mk MAKEFILE variable o kern/30321 [patch] strftime(3) '%s' format does not work properly o kern/30052 mbr [dc] [patch] dc driver queues outgoing pkts indefinite a docs/30008 doc [patch] French softupdates document should be translat o bin/29897 des [patch] pam_unix(8) loginclass passwd_prompt o kern/29698 emulation [linux] [patch] linux ipcs doesn'work s kern/29423 [request] [patch] new feature: kernel security hooks i o bin/29363 gad [patch] newsyslog(8) can support time as extension o kern/29355 mux [kernel] [patch] add lchflags support o bin/28364 [patch] flex(1) generated files fail to compile cleanl o conf/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't contain some u o docs/27605 doc [patch] Cross-document references () o bin/27306 marcel [patch] hw watchpoints work unreliable under gdb(1) o kern/26787 [patch] sysctl change request o kern/26562 [lpt] [patch] /dev/lpt0 returns EBUSY when attempting o kern/26486 remko [libc] [patch] setnetgrent hangs when netgroup contain o kern/26323 [ufs] [patch] Quota system creates zero-length files o stand/25777 standards [kernel] [patch] atime not updated on exec s bin/25477 [pam] [patch] pam_radius(8) fix to allow null password o bin/24485 [PATCH] to make cron(8) handle clock jumps o kern/24435 [libdisk] [patch] changing slice type causes Auto-part o bin/23562 markm [patch] telnetd(8) doesn't show message in file specif o kern/23546 multimedia [snd_csa] [patch] csa DMA-interrupt problem a bin/23254 [PATCH]: yacc(1) accepts bad grammer o bin/23098 [sysinstall] [patch] if installing on a serial console o conf/23063 net [PATCH] for static ARP tables in rc.network s i386/22944 alc [vm] [patch] isa_dmainit fails on machines with 512MB s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo o kern/21998 kmacy [socket] [patch] ident only for outgoing connections a kern/21807 trhodes [msdosfs] [patch] Make System attribute correspond to o conf/21675 [patch] Better and more disktab entries for MO drives a bin/21089 [patch] vi(1) silently corrupts open file on SIGINT wh o bin/20501 [patch] dump(8) extra flag to dump to offline autoload o bin/19837 ambrisko [sysinstall] [patch] run Fix It floppy from serial por s bin/19773 markm [patch] telnet(1) infinite loop depending on how fds a s kern/19535 [procfs] [patch] procfs_rlimit tidyup s kern/19363 [kernel] [patch] allow processes know about their file o kern/18293 [psm] [patch] lack of versapad mouse wheel emulation o kern/18271 [patch] simplelock: klds not portable across UP and SM o bin/18100 [patch] update to src/usr.bin/from/from.c for multiple o kern/17504 [cam] [patch] Another Micropolis Synchronize Cache Pro o kern/17425 [ppbus] [patch] fix two small printing errors in ppbus o bin/17289 gad [PATCH] wrong permissions on /var/run/printer o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. f kern/16021 imp [i386] [patch] To support SMP on NEC PC98, call mp_pro o kern/15838 trhodes [msdosfs] [patch] Conversion tables in msdosfs_conv.c o bin/15619 peter [patch] standard pppd(8) doesn't authenticate users wi o bin/15205 [patch] Addition to random(6) o bin/15168 [patch] Adding tracklist support to fdformat(1) p conf/15010 keramida [patch] rc.firewall: "client" firewall configuration k f ports/14048 des [patch] emulators/doscmd -r doesn't work s kern/13997 rwatson [jail] [patch] RLIMIT_NPROC works unadequately for jai f kern/13326 kmacy [headers] [patch] additional timeval interfaces for Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52680106566B for ; Mon, 20 Oct 2008 11:12:07 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3C37B8FC0C for ; Mon, 20 Oct 2008 11:12:07 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id m9KBC7U4086086 for ; Mon, 20 Oct 2008 11:12:07 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id m9KB8bgO084722 for freebsd-bugs@FreeBSD.org; Mon, 20 Oct 2008 11:08:37 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 20 Oct 2008 11:08:37 GMT Message-Id: <200810201108.m9KB8bgO084722@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Cc: Subject: Current problem reports sorted by tag X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2008 11:12:07 -0000 (Note: a better version of this report is available at http://people.freebsd.org/~linimon/studies/prs/pr_tag_index.html .) Problem reports for tag '2tb': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118912 [2tb] disk sizing/geometry problem with large array s bin/111146 [2tb] fsck(8) fails on 6T filesystem o bin/107829 [2TB] fdisk(8): invalid boundary checking in fdisk / w o kern/84589 [2TB] 5.4-STABLE unresponsive during background fsck 2 o kern/79251 geom [2TB] newfs fails on 2.6TB gbde device o kern/18874 [2TB] 32bit NFS servers export wrong negative values t 6 problems total. Problem reports for tag 'aac': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128165 [aac] [patch] sync aac(4) with the latest vendor versi o kern/126697 emaste [aac] aac driver bug. aaccli still doesn't work o kern/123666 scsi [aac] attach fails with Adaptec SAS RAID 3805 controll f i386/112596 emaste [aac] aac driver causes kernel panic - page fault on 2 o kern/103615 emaste [aac] [patch] aac(4) update to the last version availa o kern/91910 scottl [aac] [regression] aac driver hangs on Dell PE800 with f kern/88718 [aac] [timeout] unable to install on RAID 5 and FreeBS 7 problems total. Problem reports for tag 'acl': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/110915 rwatson [acl] ACL's don't work with SUIDDIR o kern/58941 rwatson [acl] acl under ufs2 doesn't handle disk corruption, p 2 problems total. Problem reports for tag 'acpi': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o kern/124744 acpi [acpi] [patch] incorrect _BST result validation for To o kern/124412 acpi [acpi] power off error on Toshiba M40 laptop f kern/123742 [acpi] [panic] kernel panic when boot with acpi disabl o kern/123039 acpi [acpi] ACPI AML_BUFFER_LIMIT errors during boot f kern/122056 gavin [acpi] acpi battery ioctl interface integer divide fau o kern/120515 acpi [acpi] [patch] acpi_alloc_wakeup_handler: can't alloc o kern/119356 acpi [acpi]: i386 ACPI wakeup not work due resource exhaust o kern/119200 acpi [acpi] Lid close switch suspends CPU for 1 second on H o kern/118973 acpi [acpi]: Kernel panic with acpi boot o kern/117605 acpi [acpi] [request] add debug.cpufreq.highest o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard o kern/116939 acpi [acpi] PCI-to-PCI misconfigured for bus three and can o i386/114562 acpi [acpi] cardbus is dead after s3 on Thinkpad T43 with a o kern/114165 acpi [acpi] Dell C810 - ACPI problem s kern/112544 acpi [acpi] [patch] Add High Precision Event Timer Driver f o kern/108954 acpi [acpi] 'sleep(1)' sleeps >1 seconds when speedstep (Cx o kern/108695 acpi [acpi]: Fatal trap 9: general protection fault when in o kern/108488 acpi [acpi] ACPI-1304: *** Error: Method execution failed o kern/108017 acpi [acpi]: Acer Aspire 5600 o kern/106924 acpi [acpi] ACPI resume returns g_vfs_done() errors and ker o kern/105537 acpi [acpi] problems in acpi on HP Compaq nc6320 o kern/102783 [acpi] hw.acpi has thermal controls backwards when ext s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am o kern/89411 acpi [acpi] acpiconf bug 25 problems total. Problem reports for tag 'acpi_fujitsu': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121102 acpi [acpi_fujitsu] [patch] update acpi_fujitsu for the P80 1 problem total. Problem reports for tag 'adw': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/22417 gibbs [adw] [patch] advansys wide scsi driver does not suppo 1 problem total. Problem reports for tag 'agp': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126784 [agp] agp.ko doesn't detect Acer Aspire One onboard gr o kern/118962 [agp] Intel GMA 3000 Video Controller Not Recognized U o kern/103733 [agp] i915 driver on hp dc7100: device not recognized s kern/89271 [radeon][agp][hang] X.org hangs when heavily using Rad o kern/72224 [agp] umass devices broken by DRM (AGP issue?) o kern/57631 jhb [agp] [patch] boot failing for ALi chipsets 6 problems total. Problem reports for tag 'aha': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/83765 [aha] Adaptec 1542-CP requires plug-and-play switch se 1 problem total. Problem reports for tag 'ahc': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/123674 scsi [ahc] ahc driver dumping o kern/99954 scsi [ahc] reading from DVD failes on 6.x [regression] o bin/96128 [ahc] [patch] Make aicasm WARNS=6 clean o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 s kern/45568 gibbs [ahc] ahc(A19160) pci parity error s kern/9927 gibbs [ahc] the ahc driver doesn't correctly grok switched S 7 problems total. Problem reports for tag 'ahd': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/123520 amd64 [ahd] unable to boot from net while using ahd o kern/110847 scsi [ahd] Tyan U320 onboard problem with more than 3 disks s kern/105533 [ahd] adaptec 29320 causes panic with over 4GB o kern/85768 gibbs [ahd] aic79xx driver timeouts with U160 target (free l o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system 5 problems total. Problem reports for tag 'aic': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124202 [aic] [patch] Add Adaptec 39320LPE to list of known de o kern/114489 scottl [aic] [panic] _mtx_lock_sleep: in aic7xxx_osm.h (with o kern/114459 [aic] [panic] FreeBSD-CURRENT crash during boot with A 3 problems total. Problem reports for tag 'altq': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/94182 [altq] [request] altq support for vlan driver 1 problem total. Problem reports for tag 'amd': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/124667 scsi [amd] [panic] FreeBSD-7 kernel page faults at amd-scsi 1 problem total. Problem reports for tag 'amd64': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI o ports/124220 x11 [amd64] x11-servers/xorg-server - X.org server runs in o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o kern/117607 [amd64] dev.cpu.0.freq not showing up any longer on am s amd64/57250 kmacy [amd64] [patch] Broken PTRACE_GETFPREGS and PTRACE_SET 6 problems total. Problem reports for tag 'amr': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/114438 [amr] Anomalous performance with multiple arrays and a o kern/113098 [amr] Cannot read from amrd while under heavy load o kern/99529 [amr] DELL PowerEdge 2600 with streamer PowerVault 100 o kern/94139 scottl [amr] [regression] amr broken with LSILogic MegaRAID S o kern/86411 scottl [amr] Very low performance of amr(4) under FreeBSD-6.0 o kern/76848 [amr] amr hangs o kern/72433 [amr] [patch] AMR raid, amrreg.h struct amr_enquery3 a o kern/71771 [amr] Hang during heavy load with amr raid controller 8 problems total. Problem reports for tag 'an': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/126924 net [an] [patch] printf -> device_printf and simplify prob o kern/85886 [an] an0: timeouts with Cisco 350 minipci o kern/75407 [an] an(4): no carrier after short time o kern/36170 [an] [patch] an(4) does an_init() even if interface is 4 problems total. Problem reports for tag 'apic': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/81000 acpi [apic] Via 8235 sound card worked great with FreeBSD 5 1 problem total. Problem reports for tag 'apm': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/122427 net [apm] [panic] apm and mDNSResponder cause panic during 1 problem total. Problem reports for tag 'ar': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/121899 [ar] [patch] Drive detached from Intel Matrix RAID and o kern/108924 [ar] Panics when Intel MatrixRAID RAID1 is degraded f amd64/103259 amd64 [ar] Cannot use ataraid on nvidia nForce4+amd64 o kern/102211 sos [ar] [patch] detach raid member and reboot will cause o kern/101926 [ar] 6.1-STABLE crashes under heavy disk I/O and acces o kern/99850 [ar] ataraid hangs in g_waitidle when attaching to nVi o kern/98804 [ar] VIA V-RAID metadata mis-read (MSI K8MMV with the o kern/94393 [ar] PseudoRAID loses track of the master disk o kern/93771 sos [ar] [panic] atacontrol status ar1 causes panic 9 problems total. Problem reports for tag 'arcmsr': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/107206 [arcmsr] Background fsck causes kernel panic with arcm 1 problem total. Problem reports for tag 'arp': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125920 net [arp] Kernel Routing Table loses Ethernet Link status o kern/119432 net [arp] route add -host -iface causes arp e a kern/68189 bz [arp] [jail] [patch] arp -a discloses non-jail interfa 3 problems total. Problem reports for tag 'asr': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/102612 [asr] da0 not detected when sharing bus with ch0 devic o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o kern/88047 [asr] [panic] 6.0-RC1 reboots with SMP and asr o kern/25950 obrien [asr] Bad drives on asr look zero-length and panic on 4 problems total. Problem reports for tag 'ata': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/128035 [ata] unexpexted detach of external SATA drive o kern/127813 sos [ata] ata diver dma mode work incorrectly on chip vt82 o kern/127717 [ata] [patch] - support write cache toggling per devic o kern/127645 [ata] [patch] Add support for nVidia MCP67 AHCI SATA C f kern/127517 sos [ata] sata does not detect SATA-300 disk but instead d o kern/127411 [ata] [panic] ata panics on bad block o kern/127391 [ata] Intel 6300ESB SATA150 cannot find disk and boot o kern/127316 [ata] non aligned DMA transfer errors when using growi o kern/127289 [ata] [patch] new pci ids for SiI3132 present on adapt p kern/127250 [ata] Kerneltrap 12 with atacontrol f kern/127119 gavin [ata] incorrect ata device probing o kern/126807 [ata] PATA DVD drive attached to AMD IXP700 chipset no a kern/126709 [ata] Regression of SATA/PATA support with 6.3 and 7.0 o kern/126419 [ata] Fails to boot from RAID10 volume under the Intel o kern/126242 [ata] Read error from SATA CD/DVD-drives [regression] o kern/126142 [ata] M5281: READ DMA faults, device detaching o kern/125859 [ata] sata access failure [regression] o kern/125759 [ata] Fatal Trap 12 when ICH9R RAID becomes degraded o kern/125713 sos [ata] [patch] add support for AHCI on MCP67 chipset o kern/125496 [ata][patch] free memory on ataraid module unload a kern/125139 philip [patch] [ata] bugs in ATAPI CD tray control o kern/124670 [ata] large file operation on RAID cause many GEOM err o kern/124064 sos [ata] [patch] cannot handle >16 serial number with Int o kern/123980 [ata] [patch] Implement ATA UDMA speed limit (hw.ata.a o kern/123887 [ata] PDC20262 does not support 48 bit DMA access o kern/123754 sos [ata] atacontrol(8): atacontrol reinit causing kernel o kern/122847 [ata] [patch] atacontrol reports "ioctl(IOCATADEVICES) o kern/122670 sos [ata] [patch] broken acd_get_progress = ioctl CDRIOCGE f kern/122368 [ata]: Failure to support SATA/PATA drives on 6.3 and o kern/122291 [ata] acd0: timeout waiting to issue command / acd0: e a kern/122045 [ata][panic] reiniting detached ata channel kills the f kern/121703 sos [ata] Cannot fdisk/gpt with 1TB SATA disk and 965QM Mo o kern/121686 sos [ata]: bogus CHS to LBA mapping in (at least) ata o i386/121675 i386 [ata] incorrect fallback to udma33 with CF memory inst o sparc/121539 sos [ata] Interrupt storm booting 7.0-R/sparc64 on ultra5 o kern/121521 sos [ata] [patch] add VIA CX700M2 chipset to ata driver o kern/121461 sos [ata] SATA Hard disks are not detected on SiS 180/181 o kern/121396 sos [ata] 7.0 fails on mcp55 sata controller [regression] o kern/121350 [ata] [panic] initiate_write_inodeblock_ufs2: already o kern/120717 [ata] boot problem when recognizing ata1 o kern/120534 [ata] Troubles in work with SAS controller Adaptec 941 o kern/120507 sos [ata] Errors while burning CDs using burncd(8) o kern/120296 sos [ata] Unstable SATA on MB with Nvidia MCP 570 SLI chip o kern/120177 [ata] ATA DMA modes don't work on CF cards f kern/120081 [ata] Hard drive not found during install FreeBSD 7.0 o kern/120009 [ata] Burning on FreeBSD is destroying SONY CD-Rs o kern/119894 [ata] Initialization of disc controller fails [regress o kern/119877 [ata] OS Fails to detect hard disks on HP Proliant ML1 o kern/119851 [ata] Data corruption with ServerWorks HT1000 o kern/119838 sos [ata] udma100 enabled althrough improper cable on nVid o kern/119374 thomas [ata] [regression] ATAPI or ATAPICAM bug (regression i o i386/119303 sos [ata] SATA HDD missing in 7.0-RC1, ok in 7.0-BETA4; at o kern/119140 sos [ata] [panic] Kernel panic with sata drive and dma pro o kern/118573 [ata] FreeBSD doesnt support my optical drive o kern/118447 sos [ata] [patch] Troublesome DMA modes with VIA Apollo VP o kern/118342 [ata] Unable to mount root on ata drive w/ Cyrix 5530 f kern/118158 sos [ata] SONY SDX-570V (ATAPI) hangs frequently o kern/117972 [ata] SATA DLT V4 not recognized properly o kern/117443 [ata] [hang] system hang with ataidle o kern/117421 [ata] [hang] System hang with failing SATA disk (SiI31 o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A o kern/117215 [ata] Kernel errors accessing audio CDs w/ Samsung SAT s kern/117190 [ata] [patch] Support ATA ICH7 controller (SATA150 mod o kern/116935 [ata] Intermittent error with Promise PDC40718 f amd64/116670 amd64 [ata] onboard SATA RAID1 controllers not supported for o kern/116415 [ata] 6.2-STABLE does not work on Gigabyte GA-P35-S3 ( o kern/116270 [ata] READ_DMA48 UDMA ICRC error s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o kern/115801 sos [ata] [patch] Writing of crash dumps is unreliable f kern/115614 thomas [ata] Recent ATA driver changes have broken cdrecord [ o kern/115479 [ata] [request] ASUS P5K SE need more support o kern/115232 [ata] Audio CD tracks not displayed properly by atapi o kern/115152 [ata] Sil 3512 SATA controller panics on 6.2 o kern/114213 [ata] optical drive not detected in the 6.x series of o amd64/113130 [ata] no sata drive found [regression] o kern/112282 [ata] atacontrol(8): changing DMA modes when disk is r o i386/112036 i386 [ata] TIMEOUT - WRITE_DMA retrying, TIMEOUT - READ_DMA o kern/111699 [ata] SATA drives on an Asus A8V-MX are no longer dete o kern/111196 [ata] [hang] SATA drives cause errors and cause system o kern/111023 sos [ata] [request] [patch] please expand ata timeouts o kern/110407 [ata] ATA drivers not recognizing Seagate CF Microdriv o kern/109736 [ata] FreeBSD sysinstall from CD can't find & mount NE s i386/109200 i386 [ata] READ_UDMA UDMA ICRC error cause not detecting ca o kern/109044 [ata] Bizarre problem with Pioneer 111D on i965 board o kern/108379 [ata] Secondary SATA drive not detected by FreeBSD 6.2 s amd64/108172 linimon [ata] installation fails on new Intel 965 motherboards o amd64/107639 sos [ata] Kernel Panic/Crash on dd if=/dev/ad4 of=/dev/ad6 o kern/107622 [ata] can't boot on HP Pavilion dv6000 / problem with f kern/107292 [ata] cannot install - Unable to find device /dev/ad0s f kern/107287 [ata] page fault during install on Intel SATA on Intel o kern/106432 [ata] Record of disks (DVD-R) through the k3b program o kern/106413 [ata] problems with ATA on Intel Desktop Board DG965RY s kern/106340 [ata] [request] Need to control disk write cache on pe f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does o usb/105065 usb [ata] SATA - USB Bridge s kern/104950 [ata] [request] no support for SATA controller Initio p kern/104818 sos [ata] Missing driver Silicon Image SiI 3132 SATA II PC o kern/104799 [ata] Several ata observations ICH8 BIOS o i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 o i386/104572 i386 [ata] issues with detecting HDD on Intel Q965 Express o kern/103883 [ata] DMA is not defaulted on WDMA device (SIS integra s i386/103624 i386 [ata] [install] Problem installing on Dell Powervault o kern/103075 [ata] SATA disk attach/unplug from a MV88SX5041 freeze o kern/101819 sos [ata] ata driver wrongly determines type RAID on ICH7R o kern/101734 [ata] -CURRENT cannot see SATA drive on ASUS A8N-SLI ( o i386/101667 i386 [ata] ATA problems when power management is on o kern/99652 [ata] nVidia nForce MCP51 controller hangs w/ 2 drives o kern/99567 [ata] Powerup of sleeping IDE drives causes system reb o kern/99088 [ata] Critical Problems with VIA 8251 SATA2/RAID Contr o kern/99017 sos [ata] [patch] FreeBSD versions above 5.3 panic if atap o kern/98962 remko [ata] [burncd]: [patch] writing >1 session on ATAPI CD o i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) o kern/98388 [ata] FreeBSD 6.1 - WDC WD1200JS SATA II disks are see o kern/97996 [ata] DMA is broken for VIA 82C596B UDMA66controller o i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 o i386/96302 i386 [ata] nVidia nForce CK804 SATA300 controller not recog o kern/96171 [ata] burncd (ATA driver) fails to write in vcd mode o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP o i386/94911 i386 [ata] [regression] ata regression with DOM-IDE o kern/94155 [ata] 6.1 CF reader problem: "ad1: FAILURE - SETFEATUR o i386/93923 i386 [ata] FreeBSD Install, Sil3112: Cannot dump. No dump d o kern/93885 sos [ata] ata(4) failure: SETFEATURES SET TRANSFER MODE se o kern/92786 sos [ata] [patch] ATA fixes, write support for LSI v3 RAID o kern/92238 sos [ata] [patch] Spurious "atapci1: failed to enable memo s kern/91290 sos [ata] ata(4) error on 7.0-CURRENT-20051229-SNAP-PC98 s kern/91038 acpi [panic] [ata] [acpi] 6.0-RELEASE on Fujitsu Siemens Am f kern/90839 [ata] burncd gets error on CDRIOCFIXATE with HL-DT-ST o kern/90206 [ata] [crash] Server reboot after "FAILURE - out of me o kern/89353 [ata] invalid disk controller recognition of intel ICH o i386/88929 i386 [ata] FreeBSD 6.0 install CD fails to find disks on So o kern/85450 [ata] [panic] subdisk6 detached (appears to be a sata o kern/79783 sos [ata] hw.ata.atapi_dma=1 reduces HDD writing transfer o kern/78758 sos [ata] [patch] Add support for re-sizing ATA disks o kern/73740 [ata] [panic] 5-3-R#3 panic when accessing nfs exporte o kern/61960 sos [ata] [patch] BigDrive support for PC-98 architecture o kern/36911 [ata] ATA cannot be disabled with hints or through BIO 136 problems total. Problem reports for tag 'atapicam': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/120787 [atapicam] hardware troubles with atapicam and dvd f kern/118161 thomas [atapicam] failure message from ATAPI CDROM in the boo o kern/117028 [atapicam] [panic] brelse: free buffer onto another qu o kern/116701 [atapicam] atapicam hangs initializing SATA DVDRs on s o kern/108202 [atapicam] atapicam error after upgrade to 6.2 [regres o kern/106490 [atapicam] atapicam fails with ATAPI-CD/DVD drives att o kern/100516 [atapicam] atapicam with ITE IT8212F crashes the syste o i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi o kern/95407 [atapicam] atapicam, cd and /etc/rc.d/devfs problem o kern/91572 [atapicam] [panic] writing to UFS/softupdates DVD medi a kern/88823 [modules] [atapicam] atapicam - kernel trap 12 on load o kern/80714 [atapicam] drop/boot to single user hangs on 5.4-RELEA a kern/78929 [atapicam] atapicam prevents boot, system hangs o kern/63629 thomas [atapicam] mounting atapicam volume through cd0c cause o kern/60699 [atapicam] DVD Multidrive udma mode autosensed wrong 15 problems total. Problem reports for tag 'ataraid': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/89249 [ataraid] HighPoint RocketRAID 1520 (HPT372N) can't wr 1 problem total. Problem reports for tag 'ate': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/121242 ticso [ate] [patch] Promiscuous mode of if_ate (arm) doesn't 1 problem total. Problem reports for tag 'ath': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- f kern/126564 net [ath] doesn't work with my PCI-E X1 wireless network a o kern/126475 net [ath] [panic] ath pcmcia card inevitably panics under o kern/126214 net [ath] txpower problem with Atheros wifi card f kern/125914 sam [ath] [panic] ath driver causes kernel panic in 7-STAB o kern/125721 [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 [ath] ath(4) related panic o kern/125501 [ath] atheros cardbus driver hangs o kern/125332 [ath] [hang] crash under any non-tiny networking under f kern/123552 sam [ath] [panic] kernel panic during network activity on o kern/122957 [ath] [patch] ath_hal is too verbose when booting o kern/122697 net [ath] Atheros card is not well supported f kern/121394 sam [ath] FreeBSD access point (ath0) fails 100% of the ti o kern/121063 sam [ath]: High wireless traffic on ATH causes high tx fai o kern/121061 sam [ath] [panic] panic while ejecting ath(4)-adapter duri o kern/120376 imp [ath] High interrupt load when booting with ath (PCMCI o kern/120282 imp [ath] [panic] resource_list_release: resource entry is o kern/119345 net [ath] Unsuported Atheros 5424/2424 and CPU speedstep n o kern/118316 sam [ath] ath/snd_hda on the same irq line cause solid han s kern/117513 vwe [panic][ath] Fatal trap 12: page fault while in kernel o kern/116444 [ath] Atheros 5005G (AR5212) miniPCI: unable to attach o kern/115226 [ath] ath0: unable to attach hardware; HAL status 13 o kern/107279 [ath] panic: ath_start: attempted use of a free mbuf! o kern/105348 [ath] ath device stopps TX o kern/97458 [ath] ath driver hangs up system during reboot o sparc/94483 sam [ath] ath_hal does not work on 6-release/sparc64 o kern/93886 [ath] Atheros/D-Link DWL-G650 long delay to associate o kern/88082 [ath] [panic] cts protection for ath0 causes panic o kern/87758 [ath] [hang] Reboot problem with atheros wireless card 28 problems total. Problem reports for tag 'aue': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/91311 [aue] aue interface hanging p usb/86195 imp [aue] [patch] allow USB Ethernet Adaptor "ELECOM LD-US p usb/80010 imp [aue] [patch] add support for the AEI USB to LAN adapt o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o kern/61300 [aue] [patch] Enabling HomePNA PHY on aue(4) for HomeP o kern/51009 [aue] [patch] buggy aue driver fixed. 6 problems total. Problem reports for tag 'axe': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/106621 usb [axe] [patch] DLINK DUB-E100 support broken o usb/88408 usb [axe] axe0 read PHY failed 3 problems total. Problem reports for tag 'bce': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/125389 [ipmi] [bce] IPMI problem with bce o kern/123696 davidch [bce] [patch] if_bce firmware timeout on new bce chips f kern/123172 net [bce] Watchdog timeout problems with if_bce o kern/120533 [bce] [patch] Multicast not accepted on bce devices a kern/118238 benno [bce] bce driver shows "no carrier" on Intel SBXD132 b o kern/108542 net [bce]: Huge network latencies with 6.2-RELEASE / STABL o kern/107850 [bce] bce driver link negotiation is faulty o kern/103059 [bce] [patch] "Error mapping mbuf into TX chain!" (ten o kern/100858 davidch [bce] Broadcom bce driver and SMP hangup 9 problems total. Problem reports for tag 'bfe': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/118897 [bfe] Kernel Panic acquiring IP address from DHCP serv o i386/104349 i386 [bfe] Panic while uploading data via bfe network inter p kern/98015 remko [bfe] [patch] bfe(4): double free in error handling pa o kern/96030 [bfe] [patch] Install hangs with Broadcomm 440x NIC in 4 problems total. Problem reports for tag 'bge': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- s kern/127587 net [bge] [request] if_bge(4) doesn't support BCM576X fami o kern/123347 net [bge] bge1: watchdog timeout -- linkstate changed to D o kern/122551 net [bge] Broadcom 5715S no carrier on HP BL460c blade usi f kern/122252 net [ipmi] [bge] IPMI problem with BCM5704 (does not work o kern/121080 net [bge] IPv6 NUD problem on multi address config on bge0 o kern/120791 [bge] The Broadcom BCM5703 A2 NIC is running a lot of o kern/119361 net [bge] bge(4) transmit performance problem a kern/118879 net [bge] [patch] bge has checksum problems on the 5703 ch o kern/116328 net [bge]: Solid hang with bge interface o kern/114899 [bge] bge0: watchdog timeout -- resetting o kern/112570 [bge] packet loss with bge driver on BCM5704 chipset o kern/109733 net [bge] bge link state issues [regression] o kern/106974 [bge] packet loose and linkup problem o kern/104862 [bge] BCM5704 only works at 10Mbit o kern/104826 andre [bge] FreeBSD 6.1 not RFC 768 (UDP) compliant on Compa o kern/104485 [bge] Broadcom BCM5704C: Intermittent on newer chip ve o kern/103715 [bge] [request] Broadcom BCM5708SKFB not recognised by o kern/100410 [bge] bge driver disables access to shared iLo on HP D o i386/96382 i386 [bge] In 6.1-RC1 the bge driver does not reliably work s kern/94863 [bge] [patch] hack to get bge(4) working on IBM e326m o kern/94424 [bge] BGE5721 or BGE5750? o kern/94162 [bge] 6.x kenel stale with bge(4) o kern/92090 net [bge] bge0: watchdog timeout -- resetting o kern/73538 [bge] problem with the Broadcom BCM5788 Gigabit Ethern o i386/45773 [bge] Softboot causes autoconf failure on Broadcom 570 25 problems total. Problem reports for tag 'bktr': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o kern/120884 [bktr] [patch] bktr driver always stores the contigmal o kern/108133 jmg [bktr] [patch] bktr driver doesn't recognize Hauppauge o kern/105604 [bktr] [patch] add support for Pixelview PlayTV Pro 2 o kern/104675 [bktr] METEORSINPUT seemingly not setting input o kern/102549 [bktr] [patch] fix Pixelview PlayTV Pro 2 on bktr o kern/94369 itetcu [bktr] [patch] Patch to support Leadtek WinFast Tv2000 o kern/89553 [bktr] [patch] going from 5.3 -> 6.0 winTV card not pr o kern/81180 [bktr] bktr(4) driver cannot capture both audio and vi o kern/79066 [bktr] bktr(4) eating about 10% CPU load once it was u s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/59289 [bktr] [patch] ioctl METEORGBRIG in bktr_core.c forget o kern/57603 [bktr] bktr driver: freeze on SMP machine o kern/56245 [bktr] Distorted and choppy video with bktr-driver on s kern/48279 [bktr] Brooktre878 may cause freeze o kern/37326 [bktr] smbus/bktr crash when omitting "device iicsmb" a kern/36451 [bktr] [patch] Japan IF frequency is incorrect o kern/36415 [bktr] [patch] driver incorrectly handles the setting o kern/35289 [bktr] [patch] Brooktree device doesnt properly signal o kern/32812 [bktr] bktr driver missing tuner for eeprom detection. 20 problems total. Problem reports for tag 'bluetooth': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/99200 [bluetooth] SMP-Kernel crashes reliably when Bluetooth 1 problem total. Problem reports for tag 'boot0': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 1 problem total. Problem reports for tag 'boot0cfg': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/127764 [boot0cfg] [patch] preserve NT disk UID data for boot0 1 problem total. Problem reports for tag 'boot1': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/91871 i386 [boot1] [patch] boot1: jump to 0xf000:0xfff0 instead o 1 problem total. Problem reports for tag 'boot2': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/35262 [boot2] [patch] generation of boot block for headless 1 problem total. Problem reports for tag 'bootinst': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/22914 [bootinst] bootinst messages are not updated 1 problem total. Problem reports for tag 'bpf': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/89752 dwmalone [bpf] [patch] bpf_validate() needs to do more checks o kern/16644 dwmalone [bpf] [patch] Bad comparison expression in bpf_filter. 2 problems total. Problem reports for tag 'bsd.cpu.mk': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30399 brueffer [bsd.cpu.mk] [patch] Have Fortran use the CPUTYPE vari 1 problem total. Problem reports for tag 'busdma': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o amd64/87977 amd64 [busdma] [panic] amd64 busdma dflt_lock called (by ata o i386/76944 i386 [busdma] [patch] i386 bus_dmamap_create() bug 4 problems total. Problem reports for tag 'cam': The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o kern/120858 scottl [patch] [cam] panic: ufs_dirbad with CLARiiON CX3-40 p kern/119984 scottl [cam] 7.0 - Kernel trap - AHA-2944 - witness warn on b o kern/119668 scsi [cam] [patch] certain errors are too verbose comparing o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and p usb/107495 imp [cam] [patch] Fix long wait before WD My Book 250GB (U o usb/107243 usb