From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 00:40:06 2011 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 E656B1065673 for ; Sun, 23 Oct 2011 00:40:05 +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 BD8338FC15 for ; Sun, 23 Oct 2011 00:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N0e5cj073171 for ; Sun, 23 Oct 2011 00:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N0e5cr073170; Sun, 23 Oct 2011 00:40:05 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 00:40:05 GMT Resent-Message-Id: <201110230040.p9N0e5cr073170@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, Yuriy Taraday Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D72091065673 for ; Sun, 23 Oct 2011 00:35:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ADAAF8FC0C for ; Sun, 23 Oct 2011 00:35:23 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N0ZNwT035691 for ; Sun, 23 Oct 2011 00:35:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N0ZN8k035690; Sun, 23 Oct 2011 00:35:23 GMT (envelope-from nobody) Message-Id: <201110230035.p9N0ZN8k035690@red.freebsd.org> Date: Sun, 23 Oct 2011 00:35:23 GMT From: Yuriy Taraday To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/161912: kernel sends incorrect notify to devctl about device changes 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, 23 Oct 2011 00:40:06 -0000 >Number: 161912 >Category: kern >Synopsis: kernel sends incorrect notify to devctl about device changes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 00:40:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Yuriy Taraday >Release: 8.1-RELEASE-p2 >Organization: >Environment: FreeBSD greater 8.1-RELEASE-p2 FreeBSD 8.1-RELEASE-p2 #0: Sun Oct 23 04:13:10 MSD 2011 root@greater:/usr/obj/usr/src/sys/MYCONF amd64 >Description: When new device node is created or destroyed, kernel sends notify to devctl in this form: !system=DEVFS subsystem=CDEV type=DESTROY cdev= where is being substituted with the name of device. If device name contains whitespaces, devd scraps out everything but the part before the first space in cdev parameter, so we can not correctly handle device name in devd. >How-To-Repeat: I found out the problem when I was looking into what happens in devd when I insert my USB flash drive. System eventually creates "msdosfs/ADATA UFD" device, but devd handles it as "msdosfs/ADATA" device. >Fix: See attached patch. It wraps in double quotes so that devd ignores spaces in it. Patch attached with submission follows: --- ./sys/kern/kern_conf.c.orig 2011-10-23 03:55:45.000000000 +0400 +++ ./sys/kern/kern_conf.c 2011-10-23 04:10:57.000000000 +0400 @@ -510,19 +510,21 @@ static void notify(struct cdev *dev, const char *ev, int flags) { - static const char prefix[] = "cdev="; + static const char prefix[] = "cdev=\""; char *data; int namelen; if (cold) return; namelen = strlen(dev->si_name); - data = malloc(namelen + sizeof(prefix), M_TEMP, + data = malloc(namelen + sizeof(prefix) + 1, M_TEMP, (flags & MAKEDEV_NOWAIT) ? M_NOWAIT : M_WAITOK); if (data == NULL) return; memcpy(data, prefix, sizeof(prefix) - 1); - memcpy(data + sizeof(prefix) - 1, dev->si_name, namelen + 1); + memcpy(data + sizeof(prefix) - 1, dev->si_name, namelen); + data[sizeof(prefix) + namelen - 1] = '"'; + data[sizeof(prefix) + namelen] = '\0'; devctl_notify("DEVFS", "CDEV", ev, data); free(data, M_TEMP); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 06:00:24 2011 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 BED44106566C for ; Sun, 23 Oct 2011 06:00:24 +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 3FB208FC0A for ; Sun, 23 Oct 2011 06:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N60LGs070985 for ; Sun, 23 Oct 2011 06:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N60L54070984; Sun, 23 Oct 2011 06:00:21 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 06:00:21 GMT Resent-Message-Id: <201110230600.p9N60L54070984@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, Garrett Cooper Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB218106564A for ; Sun, 23 Oct 2011 05:53:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AB7708FC0C for ; Sun, 23 Oct 2011 05:53:22 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N5rM4k035468 for ; Sun, 23 Oct 2011 05:53:22 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N5rMbv035460; Sun, 23 Oct 2011 05:53:22 GMT (envelope-from nobody) Message-Id: <201110230553.p9N5rMbv035460@red.freebsd.org> Date: Sun, 23 Oct 2011 05:53:22 GMT From: Garrett Cooper To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161915: pjdtests don't articulate requirements very well 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, 23 Oct 2011 06:00:24 -0000 >Number: 161915 >Category: misc >Synopsis: pjdtests don't articulate requirements very well >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 06:00:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Garrett Cooper >Release: 9.x >Organization: n/a >Environment: FreeBSD akai-ntbk.local 9.0-BETA2 FreeBSD 9.0-BETA2 #5 r225494M: Sun Sep 11 18:59:27 PDT 2011 root@akai-ntbk.local:/usr/obj/usr/src/sys/NETBOOK_NOSMP i386 >Description: 1. Some testcases assume that the user has root privileges (use mdconfig -a / mount, etc). 2. Linux support exists at one degree or another. Properly call out the requirements in the documentation. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: tools/regression/pjdfstest/README =================================================================== --- tools/regression/pjdfstest/README (revision 226648) +++ tools/regression/pjdfstest/README (working copy) @@ -2,6 +2,10 @@ Few notes on how to use pjdfstest in short steps: +- You currently _must_ be root when running these testcases. + +An example test run is shown as follows: + # cd pjdfstest # vi tests/conf Change 'fs' to file system type you want to test (UFS or ZFS). @@ -15,7 +19,7 @@ That's all. Enjoy. -Currently supported operating systems: FreeBSD, Solaris. +Currently supported operating systems: FreeBSD, Linux, Solaris. Currently supported file system types: UFS, ZFS. -- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 06:10:08 2011 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 3FCA91065689 for ; Sun, 23 Oct 2011 06:10:08 +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 F29AF8FC1D for ; Sun, 23 Oct 2011 06:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N6A7Ul079871 for ; Sun, 23 Oct 2011 06:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N6A7na079870; Sun, 23 Oct 2011 06:10:07 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 06:10:07 GMT Resent-Message-Id: <201110230610.p9N6A7na079870@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, Garrett Cooper Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CAC21065673 for ; Sun, 23 Oct 2011 06:04:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8CEB18FC12 for ; Sun, 23 Oct 2011 06:04:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N646pi058339 for ; Sun, 23 Oct 2011 06:04:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N6463d058318; Sun, 23 Oct 2011 06:04:06 GMT (envelope-from nobody) Message-Id: <201110230604.p9N6463d058318@red.freebsd.org> Date: Sun, 23 Oct 2011 06:04:06 GMT From: Garrett Cooper To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161917: pjdfstest doesn't detect setup/teardown failures properly 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, 23 Oct 2011 06:10:08 -0000 >Number: 161917 >Category: misc >Synopsis: pjdfstest doesn't detect setup/teardown failures properly >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 06:10:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Garrett Cooper >Release: 9.x >Organization: n/a >Environment: FreeBSD akai-ntbk.local 9.0-BETA2 FreeBSD 9.0-BETA2 #5 r225494M: Sun Sep 11 18:59:27 PDT 2011 root@akai-ntbk.local:/usr/obj/usr/src/sys/NETBOOK_NOSMP i386 >Description: Because the superuser requirement isn't properly tested today, one can clog up a production filesystem with garbage (example: mkfifo/11.t). I discovered over 5 million fifos in my UFS-based scratch directory prior to a backup and reinstall, because mdconfig / mount / umount operation [in general] requires superuser privileges, whereas mkfifo doesn't. >How-To-Repeat: Execute the following as a non-root user: cd tools/regression/pjdfstest make prove -r test >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 08:40:09 2011 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 AF4EC1065677 for ; Sun, 23 Oct 2011 08:40:09 +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 6A4758FC0A for ; Sun, 23 Oct 2011 08:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8e9rP050919 for ; Sun, 23 Oct 2011 08:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N8e9hu050918; Sun, 23 Oct 2011 08:40:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 08:40:09 GMT Resent-Message-Id: <201110230840.p9N8e9hu050918@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, Manolis Kiagias Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA48E106564A for ; Sun, 23 Oct 2011 08:32:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A98568FC0C for ; Sun, 23 Oct 2011 08:32:56 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8Wuf3012969 for ; Sun, 23 Oct 2011 08:32:56 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N8WuZh012968; Sun, 23 Oct 2011 08:32:56 GMT (envelope-from nobody) Message-Id: <201110230832.p9N8WuZh012968@red.freebsd.org> Date: Sun, 23 Oct 2011 08:32:56 GMT From: Manolis Kiagias To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161921: named(8): default configuration on 9.0-RC1 produces an error during startup 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, 23 Oct 2011 08:40:09 -0000 >Number: 161921 >Category: bin >Synopsis: named(8): default configuration on 9.0-RC1 produces an error during startup >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 23 08:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Manolis Kiagias >Release: 9.0-RC1 >Organization: >Environment: >Description: Setting named_enable="YES" to /etc/rc.conf and starting named produces the following error at the console: managed-keys-zone ./IN: loading from master file managed-keys.bind failed: file not found Apparently this is a file used by DNSSEC and is not present in the default configuration. The server still starts and answers queries normally, this is not a fatal error. >How-To-Repeat: Set named_enable="YES" to /etc/rc.conf and execute service named start >Fix: Creating the above file as an empty file in /etc/namedb/working hushes the error message (i.e. touch /etc/namedb/working/managed-keys.bind). Either the default named configuration should be changed or bsdinstall should create this file during installation. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 08:50:10 2011 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 3EE281065675 for ; Sun, 23 Oct 2011 08:50:10 +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 1A5258FC15 for ; Sun, 23 Oct 2011 08:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8o9sg059917 for ; Sun, 23 Oct 2011 08:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N8o9nU059916; Sun, 23 Oct 2011 08:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 08:50:09 GMT Resent-Message-Id: <201110230850.p9N8o9nU059916@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, Rainer Hurling Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 031971065670 for ; Sun, 23 Oct 2011 08:50:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E08EE8FC13 for ; Sun, 23 Oct 2011 08:50:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N8o13P047357 for ; Sun, 23 Oct 2011 08:50:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N8o14g047356; Sun, 23 Oct 2011 08:50:01 GMT (envelope-from nobody) Message-Id: <201110230850.p9N8o14g047356@red.freebsd.org> Date: Sun, 23 Oct 2011 08:50:01 GMT From: Rainer Hurling To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs 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, 23 Oct 2011 08:50:10 -0000 >Number: 161922 >Category: misc >Synopsis: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 08:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Rainer Hurling >Release: FreeBSD 9.0-BETA2 amd64 >Organization: >Environment: FreeBSD xxx.xxx 9.0-BETA2 FreeBSD 9.0-BETA2 #0: Tue Sep 27 10:18:08 CEST 2011 xxx@xxx.xxx:/usr/obj/usr/src/sys/XXX amd64 >Description: SAGA GIS installs libtool helper files for each library in ${PREFIX}/lib/saga. The presence of these .la files (and one static .a file for odbc) hinders graphics/qgis from starting correctly, when QGIS has plugins for the work with SAGA GIS modules installed. >How-To-Repeat: 1. Install math/saga with 'Python bindings' enabled. 2. Install graphics/qgis with 'Python support' enabled. 3. Within QGIS, install the following two plugins (menu 'Extensions'), which enables the use of SAGA GIS modules via python bindings: - Processing Framework Manager - SAGA Module interface After that, try to restart QGIS from shell. In the shell endless messages appear about not finding the correct libraries and QGIS does not start. >Fix: The following patch removes the helper files and static libs from lib/saga. After that, QGIS can use SAGA GIS modules via python bindings. Patch attached with submission follows: diff -Naur saga.orig/Makefile saga/Makefile --- saga.orig/Makefile 2011-10-19 22:46:32.000000000 +0200 +++ saga/Makefile 2011-10-21 13:36:28.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= saga PORTVERSION= 2.0.7 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]*$//}/SAGA%20${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -98,5 +98,7 @@ ${INSTALL_DATA} ${WRKSRC}/src/saga_core/saga_gui/res/saga_tip.txt ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/src/saga_core/saga_gui/res/xpm/saga_icon_32.xpm ${DATADIR} @${CAT} ${PKGMESSAGE} + @${RM} ${PREFIX}/lib/saga/*.la + @${RM} ${PREFIX}/lib/saga/*.a .include diff -Naur saga.orig/pkg-plist saga/pkg-plist --- saga.orig/pkg-plist 2011-07-16 19:10:27.000000000 +0200 +++ saga/pkg-plist 2011-10-21 13:33:09.000000000 +0200 @@ -17,128 +17,66 @@ %%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.py %%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyc %%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyo -lib/saga/libcontrib_a_perego.la lib/saga/libcontrib_a_perego.so -lib/saga/libdocs_html.la lib/saga/libdocs_html.so -%%HARU%%lib/saga/libdocs_pdf.la %%HARU%%lib/saga/libdocs_pdf.so -lib/saga/libgarden_3d_viewer.la lib/saga/libgarden_3d_viewer.so -lib/saga/libgeostatistics_grid.la lib/saga/libgeostatistics_grid.so -lib/saga/libgeostatistics_kriging.la lib/saga/libgeostatistics_kriging.so -lib/saga/libgeostatistics_points.la lib/saga/libgeostatistics_points.so -lib/saga/libgeostatistics_regression.la lib/saga/libgeostatistics_regression.so -lib/saga/libgrid_analysis.la lib/saga/libgrid_analysis.so -lib/saga/libgrid_calculus.la lib/saga/libgrid_calculus.so -lib/saga/libgrid_calculus_bsl.la lib/saga/libgrid_calculus_bsl.so -lib/saga/libgrid_filter.la lib/saga/libgrid_filter.so -lib/saga/libgrid_gridding.la lib/saga/libgrid_gridding.so -lib/saga/libgrid_spline.la lib/saga/libgrid_spline.so -lib/saga/libgrid_tools.la lib/saga/libgrid_tools.so -lib/saga/libgrid_visualisation.la lib/saga/libgrid_visualisation.so -lib/saga/libihacres.la lib/saga/libihacres.so -lib/saga/libimagery_classification.la lib/saga/libimagery_classification.so -lib/saga/libimagery_rga.la lib/saga/libimagery_rga.so -lib/saga/libimagery_segmentation.la lib/saga/libimagery_segmentation.so -lib/saga/libimagery_tools.la lib/saga/libimagery_tools.so -lib/saga/libio_esri_e00.la lib/saga/libio_esri_e00.so -lib/saga/libio_gdal.la lib/saga/libio_gdal.so -lib/saga/libio_gps.la lib/saga/libio_gps.so -lib/saga/libio_grid.la lib/saga/libio_grid.so -lib/saga/libio_grid_grib2.la lib/saga/libio_grid_grib2.so -lib/saga/libio_grid_image.la lib/saga/libio_grid_image.so -lib/saga/libio_odbc.a -lib/saga/libio_odbc.la lib/saga/libio_odbc.so -lib/saga/libio_shapes.la lib/saga/libio_shapes.so -lib/saga/libio_shapes_dxf.la lib/saga/libio_shapes_dxf.so -lib/saga/libio_shapes_las.la lib/saga/libio_shapes_las.so -lib/saga/libio_table.la lib/saga/libio_table.so -lib/saga/liblectures_introduction.la lib/saga/liblectures_introduction.so -lib/saga/libopencv.la lib/saga/libopencv.so -lib/saga/libpj_georeference.la lib/saga/libpj_georeference.so -lib/saga/libpj_proj4.la lib/saga/libpj_proj4.so -lib/saga/libpointcloud_tools.la lib/saga/libpointcloud_tools.so -lib/saga/libpointcloud_viewer.la lib/saga/libpointcloud_viewer.so -lib/saga/librecreations_fractals.la lib/saga/librecreations_fractals.so -lib/saga/librecreations_games.la lib/saga/librecreations_games.so -lib/saga/libshapes_grid.la lib/saga/libshapes_grid.so -lib/saga/libshapes_lines.la lib/saga/libshapes_lines.so -lib/saga/libshapes_points.la lib/saga/libshapes_points.so -lib/saga/libshapes_polygons.la lib/saga/libshapes_polygons.so -lib/saga/libshapes_tools.la lib/saga/libshapes_tools.so -lib/saga/libsim_cellular_automata.la lib/saga/libsim_cellular_automata.so -lib/saga/libsim_ecosystems_hugget.la lib/saga/libsim_ecosystems_hugget.so -lib/saga/libsim_fire_spreading.la lib/saga/libsim_fire_spreading.so -lib/saga/libsim_hydrology.la lib/saga/libsim_hydrology.so -lib/saga/libta_channels.la lib/saga/libta_channels.so -lib/saga/libta_hydrology.la lib/saga/libta_hydrology.so -lib/saga/libta_lighting.la lib/saga/libta_lighting.so -lib/saga/libta_morphometry.la lib/saga/libta_morphometry.so -lib/saga/libta_preprocessor.la lib/saga/libta_preprocessor.so -lib/saga/libta_profiles.la lib/saga/libta_profiles.so -lib/saga/libtable_calculus.la lib/saga/libtable_calculus.so -lib/saga/libtable_tools.la lib/saga/libtable_tools.so -lib/saga/libtin_tools.la lib/saga/libtin_tools.so -lib/saga/libtin_viewer.la lib/saga/libtin_viewer.so -lib/saga/libtransect.la lib/saga/libtransect.so -%%VIGRA%%lib/saga/libvigra.la %%VIGRA%%lib/saga/libvigra.so share/saga/saga_icon_32.xpm share/saga/saga_tip.txt >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:10:09 2011 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 D916B106564A for ; Sun, 23 Oct 2011 09:10:09 +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 AE2548FC14 for ; Sun, 23 Oct 2011 09:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9A9Kf077224 for ; Sun, 23 Oct 2011 09:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9A9DN077223; Sun, 23 Oct 2011 09:10:09 GMT (envelope-from gnats) Date: Sun, 23 Oct 2011 09:10:09 GMT Message-Id: <201110230910.p9N9A9DN077223@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Rainer Hurling Cc: Subject: Re: misc/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rainer Hurling List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 09:10:09 -0000 The following reply was made to PR misc/161922; it has been noted by GNATS. From: Rainer Hurling To: bug-followup@FreeBSD.org, rhurlin@gwdg.de Cc: Subject: Re: misc/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs Date: Sun, 23 Oct 2011 11:01:30 +0200 Sorry, I meant Category: ports Class: maintainer-update Please correct these items, thanks. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:10:13 2011 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 CB8F51065674 for ; Sun, 23 Oct 2011 09:10:13 +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 8FA708FC19 for ; Sun, 23 Oct 2011 09:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9ADIu077248 for ; Sun, 23 Oct 2011 09:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9ADXe077247; Sun, 23 Oct 2011 09:10:13 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 09:10:13 GMT Resent-Message-Id: <201110230910.p9N9ADXe077247@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, Joe barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00A3A106564A for ; Sun, 23 Oct 2011 09:07:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E3F2D8FC0A for ; Sun, 23 Oct 2011 09:07:13 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N97DeD082252 for ; Sun, 23 Oct 2011 09:07:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N97DMC082251; Sun, 23 Oct 2011 09:07:13 GMT (envelope-from nobody) Message-Id: <201110230907.p9N97DMC082251@red.freebsd.org> Date: Sun, 23 Oct 2011 09:07:13 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161923: 9.0 bsdinstall games & ports install options 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, 23 Oct 2011 09:10:13 -0000 >Number: 161923 >Category: bin >Synopsis: 9.0 bsdinstall games & ports install options >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 09:10:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: The bsdinstall distribution selection menu screen has the games & ports options checked with an asterisk meaning these are the defaults. All the options on this menu should be blank so user has to purposesly click on those options to enable them with an asterisk. There had been talk about removing games from the base install all together a few years ago. Has this been carried forward in error? The sysinstall procedure asks the user two different time if they want to install the ports collection. BDSinstall should at least make it mandidtory to purposesly click on the ports option to install them. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:40:10 2011 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 185AD106564A for ; Sun, 23 Oct 2011 09:40:10 +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 CF4E38FC14 for ; Sun, 23 Oct 2011 09:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9e9Uc006249 for ; Sun, 23 Oct 2011 09:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9e9eq006248; Sun, 23 Oct 2011 09:40:09 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 09:40:09 GMT Resent-Message-Id: <201110230940.p9N9e9eq006248@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, Joe barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBB41106566B for ; Sun, 23 Oct 2011 09:30:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AAEB88FC13 for ; Sun, 23 Oct 2011 09:30:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9UYVj020096 for ; Sun, 23 Oct 2011 09:30:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9N9UY2r020093; Sun, 23 Oct 2011 09:30:34 GMT (envelope-from nobody) Message-Id: <201110230930.p9N9UY2r020093@red.freebsd.org> Date: Sun, 23 Oct 2011 09:30:34 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161924: 9.0 bsdinstall (add msg box telling user to remove install media) 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, 23 Oct 2011 09:40:10 -0000 >Number: 161924 >Category: bin >Synopsis: 9.0 bsdinstall (add msg box telling user to remove install media) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 09:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: At the bsdinstall "Complete screen" when the reboot option is selected the cd/dvd drive should automatically open and a message box informing the user to remove the cd/dvd/ install media should be displayed just like sysinstall does. If dvd1.iso was copied to memstick or the "install memstick image" are used to boot from to install the system, then the memstick should be unmounted and a message box informing the user to remove the memstick install media should be displayed just like for cd/dvd above. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:40:40 2011 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 B97D91065687; Sun, 23 Oct 2011 09:40:40 +0000 (UTC) (envelope-from manolis@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 90AFC8FC13; Sun, 23 Oct 2011 09:40:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9ee6t008576; Sun, 23 Oct 2011 09:40:40 GMT (envelope-from manolis@freefall.freebsd.org) Received: (from manolis@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9eeVw008567; Sun, 23 Oct 2011 09:40:40 GMT (envelope-from manolis) Date: Sun, 23 Oct 2011 09:40:40 GMT Message-Id: <201110230940.p9N9eeVw008567@freefall.freebsd.org> To: manolis@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-bugs@FreeBSD.org From: manolis@FreeBSD.org Cc: Subject: Re: ports/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs 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, 23 Oct 2011 09:40:40 -0000 Synopsis: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: manolis Class-Changed-When: Sun Oct 23 09:39:10 UTC 2011 Class-Changed-Why: Reclassify per submitter's request http://www.freebsd.org/cgi/query-pr.cgi?pr=161922 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:44:43 2011 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 21BE31065673; Sun, 23 Oct 2011 09:44:43 +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 EBE938FC12; Sun, 23 Oct 2011 09:44:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9igPG014505; Sun, 23 Oct 2011 09:44:42 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9igYt014501; Sun, 23 Oct 2011 09:44:42 GMT (envelope-from linimon) Date: Sun, 23 Oct 2011 09:44:42 GMT Message-Id: <201110230944.p9N9igYt014501@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/161924: 9.0 bsdinstall(8): add msg box telling user to remove install media 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, 23 Oct 2011 09:44:43 -0000 Old Synopsis: 9.0 bsdinstall (add msg box telling user to remove install media) New Synopsis: 9.0 bsdinstall(8): add msg box telling user to remove install media Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 23 09:44:22 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=161924 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:45:08 2011 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 C6479106566B; Sun, 23 Oct 2011 09:45:08 +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 95DE68FC0A; Sun, 23 Oct 2011 09:45:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9j8sa014564; Sun, 23 Oct 2011 09:45:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9j8pH014560; Sun, 23 Oct 2011 09:45:08 GMT (envelope-from linimon) Date: Sun, 23 Oct 2011 09:45:08 GMT Message-Id: <201110230945.p9N9j8pH014560@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/161923: 9.0 bsdinstall(8) games & ports install options 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, 23 Oct 2011 09:45:08 -0000 Old Synopsis: 9.0 bsdinstall games & ports install options New Synopsis: 9.0 bsdinstall(8) games & ports install options Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 23 09:44:52 UTC 2011 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=161923 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 09:48:33 2011 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 99528106566C; Sun, 23 Oct 2011 09:48:33 +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 700E18FC0C; Sun, 23 Oct 2011 09:48:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9N9mXYv015075; Sun, 23 Oct 2011 09:48:33 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9N9mXFm015071; Sun, 23 Oct 2011 09:48:33 GMT (envelope-from linimon) Date: Sun, 23 Oct 2011 09:48:33 GMT Message-Id: <201110230948.p9N9mXFm015071@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/161922: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs 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, 23 Oct 2011 09:48:33 -0000 Synopsis: [maintainer][patch] math/saga: cleanup unneeded helper files and static libs Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Oct 23 09:48:18 UTC 2011 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=161922 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 10:20:04 2011 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 5DAFC1065674 for ; Sun, 23 Oct 2011 10:20: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 855578FC14 for ; Sun, 23 Oct 2011 10:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NAK148053505 for ; Sun, 23 Oct 2011 10:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NAK1RN053504; Sun, 23 Oct 2011 10:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 10:20:01 GMT Resent-Message-Id: <201110231020.p9NAK1RN053504@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, Poul-Henning Kamp Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE8F6106566B for ; Sun, 23 Oct 2011 10:11:51 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 99C928FC22 for ; Sun, 23 Oct 2011 10:11:51 +0000 (UTC) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 7632C5C37 for ; Sun, 23 Oct 2011 09:56:45 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id p9N9ujDg006353 for ; Sun, 23 Oct 2011 09:56:45 GMT (envelope-from phk@critter.freebsd.dk) Received: (from phk@localhost) by critter.freebsd.dk (8.14.5/8.14.5/Submit) id p9N9ujk8006352; Sun, 23 Oct 2011 09:56:45 GMT (envelope-from phk) Message-Id: <201110230956.p9N9ujk8006352@critter.freebsd.dk> Date: Sun, 23 Oct 2011 09:56:45 GMT From: Poul-Henning Kamp To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: conf/161926: 9.0-RC1 bsdinstall disk layout trouble X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Poul-Henning Kamp List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 10:20:04 -0000 >Number: 161926 >Category: conf >Synopsis: 9.0-RC1 bsdinstall disk layout trouble >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 10:20:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Poul-Henning Kamp >Release: FreeBSD 9.0-RC1 amd64 >Organization: >Environment: Trying to install 9.0-RC1 amd64 >Description: I tried to install a machine for use with src/tools/sysbuild, and ran into a number of weird issues. Here is a blow by blow account: ada0 zeroed before boot boot dvd Choose "Install" Keymap Selection -> No "non-default key mapping" ??? What kind of question is that ? Guided disk Hmm, maybe I should use the manual option, lets see, where is the "back" button ? Ohh, there are *no* "back" buttons *anywhere* ? Partition ada0 Modify "Invalid argument. arg0 'ada0' MBR Create 10GB Create 10GB Create 10GB Create default size Active partition is the last one created ? There is no place I can see it ? There is no place I can change it ? ada0s1 Modify "Invalid argument. arg0 'ada0s1' BSD Create (ada0s1a) freebsd, full size, / Finish Enter shell in new system gpart set -a active -i 1 ada0 Fix the active partition sysctl kern.geom.debugflags=16 gmirror label root ada0 Fix /etc/fstab ? There is no /etc/fstab ? Create /etc/fstab: /dev/mirror/roots1a / ufs rw 1 1 boot0cfg -B /dev/ada0 reboot Comes up /etc/fstab now contains ada0s1a ? fix /etc/fstab add geom_mirror_load="YES" to /boot/loader.conf reboot Comes up >How-To-Repeat: Per above. I tried once before with a disk which contained a Ubuntu installation, there I ended up with partition 2 having size of "-37GB" on a 40GB drive. >Fix: At the very least, show people what's going on. And for goodness sake, add "Back" buttons, OK ? You really don't want me to write sysinstall2, right ? :-) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 10:30:06 2011 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 1D7481065674 for ; Sun, 23 Oct 2011 10:30:06 +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 CC6CD8FC13 for ; Sun, 23 Oct 2011 10:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NAU5f5061954 for ; Sun, 23 Oct 2011 10:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NAU5E0061953; Sun, 23 Oct 2011 10:30:05 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 10:30:05 GMT Resent-Message-Id: <201110231030.p9NAU5E0061953@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, Joe barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69CDC106564A for ; Sun, 23 Oct 2011 10:27:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 590A48FC0A for ; Sun, 23 Oct 2011 10:27:39 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NARdaE024761 for ; Sun, 23 Oct 2011 10:27:39 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NARdl1024760; Sun, 23 Oct 2011 10:27:39 GMT (envelope-from nobody) Message-Id: <201110231027.p9NARdl1024760@red.freebsd.org> Date: Sun, 23 Oct 2011 10:27:39 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161927: 9.0 RC1 bsdinstall has no help describing what is happening 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, 23 Oct 2011 10:30:06 -0000 >Number: 161927 >Category: bin >Synopsis: 9.0 RC1 bsdinstall has no help describing what is happening >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 10:30:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: The bsdinstall has absolutely no help information available. One of the most complained about deficiencies of sysinstall is its lack of help information. Do not want to see this mistake made again with bsdinstall. Bsdinstall is a dialog run system and dialog was purposely used for ease of making corrections and additions. This is the time for the original author who has the inside knowledge of the logic flow to add (help) dialog info boxes to describe the bsdinstall install function flow. This is not a joke, but a serious requirement that needs to be added. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 11:20:01 2011 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 356F0106566C for ; Sun, 23 Oct 2011 11:20:01 +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 E822D8FC14 for ; Sun, 23 Oct 2011 11:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBK0Ij008317 for ; Sun, 23 Oct 2011 11:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NBK0PE008316; Sun, 23 Oct 2011 11:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 11:20:00 GMT Resent-Message-Id: <201110231120.p9NBK0PE008316@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, Joe barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B807106564A for ; Sun, 23 Oct 2011 11:12:15 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1A8628FC08 for ; Sun, 23 Oct 2011 11:12:15 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBCE3Z095057 for ; Sun, 23 Oct 2011 11:12:14 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NBCEcq095056; Sun, 23 Oct 2011 11:12:14 GMT (envelope-from nobody) Message-Id: <201110231112.p9NBCEcq095056@red.freebsd.org> Date: Sun, 23 Oct 2011 11:12:14 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161928: 9.0 RC1 bsdinstall (add option to enable 2 button mouse copy/paste) 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, 23 Oct 2011 11:20:01 -0000 >Number: 161928 >Category: bin >Synopsis: 9.0 RC1 bsdinstall (add option to enable 2 button mouse copy/paste) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 11:20:00 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: The three-button mouse has gone the same way as the floppy drive. I read a post saying that usb mouse has the copy/paste function enabled as default. I tested this on 9.0 RC1 and can report that with a two-button USB mouse the copy/paste function does not work. This statement has to be added to /etc/rc.conf to enable two-button mouse copy/paste function. This works for all USB, serial port, and ps2 two-button mouses. moused_flags="-m 2=3" Requesting that bsdinstall be updated to offer user option to enable two-button mouse copy/paste function. Lets bring the secret out into the open that Freebsd has text console two-button mouse copy/paste function and make it easy for the user to enable this function using the bsdinstall process. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 11:20:03 2011 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 EFED31065674 for ; Sun, 23 Oct 2011 11:20:03 +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 ADA6D8FC18 for ; Sun, 23 Oct 2011 11:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBK3SX008396 for ; Sun, 23 Oct 2011 11:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NBK39f008393; Sun, 23 Oct 2011 11:20:03 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 11:20:03 GMT Resent-Message-Id: <201110231120.p9NBK39f008393@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, Joe barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEA8F106566B for ; Sun, 23 Oct 2011 11:19:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id ADAE38FC12 for ; Sun, 23 Oct 2011 11:19:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NBJpUl012478 for ; Sun, 23 Oct 2011 11:19:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NBJp6O012477; Sun, 23 Oct 2011 11:19:51 GMT (envelope-from nobody) Message-Id: <201110231119.p9NBJp6O012477@red.freebsd.org> Date: Sun, 23 Oct 2011 11:19:51 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161929: 9.0 RC1 bsdinstall (change partition editor screen default) 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, 23 Oct 2011 11:20:04 -0000 >Number: 161929 >Category: bin >Synopsis: 9.0 RC1 bsdinstall (change partition editor screen default) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 11:20:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: On the partition editor screen the option should be the first in the list (ie; left most side, being the default) so if the user accepts this hard drive config, hitting enter moves to next menu screen instead of forcing the user to tab right skipping over the other options until finally highlighting the far right option taking more time and effort. This change will simplify navigation and not antagonize the user. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 12:10:03 2011 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 138A8106564A for ; Sun, 23 Oct 2011 12:10:03 +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 E05378FC0C for ; Sun, 23 Oct 2011 12:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NCA2Un056201 for ; Sun, 23 Oct 2011 12:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NCA235056200; Sun, 23 Oct 2011 12:10:02 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 12:10:02 GMT Resent-Message-Id: <201110231210.p9NCA235056200@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, Joe barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81B3C106566C for ; Sun, 23 Oct 2011 12:06:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 57A158FC12 for ; Sun, 23 Oct 2011 12:06:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NC66dN001263 for ; Sun, 23 Oct 2011 12:06:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NC661M001262; Sun, 23 Oct 2011 12:06:06 GMT (envelope-from nobody) Message-Id: <201110231206.p9NC661M001262@red.freebsd.org> Date: Sun, 23 Oct 2011 12:06:06 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161931: 9.0 RC1 bsdinstall (add sysinstall partition config as option) 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, 23 Oct 2011 12:10:03 -0000 >Number: 161931 >Category: bin >Synopsis: 9.0 RC1 bsdinstall (add sysinstall partition config as option) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 12:10:02 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 RC1 >Organization: none >Environment: >Description: Change the bsdinstall "partition editor screen" to provide option to select the sysinstall partition config style setup. Using the manual option relies on the user knowing the correct console commands. This is a un-realistic and defeats the purpose of having a automated installer. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 12:30:05 2011 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 97552106566B for ; Sun, 23 Oct 2011 12:30:05 +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 66FED8FC08 for ; Sun, 23 Oct 2011 12:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NCU5uA074548 for ; Sun, 23 Oct 2011 12:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NCU58f074541; Sun, 23 Oct 2011 12:30:05 GMT (envelope-from gnats) Date: Sun, 23 Oct 2011 12:30:05 GMT Message-Id: <201110231230.p9NCU58f074541@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: geoffroy desvernay Cc: Subject: Re: kern/140416: [mfi] [patch] mfi driver stuck in timeout X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: geoffroy desvernay List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 12:30:05 -0000 The following reply was made to PR kern/140416; it has been noted by GNATS. From: geoffroy desvernay To: bug-followup@FreeBSD.org, Stephane.DAlu@insa-lyon.fr Cc: Subject: Re: kern/140416: [mfi] [patch] mfi driver stuck in timeout Date: Sun, 23 Oct 2011 14:20:11 +0200 This patch works for me(r) on 8-STABLE from yesterday and 9-RC1 On dell PowerEdge 415 (PERC H700 Adapter) and PE515 (PERC H700 Integrated= ) Without the patch, same problem occurs (especially with ZFS). --=20 *Geoffroy Desvernay* C.R.I - Administration syst=C3=A8mes et r=C3=A9seaux Ecole Centrale de Marseille From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:00:52 2011 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 1AB74106564A; Sun, 23 Oct 2011 14:00:52 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ACCAD8FC15; Sun, 23 Oct 2011 14:00:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE0pn6062746; Sun, 23 Oct 2011 14:00:51 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE0pjv062737; Sun, 23 Oct 2011 14:00:51 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:00:51 GMT Message-Id: <201110231400.p9NE0pjv062737@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161928: bsdinstall(8): (add option to enable 2 button mouse copy/paste) 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, 23 Oct 2011 14:00:52 -0000 Old Synopsis: 9.0 RC1 bsdinstall (add option to enable 2 button mouse copy/paste) New Synopsis: bsdinstall(8): (add option to enable 2 button mouse copy/paste) Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign and fix synopsis http://www.freebsd.org/cgi/query-pr.cgi?pr=161928 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:02:38 2011 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 93FBD106566C; Sun, 23 Oct 2011 14:02:38 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BA578FC0A; Sun, 23 Oct 2011 14:02:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE2cSd067286; Sun, 23 Oct 2011 14:02:38 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE2c7K067282; Sun, 23 Oct 2011 14:02:38 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:02:38 GMT Message-Id: <201110231402.p9NE2c7K067282@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161929: bsdinstall(8): (change partition editor screen default) 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, 23 Oct 2011 14:02:38 -0000 Old Synopsis: 9.0 RC1 bsdinstall (change partition editor screen default) New Synopsis: bsdinstall(8): (change partition editor screen default) Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign http://www.freebsd.org/cgi/query-pr.cgi?pr=161929 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:03:04 2011 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 578DA106567A; Sun, 23 Oct 2011 14:03:04 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2EF858FC21; Sun, 23 Oct 2011 14:03:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE34Pp067400; Sun, 23 Oct 2011 14:03:04 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE348x067395; Sun, 23 Oct 2011 14:03:04 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:03:04 GMT Message-Id: <201110231403.p9NE348x067395@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161931: bsdinstall(8): (add sysinstall partition config as option) 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, 23 Oct 2011 14:03:04 -0000 Old Synopsis: 9.0 RC1 bsdinstall (add sysinstall partition config as option) New Synopsis: bsdinstall(8): (add sysinstall partition config as option) Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign http://www.freebsd.org/cgi/query-pr.cgi?pr=161931 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:03:39 2011 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 6FB15106564A; Sun, 23 Oct 2011 14:03:39 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47AEB8FC16; Sun, 23 Oct 2011 14:03:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE3d3D067511; Sun, 23 Oct 2011 14:03:39 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE3dle067507; Sun, 23 Oct 2011 14:03:39 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:03:39 GMT Message-Id: <201110231403.p9NE3dle067507@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161926: bsdinstall(8): disk layout trouble 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, 23 Oct 2011 14:03:39 -0000 Old Synopsis: 9.0-RC1 bsdinstall disk layout trouble New Synopsis: bsdinstall(8): disk layout trouble Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: generate bugspam http://www.freebsd.org/cgi/query-pr.cgi?pr=161926 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 14:04:03 2011 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 AEE6E1065679; Sun, 23 Oct 2011 14:04:03 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6F2CF8FC1C; Sun, 23 Oct 2011 14:04:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NE436b067603; Sun, 23 Oct 2011 14:04:03 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NE43K7067599; Sun, 23 Oct 2011 14:04:03 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 14:04:03 GMT Message-Id: <201110231404.p9NE43K7067599@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/161927: bsdinstall(8): has no help describing what is happening 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, 23 Oct 2011 14:04:03 -0000 Old Synopsis: 9.0 RC1 bsdinstall has no help describing what is happening New Synopsis: bsdinstall(8): has no help describing what is happening Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 14:00:23 UTC 2011 Responsible-Changed-Why: assign http://www.freebsd.org/cgi/query-pr.cgi?pr=161927 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 15:21:36 2011 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 3E92B106564A; Sun, 23 Oct 2011 15:21:36 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from argol.doit.wisc.edu (argol.doit.wisc.edu [144.92.197.212]) by mx1.freebsd.org (Postfix) with ESMTP id 00D288FC12; Sun, 23 Oct 2011 15:21:35 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth3.wiscmail.wisc.edu by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LTI00L00YNYNS00@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:21:34 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.66.1]) by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LTI00I6KYNX9G10@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:21:33 -0500 (CDT) Date: Sun, 23 Oct 2011 10:21:32 -0500 From: Nathan Whitehorn In-reply-to: <201110060433.p964XrV1073331@freefall.freebsd.org> To: eadler@FreeBSD.org Message-id: <4EA430FC.6000105@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.66.1 X-Spam-PmxInfo: Server=avs-12, Version=5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.10.23.143314, SenderIP=76.210.66.1 References: <201110060433.p964XrV1073331@freefall.freebsd.org> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0) Gecko/20110928 Thunderbird/7.0 Cc: freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org Subject: Re: bin/161049: bsdinstall(8): could try to tell if SSDs support TRIM 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, 23 Oct 2011 15:21:36 -0000 On 10/05/11 23:33, eadler@FreeBSD.org wrote: > Old Synopsis: bsdinstall could try to tell if SSDs support TRIM > New Synopsis: bsdinstall(8): could try to tell if SSDs support TRIM > > Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall > Responsible-Changed-By: eadler > Responsible-Changed-When: Thu Oct 6 04:32:58 UTC 2011 > Responsible-Changed-Why: > > fix synopsys and assign > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=161049 Does anyone know a way to do this? It's not clear this information is readily accessible from userland. -Nathan From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 15:43:07 2011 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 92E99106564A; Sun, 23 Oct 2011 15:43:07 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from argol.doit.wisc.edu (argol.doit.wisc.edu [144.92.197.212]) by mx1.freebsd.org (Postfix) with ESMTP id 6615B8FC0A; Sun, 23 Oct 2011 15:43:07 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth3.wiscmail.wisc.edu by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LTI00000ZNU6Z00@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:43:06 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.66.1]) by smtpauth3.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LTI00N4HZNT3L00@smtpauth3.wiscmail.wisc.edu>; Sun, 23 Oct 2011 10:43:05 -0500 (CDT) Date: Sun, 23 Oct 2011 10:43:04 -0500 From: Nathan Whitehorn In-reply-to: <201110231403.p9NE3dle067507@freefall.freebsd.org> To: phk@FreeBSD.org Message-id: <4EA43608.2070703@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.66.1 X-Spam-PmxInfo: Server=avs-13, Version=5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.10.23.143314, SenderIP=76.210.66.1 References: <201110231403.p9NE3dle067507@freefall.freebsd.org> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0) Gecko/20110928 Thunderbird/7.0 Cc: freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble 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, 23 Oct 2011 15:43:07 -0000 > Description > I tried to install a machine for use with src/tools/sysbuild, and ran > into a number of weird issues. > > Here is a blow by blow account: > > ada0 zeroed before boot > boot dvd > Choose "Install" > > > Keymap Selection -> No > "non-default key mapping" ??? > What kind of question is that ? > Can you suggest an alternate wording for this? This was a request from PR bin/160913. > Guided disk > Hmm, maybe I should use the manual option, > lets see, where is the "back" button ? > Ohh, there are *no* "back" buttons *anywhere* ? > jilles@ was going to add these at one point, so I dropped the issue. I don't know what happened with that -- perhaps it is worth revisiting. > Partition > ada0 Modify > "Invalid argument. arg0 'ada0' > MBR > Can you provide some more detail on how you got here? This is a geom bug, and it would be nice to track it down. > Create > 10GB > > Create > 10GB > > Create > 10GB > > Create > default size > > Active partition is the last one created ? > There is no place I can see it ? > There is no place I can change it ? > Active partition is the last bootable (e.g. freebsd) partition you created, yes. It's difficult to make a UI for setting active partitions since only MBR really has that concept, and this is mostly geared to supporting GPT (and VTOC8, APM, etc). libdialog also (irritatingly) doesn't support mixes of checkboxes and form fields. As usual, suggestions are appreciated. > ada0s1 Modify > "Invalid argument. arg0 'ada0s1' > Again, you've run into a GEOM bug. More details, please. > BSD > Create (ada0s1a) > freebsd, full size, / > > Finish > > Enter shell in new system > > gpart set -a active -i 1 ada0 > Fix the active partition > > sysctl kern.geom.debugflags=16 > gmirror label root ada0 > > Fix /etc/fstab ? > There is no /etc/fstab ? > Create /etc/fstab: /dev/mirror/roots1a / ufs rw 1 1 > boot0cfg -B /dev/ada0 > No, there is no fstab. There is no rc.conf either. They are both copied later, at the very end. This has to do with how the rc.conf editing tools work, so that you can get a second chance here. The first can be fixed fairly easily -- the second is much harder. I'm hoping to have some time to fix both of these soon. There are two basic ways to fix this: 1. Move "Shell" out of that screen, into the "Installation finished. What would you like to do now?" screen, when the install is actually complete. This is the easiest solution by far, and maybe the best. 2. Pre-copy fstab, and try to diff a user-edited rc.conf against the generated one, then reapply any user patches at the end. This seems fraught with peril. > reboot > > Comes up > /etc/fstab now contains ada0s1a ? > It gets replaced (see above). > fix /etc/fstab > add geom_mirror_load="YES" to /boot/loader.conf > reboot > > Comes up > > How-To-Repeat > > Per above. > > I tried once before with a disk which contained a Ubuntu installation, > there I ended up with partition 2 having size of "-37GB" on a 40GB > drive. > Again, can you provide more details on how you got there? You seem to have found a *lot* of bugs in gpart. > Fix > > At the very least, show people what's going on. > And for goodness sake, add "Back" buttons, OK ? Back buttons are kind of hard in shell scripts, but I'm on it :P > You really don't want me to write sysinstall2, right ? :-) :P -Nathan From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 15:51:54 2011 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 3E745106566C; Sun, 23 Oct 2011 15:51:54 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 179878FC0C; Sun, 23 Oct 2011 15:51:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NFprHr069647; Sun, 23 Oct 2011 15:51:53 GMT (envelope-from adrian@freefall.freebsd.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NFprlk069643; Sun, 23 Oct 2011 15:51:53 GMT (envelope-from adrian) Date: Sun, 23 Oct 2011 15:51:53 GMT Message-Id: <201110231551.p9NFprlk069643@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, adrian@FreeBSD.org From: adrian@FreeBSD.org Cc: Subject: Re: kern/98162: [request] AcerHK driver port needed for enabling WiFi on Acer's laptops 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, 23 Oct 2011 15:51:54 -0000 Synopsis: [request] AcerHK driver port needed for enabling WiFi on Acer's laptops Responsible-Changed-From-To: freebsd-bugs->adrian Responsible-Changed-By: adrian Responsible-Changed-When: Sun Oct 23 15:51:39 UTC 2011 Responsible-Changed-Why: I'll take a crack at this; I have some relevant hardware. http://www.freebsd.org/cgi/query-pr.cgi?pr=98162 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 16:34:52 2011 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 DC95D106564A; Sun, 23 Oct 2011 16:34:52 +0000 (UTC) (envelope-from rmh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B65138FC16; Sun, 23 Oct 2011 16:34:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NGYqq3008013; Sun, 23 Oct 2011 16:34:52 GMT (envelope-from rmh@freefall.freebsd.org) Received: (from rmh@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NGYqti008008; Sun, 23 Oct 2011 16:34:52 GMT (envelope-from rmh) Date: Sun, 23 Oct 2011 16:34:52 GMT Message-Id: <201110231634.p9NGYqti008008@freefall.freebsd.org> To: rmh@debian.org, rmh@FreeBSD.org, freebsd-bugs@FreeBSD.org From: rmh@FreeBSD.org Cc: Subject: Re: kern/159278: [kern.mk] [patch] FreeBSD compiler extensions 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, 23 Oct 2011 16:34:52 -0000 Synopsis: [kern.mk] [patch] FreeBSD compiler extensions State-Changed-From-To: open->closed State-Changed-By: rmh State-Changed-When: Sun Oct 23 16:33:14 UTC 2011 State-Changed-Why: Fixed in r226665. http://www.freebsd.org/cgi/query-pr.cgi?pr=159278 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 16:50:04 2011 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 048211065673 for ; Sun, 23 Oct 2011 16:50:03 +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 CF9FC8FC14 for ; Sun, 23 Oct 2011 16:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NGo3SV017130 for ; Sun, 23 Oct 2011 16:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NGo3lG017129; Sun, 23 Oct 2011 16:50:03 GMT (envelope-from gnats) Resent-Date: Sun, 23 Oct 2011 16:50:03 GMT Resent-Message-Id: <201110231650.p9NGo3lG017129@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, Ryan Steinmetz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 037741065673 for ; Sun, 23 Oct 2011 16:47:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CFAFD8FC08 for ; Sun, 23 Oct 2011 16:47:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NGlcBL029318 for ; Sun, 23 Oct 2011 16:47:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9NGlcm9029317; Sun, 23 Oct 2011 16:47:38 GMT (envelope-from nobody) Message-Id: <201110231647.p9NGlcm9029317@red.freebsd.org> Date: Sun, 23 Oct 2011 16:47:38 GMT From: Ryan Steinmetz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161936: [openbsm][patch] praudit can produce invalid XML output 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, 23 Oct 2011 16:50:04 -0000 >Number: 161936 >Category: bin >Synopsis: [openbsm][patch] praudit can produce invalid XML output >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 23 16:50:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ryan Steinmetz >Release: 8.2-RELEASE >Organization: Rochester Institute of Technology >Environment: >Description: When using praudit to display audit entries, the XML output argument (-x) will cause praudit to print invalid XML in certain circumstances. This surfaces anytime a command is audited that contains invalid XML characters (& or <). >How-To-Repeat: Ensure command logging is enabled and execute a command like the following: % echo hi < test && ls % praudit -x >file.tmp Then use an XML parser to try to parse file.tmp, it will complain about invalid characters due to the presence of & and < in places they should not be. >Fix: Applying the attached patch to contrib/openbsm/libbsm/bsm_io.c properly sanitizes the entries as they are printed by replacing instances of & with & and < with < cd /usr/src patch < /path/to/bsm_io.c.diff cd lib/libbsm && make clean;make obj && make depend && make && make install Patch attached with submission follows: --- contrib/openbsm/libbsm/bsm_io.c.orig 2011-10-23 12:10:40.000000000 -0400 +++ contrib/openbsm/libbsm/bsm_io.c 2011-10-23 12:35:31.000000000 -0400 @@ -214,6 +214,28 @@ } /* + * Prints the given data bytes as an XML-sanitized string + */ +static void +print_xml_string(FILE *fp, const char *str, size_t len) +{ + u_int32_t i; + + if (len > 0) { + for (i = 0; i < len; i++) { + if (str[i] != '\0') { + if (str[i] == '&') + fprintf(fp, "&"); + else if (str[i] == '<') + fprintf(fp, "<"); + else + fprintf(fp, "%c", str[i]); + } + } + } +} + +/* * Prints the beggining of attribute. */ static void @@ -1855,7 +1877,7 @@ for (i = 0; i < tok->tt.execarg.count; i++) { if (xml) { fprintf(fp, ""); - print_string(fp, tok->tt.execarg.text[i], + print_xml_string(fp, tok->tt.execarg.text[i], strlen(tok->tt.execarg.text[i])); fprintf(fp, ""); } else { @@ -1914,7 +1936,7 @@ for (i = 0; i< tok->tt.execenv.count; i++) { if (xml) { fprintf(fp, ""); - print_string(fp, tok->tt.execenv.text[i], + print_xml_string(fp, tok->tt.execenv.text[i], strlen(tok->tt.execenv.text[i])); fprintf(fp, ""); } else { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 18:31:51 2011 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 EA883106566B; Sun, 23 Oct 2011 18:31:51 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id A7DC38FC0A; Sun, 23 Oct 2011 18:31:51 +0000 (UTC) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 5C9225C39; Sun, 23 Oct 2011 18:15:00 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id p9NIF0Ah008393; Sun, 23 Oct 2011 18:15:00 GMT (envelope-from phk@phk.freebsd.dk) To: Nathan Whitehorn From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 23 Oct 2011 10:43:04 EST." <4EA43608.2070703@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Date: Sun, 23 Oct 2011 18:15:00 +0000 Message-ID: <8392.1319393700@critter.freebsd.dk> Cc: freebsd-bugs@freebsd.org, freebsd-sysinstall@freebsd.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble 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, 23 Oct 2011 18:31:52 -0000 In message <4EA43608.2070703@freebsd.org>, Nathan Whitehorn writes: >> Keymap Selection -> No >> "non-default key mapping" ??? >> What kind of question is that ? > >Can you suggest an alternate wording for this? This was a request from >PR bin/160913. "Do you want US/English keyboard ?" >> Ohh, there are *no* "back" buttons *anywhere* ? > >jilles@ was going to add these at one point, so I dropped the issue. I >don't know what happened with that -- perhaps it is worth revisiting. I have noted your candidacy for the "Understatement of the month" award. >> Partition >> ada0 Modify >> "Invalid argument. arg0 'ada0' >> MBR > >Can you provide some more detail on how you got here? This is a geom >bug, and it would be nice to track it down. Try dd if=/dev/zero of=/dev/$whatever bs=128 on your target disk before installation. >> Active partition is the last one created ? >> There is no place I can see it ? >> There is no place I can change it ? > >Active partition is the last bootable (e.g. freebsd) partition you >created, yes. That is *totally* bogus, at the very least, make it the first one. >> Enter shell in new system >> >> Fix /etc/fstab ? >> There is no /etc/fstab ? > >No, there is no fstab. There is no rc.conf either. That is very counter-intuitive, because people are very likely to make changes to them with this step. In fact, that is just about the only reason you have to enter the new system this way: To change something that improves your chances of booting the new system in a few moments. >1. Move "Shell" out of that screen, into the "Installation finished. >What would you like to do now?" screen, when the install is actually >complete. This is the easiest solution by far, and maybe the best. That works for me. >> I tried once before with a disk which contained a Ubuntu installation, >> there I ended up with partition 2 having size of "-37GB" on a 40GB >> drive. > >Again, can you provide more details on how you got there? You seem to >have found a *lot* of bugs in gpart. Sorry, that one is not reproducible now. You can try to install an Ubuntu on a 40GB disk, but... >Back buttons are kind of hard in shell scripts, but I'm on it :P You're doing this as shell-scripts ? The mind boggles... -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 20:08:57 2011 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 7C8771065741; Sun, 23 Oct 2011 20:08:57 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from agogare.doit.wisc.edu (agogare.doit.wisc.edu [144.92.197.211]) by mx1.freebsd.org (Postfix) with ESMTP id 500268FC0C; Sun, 23 Oct 2011 20:08:57 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII; format=flowed Received: from avs-daemon.smtpauth2.wiscmail.wisc.edu by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0LTJ00A00BYWWL00@smtpauth2.wiscmail.wisc.edu>; Sun, 23 Oct 2011 15:08:56 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.66.1]) by smtpauth2.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0LTJ002P1BYUNU10@smtpauth2.wiscmail.wisc.edu>; Sun, 23 Oct 2011 15:08:55 -0500 (CDT) Date: Sun, 23 Oct 2011 15:08:54 -0500 From: Nathan Whitehorn In-reply-to: <8392.1319393700@critter.freebsd.dk> To: Poul-Henning Kamp Message-id: <4EA47456.7090008@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.66.1 X-Spam-PmxInfo: Server=avs-11, Version=5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.10.23.200015, SenderIP=76.210.66.1 References: <8392.1319393700@critter.freebsd.dk> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0) Gecko/20110928 Thunderbird/7.0 Cc: freebsd-bugs@freebsd.org, freebsd-sysinstall@freebsd.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble 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, 23 Oct 2011 20:08:57 -0000 On 10/23/11 13:15, Poul-Henning Kamp wrote: > In message<4EA43608.2070703@freebsd.org>, Nathan Whitehorn writes: > >>> Keymap Selection -> No >>> "non-default key mapping" ??? >>> What kind of question is that ? >> Can you suggest an alternate wording for this? This was a request from >> PR bin/160913. > "Do you want US/English keyboard ?" OK, the wording can be changed. >>> Ohh, there are *no* "back" buttons *anywhere* ? >> jilles@ was going to add these at one point, so I dropped the issue. I >> don't know what happened with that -- perhaps it is worth revisiting. > I have noted your candidacy for the "Understatement of the month" award. There's not actually too much need for them, and so they never seemed pressing. Pressing control-C/choosing "cancel"/etc. will either skip steps that can be returned to later (post-extraction) or return to the beginning of the installation, which is where you already were, pre-extraction. It seemed better to have a back-button-free version than buggy back buttons like in sysinstall, anyway. >>> Partition >>> ada0 Modify >>> "Invalid argument. arg0 'ada0' >>> MBR >> Can you provide some more detail on how you got here? This is a geom >> bug, and it would be nice to track it down. > Try dd if=/dev/zero of=/dev/$whatever bs=128 on your target disk before > installation. Can't reproduce that one at all. What steps did you take after that? Just pressing create and choosing MBR? Or were there more? >>> Active partition is the last one created ? >>> There is no place I can see it ? >>> There is no place I can change it ? >> Active partition is the last bootable (e.g. freebsd) partition you >> created, yes. > That is *totally* bogus, at the very least, make it the first one. The UI problem is actually hard, and the correct solution without a UI solution is non-obvious. The usual use case, where only one MBR partition of type freebsd is added, works perfectly well. I'll try to find a reasonable solution to this, but have very little time at the moment -- patches would be much appreciated. >> 1. Move "Shell" out of that screen, into the "Installation finished. >> What would you like to do now?" screen, when the install is actually >> complete. This is the easiest solution by far, and maybe the best. > That works for me. I'll fix it this way, then. >>> I tried once before with a disk which contained a Ubuntu installation, >>> there I ended up with partition 2 having size of "-37GB" on a 40GB >>> drive. >> Again, can you provide more details on how you got there? You seem to >> have found a *lot* of bugs in gpart. > Sorry, that one is not reproducible now. You can try to install an > Ubuntu on a 40GB disk, but... > >> Back buttons are kind of hard in shell scripts, but I'm on it :P > You're doing this as shell-scripts ? > No -- that way would lie madness. There are several components to the installer which are separate executables, and all but the simplest are C programs. The main installation process is done by invoking them in sequence, as a short shell script. This substantially improves the modularity of the installer, and makes scripting it much easier. It also makes back buttons very hard to implement, since they break this encapsulation -- not severely, but enough to cause problems. As I said, I'll take another look at doing them, but it's a nontrivial thing. -Nathan From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:32:45 2011 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 CE778106564A; Sun, 23 Oct 2011 22:32:45 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A741C8FC17; Sun, 23 Oct 2011 22:32:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMWj1O039289; Sun, 23 Oct 2011 22:32:45 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMWjOX039285; Sun, 23 Oct 2011 22:32:45 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:32:45 GMT Message-Id: <201110232232.p9NMWjOX039285@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, pjd@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: misc/161915: pjdtests don't articulate requirements very well 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, 23 Oct 2011 22:32:45 -0000 Synopsis: pjdtests don't articulate requirements very well Responsible-Changed-From-To: freebsd-bugs->pjd Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:32:45 UTC 2011 Responsible-Changed-Why: you may want to look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=161915 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:32:50 2011 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 CEB64106564A; Sun, 23 Oct 2011 22:32:50 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A72C78FC0A; Sun, 23 Oct 2011 22:32:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMWo8i039377; Sun, 23 Oct 2011 22:32:50 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMWoO0039373; Sun, 23 Oct 2011 22:32:50 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:32:50 GMT Message-Id: <201110232232.p9NMWoO0039373@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, pjd@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: misc/161917: pjdfstest doesn't detect setup/teardown failures properly 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, 23 Oct 2011 22:32:50 -0000 Synopsis: pjdfstest doesn't detect setup/teardown failures properly Responsible-Changed-From-To: freebsd-bugs->pjd Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:32:50 UTC 2011 Responsible-Changed-Why: you may want to look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=161917 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:34:40 2011 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 E986E106564A; Sun, 23 Oct 2011 22:34:40 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C241C8FC0A; Sun, 23 Oct 2011 22:34:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMYeil039767; Sun, 23 Oct 2011 22:34:40 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMYer5039763; Sun, 23 Oct 2011 22:34:40 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:34:40 GMT Message-Id: <201110232234.p9NMYer5039763@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-net@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: kern/161908: [netgraph] [patch] ng_vlan update for QinQ support 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, 23 Oct 2011 22:34:41 -0000 Old Synopsis: ng_vlan update for QinQ support New Synopsis: [netgraph] [patch] ng_vlan update for QinQ support Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:34:17 UTC 2011 Responsible-Changed-Why: assign and add tags http://www.freebsd.org/cgi/query-pr.cgi?pr=161908 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 22:53:43 2011 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 C91901065670; Sun, 23 Oct 2011 22:53:43 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1C048FC0C; Sun, 23 Oct 2011 22:53:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NMrhdc057693; Sun, 23 Oct 2011 22:53:43 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NMrhDq057689; Sun, 23 Oct 2011 22:53:43 GMT (envelope-from eadler) Date: Sun, 23 Oct 2011 22:53:43 GMT Message-Id: <201110232253.p9NMrhDq057689@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-bugs@FreeBSD.org, pluknet@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: bin/160516: pkg_delete(1) error messages miss which package had the problem 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, 23 Oct 2011 22:53:43 -0000 Synopsis: pkg_delete(1) error messages miss which package had the problem Responsible-Changed-From-To: freebsd-bugs->pluknet Responsible-Changed-By: eadler Responsible-Changed-When: Sun Oct 23 22:53:33 UTC 2011 Responsible-Changed-Why: you committed the change http://www.freebsd.org/cgi/query-pr.cgi?pr=160516 From owner-freebsd-bugs@FreeBSD.ORG Sun Oct 23 23:08:50 2011 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 48F601065670; Sun, 23 Oct 2011 23:08:50 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 21B468FC12; Sun, 23 Oct 2011 23:08:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9NN8oJ9066958; Sun, 23 Oct 2011 23:08:50 GMT (envelope-from csjp@freefall.freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9NN8nxU066954; Sun, 23 Oct 2011 23:08:50 GMT (envelope-from csjp) Date: Sun, 23 Oct 2011 23:08:50 GMT Message-Id: <201110232308.p9NN8nxU066954@freefall.freebsd.org> To: csjp@FreeBSD.org, freebsd-bugs@FreeBSD.org, csjp@FreeBSD.org From: csjp@FreeBSD.org Cc: Subject: Re: kern/161936: [openbsm][patch] praudit can produce invalid XML output 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, 23 Oct 2011 23:08:50 -0000 Synopsis: [openbsm][patch] praudit can produce invalid XML output Responsible-Changed-From-To: freebsd-bugs->csjp Responsible-Changed-By: csjp Responsible-Changed-When: Sun Oct 23 23:08:22 UTC 2011 Responsible-Changed-Why: take http://www.freebsd.org/cgi/query-pr.cgi?pr=161936 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 01:10:01 2011 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 3CB09106566C for ; Mon, 24 Oct 2011 01:10:01 +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 F18C68FC1A for ; Mon, 24 Oct 2011 01:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O1A0pv080986 for ; Mon, 24 Oct 2011 01:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O1A0g4080985; Mon, 24 Oct 2011 01:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 01:10:00 GMT Resent-Message-Id: <201110240110.p9O1A0g4080985@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, Richard Yao Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DF7B106564A for ; Mon, 24 Oct 2011 01:07:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 0E3EF8FC0C for ; Mon, 24 Oct 2011 01:07:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O17eXA010532 for ; Mon, 24 Oct 2011 01:07:40 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O17el1010531; Mon, 24 Oct 2011 01:07:40 GMT (envelope-from nobody) Message-Id: <201110240107.p9O17el1010531@red.freebsd.org> Date: Mon, 24 Oct 2011 01:07:40 GMT From: Richard Yao To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161950: FreeBSD 9 installer enters infinite input loop 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, 24 Oct 2011 01:10:01 -0000 >Number: 161950 >Category: misc >Synopsis: FreeBSD 9 installer enters infinite input loop >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 24 01:10:00 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Richard Yao >Release: FreeBSD9-RC1 >Organization: State University of New York at Stony Brook >Environment: FreeBSD freebsd9 9.0-RC1 FreeBSD 9.0-RC1 #0 Tue Oct 18 18:51:43 UTC 2011 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I ran the FreeBSD9-RC1 installer on a KVM virtual machine with virtio network and storage devices. Since FreeBSD9-RC1 did not support those, it didn't see either of them. The installer entered an infinite input loop upon selection of guided mode, where it stated "An installation step has been aborted." with some information on my options. This lead to the installer restarting itself from the beginning, with the same result when it came time to partition the disk. I reconfigured the VM to use a SCSI device, which broke the first infinite input loop and then ran into a similar loop when it came time to configure the network interfaces, where I kept being asked if I wanted to configure IPv4. >How-To-Repeat: Try to install FreeBSD9-RC1 on a system that has no disk or network interface card. >Fix: Check to see if a disk or network interface card exists and inform the user so that he does not enter an infinite input loop. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 01:23:18 2011 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 CC5C8106566B; Mon, 24 Oct 2011 01:23:18 +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 A46D98FC15; Mon, 24 Oct 2011 01:23:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O1NIVl000179; Mon, 24 Oct 2011 01:23:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O1NItb000175; Mon, 24 Oct 2011 01:23:18 GMT (envelope-from linimon) Date: Mon, 24 Oct 2011 01:23:18 GMT Message-Id: <201110240123.p9O1NItb000175@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-sysinstall@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: bin/161950: bsdinstall(8): FreeBSD 9 installer enters infinite input loop 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, 24 Oct 2011 01:23:18 -0000 Old Synopsis: FreeBSD 9 installer enters infinite input loop New Synopsis: bsdinstall(8): FreeBSD 9 installer enters infinite input loop Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall Responsible-Changed-By: linimon Responsible-Changed-When: Mon Oct 24 01:23:01 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=161950 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 02:50:05 2011 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 6F477106566C for ; Mon, 24 Oct 2011 02:50:05 +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 464CF8FC0A for ; Mon, 24 Oct 2011 02:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O2o5bh075013 for ; Mon, 24 Oct 2011 02:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O2o5v7075012; Mon, 24 Oct 2011 02:50:05 GMT (envelope-from gnats) Date: Mon, 24 Oct 2011 02:50:05 GMT Message-Id: <201110240250.p9O2o5v7075012@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Harry Coin Cc: Subject: Re: kern/161884: Gssapi/krb5 memory leak, massive krb5.conf re-read slowness X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Harry Coin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2011 02:50:05 -0000 The following reply was made to PR kern/161884; it has been noted by GNATS. From: Harry Coin To: bug-followup@FreeBSD.org, hcoin@quietfountain.com Cc: Subject: Re: kern/161884: Gssapi/krb5 memory leak, massive krb5.conf re-read slowness Date: Sun, 23 Oct 2011 21:31:21 -0500 Withdrawn entirely as I found the the static 'create_key' mechanism in the odd do { } while(0) construction in the GSS... define. This can be closed, it was an error to have filed it. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 07:38:15 2011 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 BE848106566B; Mon, 24 Oct 2011 07:38:15 +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 9605A8FC1F; Mon, 24 Oct 2011 07:38:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O7cF4n072668; Mon, 24 Oct 2011 07:38:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O7cFwm072664; Mon, 24 Oct 2011 07:38:15 GMT (envelope-from linimon) Date: Mon, 24 Oct 2011 07:38:15 GMT Message-Id: <201110240738.p9O7cFwm072664@freefall.freebsd.org> To: hcoin@quietfountain.com, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/161884: [kerberos] [patch] gssapi/krb5 memory leak, massive krb5.conf re-read slowness 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, 24 Oct 2011 07:38:15 -0000 Synopsis: [kerberos] [patch] gssapi/krb5 memory leak, massive krb5.conf re-read slowness State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Oct 24 07:38:05 UTC 2011 State-Changed-Why: Closed at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=161884 From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 08:40:04 2011 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 5BF091065674 for ; Mon, 24 Oct 2011 08:40: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 1B0F28FC13 for ; Mon, 24 Oct 2011 08:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8e3ob033064 for ; Mon, 24 Oct 2011 08:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O8e3qc033063; Mon, 24 Oct 2011 08:40:03 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 08:40:03 GMT Resent-Message-Id: <201110240840.p9O8e3qc033063@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, subbsd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 446EF1065673 for ; Mon, 24 Oct 2011 08:39:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 340478FC08 for ; Mon, 24 Oct 2011 08:39:10 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8dAgx025893 for ; Mon, 24 Oct 2011 08:39:10 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O8d995025892; Mon, 24 Oct 2011 08:39:09 GMT (envelope-from nobody) Message-Id: <201110240839.p9O8d995025892@red.freebsd.org> Date: Mon, 24 Oct 2011 08:39:09 GMT From: subbsd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: kern/161956: filesystem lock with mount nullfs in random cases 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, 24 Oct 2011 08:40:04 -0000 >Number: 161956 >Category: kern >Synopsis: filesystem lock with mount nullfs in random cases >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 24 08:40:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: subbsd >Release: 9.0-RC1 >Organization: >Environment: FreeBSD fbsd.my.domain 9.0-RC1 FreeBSD 9.0-RC1 #0: Wed Oct 19 23:11:33 MSK 2011 root@fbsd.my.domain:/usr/obj/usr/src/sys/GENERIC amd64 >Description: filesystem (zfs or ufs) is freezing in random time when mount nullfs is work. more information: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=270240+0+archive/2011/freebsd-fs/20111023.freebsd-fs >How-To-Repeat: making it easy to reproduce when do 'svn cleanup' for mounted directory, see http://docs.freebsd.org/cgi/getmsg.cgi?fetch=270240+0+archive/2011/freebsd-fs/20111023.freebsd-fs >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 08:50:02 2011 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 70028106564A for ; Mon, 24 Oct 2011 08: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 2F3C68FC16 for ; Mon, 24 Oct 2011 08:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8o2kS041881 for ; Mon, 24 Oct 2011 08:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O8o2oi041880; Mon, 24 Oct 2011 08:50:02 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 08:50:02 GMT Resent-Message-Id: <201110240850.p9O8o2oi041880@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, Alexey Markov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E71D4106564A for ; Mon, 24 Oct 2011 08:40:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D14B08FC0A for ; Mon, 24 Oct 2011 08:40:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O8e2VH026061 for ; Mon, 24 Oct 2011 08:40:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O8e2SF026060; Mon, 24 Oct 2011 08:40:02 GMT (envelope-from nobody) Message-Id: <201110240840.p9O8e2SF026060@red.freebsd.org> Date: Mon, 24 Oct 2011 08:40:02 GMT From: Alexey Markov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: bin/161957: jls -v doesn't show anything if system compiled with WITHOUT_INET6 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, 24 Oct 2011 08:50:02 -0000 >Number: 161957 >Category: bin >Synopsis: jls -v doesn't show anything if system compiled with WITHOUT_INET6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 24 08:50:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexey Markov >Release: 8.2-RELEASE-p4 >Organization: JSC Complitex >Environment: FreeBSD meson.complitex.ru 8.2-RELEASE-p4 FreeBSD 8.2-RELEASE-p4 #0: Mon Oct 17 11:44:31 MSD 2011 redrat@meson.complitex.ru:/arc/obj/arc/src/sys/MESON amd64 >Description: I have a server which is compiled with WITHOUT_INET6 in src.conf. There is some jails on this server. While jls without switches works fine, with -v switch I got error: "jls: unknown parameter: ip6.addr". I think jls must omit ip6.addr parameter on systems without IPv6 support and just output the rest of parameters. >How-To-Repeat: # echo "WITHOUT_INET6" >> /etc/src.conf # cd /usr/src && make world # shutdown -r now # jls JID IP Address Hostname Path 3 127.0.0.2 port.jail /arc/jail/port # jls -v jls: unknown parameter: ip6.addr >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 08:56:30 2011 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 D47AB106566C; Mon, 24 Oct 2011 08:56:30 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 920508FC0C; Mon, 24 Oct 2011 08:56:30 +0000 (UTC) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 22F5A5DC8; Mon, 24 Oct 2011 08:56:29 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id p9O8uSQ9021149; Mon, 24 Oct 2011 08:56:28 GMT (envelope-from phk@phk.freebsd.dk) To: Nathan Whitehorn From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 23 Oct 2011 15:08:54 EST." <4EA47456.7090008@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Date: Mon, 24 Oct 2011 08:56:28 +0000 Message-ID: <21148.1319446588@critter.freebsd.dk> Cc: freebsd-bugs@freebsd.org, freebsd-sysinstall@freebsd.org Subject: Re: bin/161926: bsdinstall(8): disk layout trouble 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, 24 Oct 2011 08:56:30 -0000 In message <4EA47456.7090008@freebsd.org>, Nathan Whitehorn writes: >On 10/23/11 13:15, Poul-Henning Kamp wrote: >There's not actually too much need for them, and so they never seemed >pressing. Pressing control-C/choosing "cancel"/etc. will either skip >steps that can be returned to later (post-extraction) or return to the >beginning of the installation, which is where you already were, Let me just note that neither the overall structure nor where I would end up by pressing Ctrl-C was not even remotely obvious to this particular user. >>>> Active partition is the last one created ? >>>> There is no place I can see it ? >>>> There is no place I can change it ? >>> Active partition is the last bootable (e.g. freebsd) partition you >>> created, yes. >> That is *totally* bogus, at the very least, make it the first one. > >The UI problem is actually hard, and the correct solution without a UI >solution is non-obvious. The usual use case, where only one MBR >partition of type freebsd is added, works perfectly well. I'll try to >find a reasonable solution to this, but have very little time at the >moment -- patches would be much appreciated. The fact that is is hard to do right, seems an incredibly lousy excuse for doing something totally counter-intutive. Systems with more than one MBR partition are quite common in the wild in my experience. How about you set the active flag on whatever parition contains the / filesystem as part of final cleanup ? I'm not going to be sending patches: I solved this problem once according to the priorities at the time, you get to solve it this time :-) My input should simply count as a single old grumbling fart, and if you think he is totally out of touch, you get to ignore him. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 09:10:01 2011 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 9426610656D3 for ; Mon, 24 Oct 2011 09:10:01 +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 6CF378FC1A for ; Mon, 24 Oct 2011 09:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O9A1DI059044 for ; Mon, 24 Oct 2011 09:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9O9A1qv059043; Mon, 24 Oct 2011 09:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 24 Oct 2011 09:10:01 GMT Resent-Message-Id: <201110240910.p9O9A1qv059043@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, Henning Petersen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E4EB106566C for ; Mon, 24 Oct 2011 09:07:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5D9748FC12 for ; Mon, 24 Oct 2011 09:07:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9O97Jns081458 for ; Mon, 24 Oct 2011 09:07:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9O97JxF081457; Mon, 24 Oct 2011 09:07:19 GMT (envelope-from nobody) Message-Id: <201110240907.p9O97JxF081457@red.freebsd.org> Date: Mon, 24 Oct 2011 09:07:19 GMT From: Henning Petersen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/161958: Add keyword restrict to glob(). 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, 24 Oct 2011 09:10:01 -0000 >Number: 161958 >Category: misc >Synopsis: Add keyword restrict to glob(). >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: Mon Oct 24 09:10:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Henning Petersen >Release: FreeBSD-current >Organization: >Environment: >Description: Add keyword restrict to glob(). >How-To-Repeat: >Fix: diff -u -r1.28 glob.c --- lib/libc/gen/glob.c 12 May 2010 17:44:00 -0000 1.28 +++ lib/libc/gen/glob.c 24 Oct 2011 06:33:08 -0000 @@ -163,7 +163,8 @@ #endif int -glob(const char *pattern, int flags, int (*errfunc)(const char *, int), glob_t *pglob) +glob(const char * __restrict pattern, int flags, + int (*errfunc)(const char *, int), glob_t * __restrict pglob) { const char *patnext; size_t limit; @@ -717,7 +718,7 @@ free(pglob->gl_pathv); pglob->gl_pathv = NULL; } - return(GLOB_NOSPACE); + return (GLOB_NOSPACE); } if (pglob->gl_pathv == NULL && pglob->gl_offs > 0) { =============================================================================== diff -u -r1.11 glob.h --- include/glob.h 16 Feb 2010 19:39:50 -0000 1.11 +++ include/glob.h 24 Oct 2011 05:48:35 -0000 @@ -98,7 +98,8 @@ #endif /* __BSD_VISIBLE */ __BEGIN_DECLS -int glob(const char *, int, int (*)(const char *, int), glob_t *); +int glob(const char * __restrict, int, + int (*)(const char *, int), glob_t * __restrict); void globfree(glob_t *); __END_DECLS ================================================================================ diff -u -r1.34 glob.3 --- lib/libc/gen/glob.3 15 Feb 2011 20:07:35 -0000 1.34 +++ lib/libc/gen/glob.3 24 Oct 2011 05:50:17 -0000 @@ -42,7 +42,7 @@ .Sh SYNOPSIS .In glob.h .Ft int -.Fn glob "const char *pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t *pglob" +.Fn glob "const char * restrict pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t * restrict pglob" .Ft void .Fn globfree "glob_t *pglob" .Sh DESCRIPTION Patch attached with submission follows: diff -u -r1.28 glob.c --- lib/libc/gen/glob.c 12 May 2010 17:44:00 -0000 1.28 +++ lib/libc/gen/glob.c 24 Oct 2011 06:33:08 -0000 @@ -163,7 +163,8 @@ #endif int -glob(const char *pattern, int flags, int (*errfunc)(const char *, int), glob_t *pglob) +glob(const char * __restrict pattern, int flags, + int (*errfunc)(const char *, int), glob_t * __restrict pglob) { const char *patnext; size_t limit; @@ -717,7 +718,7 @@ free(pglob->gl_pathv); pglob->gl_pathv = NULL; } - return(GLOB_NOSPACE); + return (GLOB_NOSPACE); } if (pglob->gl_pathv == NULL && pglob->gl_offs > 0) { =============================================================================== diff -u -r1.11 glob.h --- include/glob.h 16 Feb 2010 19:39:50 -0000 1.11 +++ include/glob.h 24 Oct 2011 05:48:35 -0000 @@ -98,7 +98,8 @@ #endif /* __BSD_VISIBLE */ __BEGIN_DECLS -int glob(const char *, int, int (*)(const char *, int), glob_t *); +int glob(const char * __restrict, int, + int (*)(const char *, int), glob_t * __restrict); void globfree(glob_t *); __END_DECLS ================================================================================ diff -u -r1.34 glob.3 --- lib/libc/gen/glob.3 15 Feb 2011 20:07:35 -0000 1.34 +++ lib/libc/gen/glob.3 24 Oct 2011 05:50:17 -0000 @@ -42,7 +42,7 @@ .Sh SYNOPSIS .In glob.h .Ft int -.Fn glob "const char *pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t *pglob" +.Fn glob "const char * restrict pattern" "int flags" "int (*errfunc)(const char *, int)" "glob_t * restrict pglob" .Ft void .Fn globfree "glob_t *pglob" .Sh DESCRIPTION >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-bugs@FreeBSD.ORG Mon Oct 24 11:09:20 2011 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 3032E106568D for ; Mon, 24 Oct 2011 11:09:20 +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 1C8B88FC0C for ; Mon, 24 Oct 2011 11:09:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9OB9KF3027142 for ; Mon, 24 Oct 2011 11:09:20 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9OB9Ij5027140 for freebsd-bugs@FreeBSD.org; Mon, 24 Oct 2011 11:09:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Oct 2011 11:09:18 GMT Message-Id: <201110241109.p9OB9Ij5027140@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, 24 Oct 2011 11:09:20 -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/161955 sunpoet [PATCH] www/p5-HTML-Selector-XPath: update to 0.11 f ports/161954 glarkin [PATCH] net/phpldapadmin: PHP Code Injection Vulnerabi o ports/161946 glewis [PATCH] java/openjdk7: install jars to generate zonein f ports/161943 wen [patch] lang/ucc: respect CC/CFLAGS, drop USE_GMAKE f ports/161941 sunpoet [PATCH] devel/p5-indirect: update to 0.26 o kern/161936 csjp [openbsm][patch] praudit can produce invalid XML outpu o ports/161922 [maintainer][patch] math/saga: cleanup unneeded helper f ports/161920 wen [PATCH] graphics/openjump: update to 1.4.2 f ports/161919 sunpoet [PATCH] net-p2p/p5-Net-DirectConnect: update to 0.11 o ports/161918 [patch] update math/R-cran-car from 2.0-10 to 2.0-11 o ports/161916 beat [patch] update deskutils/plasma-applet-cwp from 1.5.4 o ports/161914 lev [patch] devel/subversion: Correct checksum and expecte o kern/161912 [kernel] [patch] kernel sends incorrect notify to devc o ports/161911 ashish [patch] editors/emacs-devel: broken pthread_sigmask() o kern/161908 net [netgraph] [patch] ng_vlan update for QinQ support f ports/161907 glarkin [PATCH] databases/beansdb: fix typo in description o kern/161901 [cam] [patch] cam / ata timeout limited to 2147 due to o kern/161897 fs [zfs] [patch] zfs partition probing causing long delay o bin/161893 [patch] sshd(8) DenyUsers user@!*.dom doesn't work o kern/161886 [kerberos] [patch] der_xx_oid not declared before use f ports/161879 sunpoet [PATCH] textproc/p5-Text-VimColor: update to 0.14 o ports/161875 roam [PATCH] www/p5-WWW-Curl: update to 4.15 o ports/161871 multimedia [patch] multimedia/mjpegtools plist incorrect with QUI o ports/161870 jhay [PATCH] net/p5-Net-SMPP: update to 1.19 o gnu/161869 [binutils] [patch] breaks llvm bootstrap on FreeBSD 8. f ports/161865 zi [PATCH] sysutils/memtest: Update 4.2.2 f ports/161860 sunpoet [PATCH] devel/p5-AnyEvent-I3: update to 0.09 o kern/161854 [kerberos] [patch] _gsskrb5_pname_to_uid lname lookup f ports/161853 swills [PATCH] sysutils/rubygem-bundler: update to 1.0.21 o conf/161847 [patch] reaper of the dead: remove ancient devfs examp f ports/161845 [update] [patch] multimedia/mplayer-skins Bring in ups f ports/161844 [PATCH] graphics/geos: update to 3.3.1 o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o conf/161835 [patch] SVN-detection in sys/conf/newvers.sh fails wit f ports/161830 sunpoet [PATCH] net-mgmt/p5-Zenoss: update to 1.11 o ports/161823 zi [PATCH] www/joomla15: update to 1.5.24 o ports/161814 [patch] security update www/linux-opera to 11.52 o kern/161809 scsi [cam] [patch] set kern.cam.boot_delay via build option o bin/161807 fs [patch] add option for explicitly specifying metadata f ports/161806 sunpoet [PATCH] textproc/p5-PDF-Table: update to 0.9.5 o usb/161798 usb [patch] usbdevs / if_run.c modification f ports/161792 dinoex [PATCH] net/radiusd-cistron: add rc script o ports/161784 gnome [PATCH] editors/abiword: Fix build with gcc46 o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 f ports/161776 sunpoet [PATCH] www/p5-Mojolicious: update to 2.0 f ports/161766 pawel [PATCH] databases/cassandra: update to 0.8.7 p sparc/161764 marius [patch] Support dumping to Solaris swap partitions o ports/161763 sunpoet [PATCH] audio/icecast2: add favicon.ico o ports/161761 garga [PATCH] archivers/sharutils: fix gshar.1 gunshar.1 f bin/161756 jilles [patch] sh(1) /bin/sh: read files in 1024-byte chunks f ports/161732 swills [PATCH] www/rubygem-rack-cache: update to 1.1 f ports/161731 swills [PATCH] devel/rubygem-spruz: update to 0.2.13 f ports/161730 swills [PATCH] mail/rubygem-mail: update to 2.3.0 f ports/161729 swills [PATCH] www/rubygem-jquery-rails: update to 1.0.16 f ports/161728 swills [PATCH] databases/rubygem-dm-do-adapter: update to 1.2 f ports/161727 swills [PATCH] devel/rubygem-sprockets: update to 2.0.2 f ports/161726 swills [PATCH] net/rubygem-amqp-utils: update to 0.5.1 f ports/161725 swills [PATCH] sysutils/rubygem-bundler: update to 1.0.21 f ports/161716 glarkin [PATCH] math/py-matplotlib: fix build on 10-CURRENT o ports/161706 portmgr [patch] exp-run required for updating emacs-devel vers o ports/161696 [maintainer] [patch] java/jrosetta Update to 1.0.4 f ports/161684 sunpoet [PATCH] devel/p5-perlbrew: update to 0.30 o www/161672 gavin [patch] add support for 10.x to query-pr o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o ports/161567 gnome [PATCH] audio/pulseaudio: fix pkg-plist o ports/161564 python [patch] lang/python27: prune __wchar_t define from CFL o ports/161558 portmgr [bsd.port.mk] [patch] exp-run required for X11BASE rem f ports/161550 eadler [PATCH] unbreak lang/fasm o bin/161548 [patch] getent(1) inconsistent treatment of IPv6 host o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o ports/161545 danfe [patch] fix installing only server to games/openttd o ports/161525 marcus [PATCH] Fix plist for net/netatalk when using custom b f ports/161518 [patch] update/add devel/scons version 2.1.0 o bin/161510 [patch] newgrp(1) has a memory leak o ports/161502 stas [patch] lang/sbcl: allow bootstrapping on 10.0-CURRENT o gnu/161499 [libstdc++] [patch] Use FreeBSD's atomic.h if no cpu-s o arm/161498 arm [patch] ARM RAS code can fail to restart an atomic seq o ports/161495 portmgr [PATCH] typo: ${PKG_NAME} in bsd.port.mk o arm/161492 arm [patch] ARM thread-data/RAS page is not properly initi o ports/161484 miwi [PATCH] Upgrade devel/pear-PHP_Codesniffer from 1.2.1 o ports/161480 x11 [patch] x11/luit: don't depend on pty(4), use openpty( o bin/161475 [patch] man(1), treat pipe & files w/o slash f ports/161470 [patch] www/squid31 unintentionally picks up libmd5 as o ports/161457 yzlin [patch] devel/py-fabric: update from 1.0.2 to 1.2.2 o kern/161454 [i18n] [patch] because i18n/csmapper/Makefile.part bug o ports/161452 portmgr [kern.post.mk] [bsd.port.mk] [patch] make PORTS_MODULE f ports/161446 sunpoet [PATCH] www/p5-HTML-TreeBuilder-LibXML: update to 0.13 o ports/161444 stas [PATCH] lang/sbcl: update to 1.0.52.0 o ports/161421 gecko [patch] www/firefox: use libevent2 o ports/161417 portmgr [patch] Mk/bsd.port.mk: USE_ICONV, treat iconv() in li o ports/161413 joerg [patch] update devel/avrdude to 5.11 o ports/161412 joerg [patch] update devel/avr-libc to 1.7.1 f ports/161406 [PATCH] net-mgmt/netdisco: update to 1.1 o bin/161401 [patch] have service(8) run scripts with the same reso f ports/161378 sunpoet [PATCH] www/xapian-omega: update to 1.2.7 f ports/161376 sunpoet [PATCH] databases/p5-Search-Xapian: update to 1.2.7.0 f ports/161375 sunpoet [PATCH] databases/xapian-bindings: update to 1.2.7 f ports/161374 sunpoet [PATCH] databases/xapian-core: update to 1.2.7 o ports/161370 itetcu [PATCH] net-im/skype-devel: update to 2.2.0.35 o bin/161368 [netrate] [patch] IPv6 patches for netblast/netsend/ne f ports/161342 sunpoet [PATCH] databases/p5-Mysql-Diff: update to 0.42 o ports/161332 girgen [PATCH] databases/postgresql91-server: Update to 9.1.1 o ports/161331 girgen [PATCH] databases/postgresql90-server: Update to 9.0.5 o ports/161330 girgen [PATCH] databases/postgresql84-server: Update to 8.4.9 o ports/161329 girgen [PATCH] databases/postgresql83-server: Update to 8.3.1 o ports/161328 girgen [PATCH] databases/postgresql82-server: update to 8.2.2 o kern/161326 [build] [patch] cannot buildworld FreeBSD-9.0-BETA3 (R o ports/161319 lippe [PATCH] databases/mysqlsla: fix dependency o ports/161302 [patch] math/giacxcas update to 0.9.3 f ports/161295 perl [PATCH] mail/p5-SES: update to 1.01 o ports/161287 portmgr [PATCH] Mk/bsd.port.mk: fix check-already-installed ta o kern/161277 net [em] [patch] BMC cannot receive IPMI traffic after loa f ports/161271 [patch] x11/cl-clx: loading with clozure fails, dep-op o ports/161259 lippe [PATCH] databases/mysqlreport: fix dependency f ports/161244 [PATCH] audio/libmikmod: fix failed patching o ports/161192 gahr [patch] /graphics/gegl unneeded use of ruby o ports/161185 gnome [patch] Remove unnecessary graphics/cairo dependency f o misc/161175 [tools] [patch] uninitialized variables on some regres o ports/161172 beech [maintainer] [patch] net/ndisc6: add rc.d script for r o ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 f ports/161117 [patch] games/sl fix build under clang o kern/161091 [includes] [patch] Max username length is 16 character o ports/161087 lippe [patch] misc/ttyrec: don't depend on pty(4), use openp o bin/161028 [PATCH] service(8) -- Minor improvements o ports/161021 x11 [patch] x11/xkeyboard-config: orphaned dirs when WITHO f ports/161002 philip [patch] devel/lua-alien: update to 0.5.1 o ports/160996 swills [PATCH] devel/rubygem-devise: update to 1.4.7 f ports/160969 [patch] sysutils/zfs-snapshot-mgmt: embed ruby version o ports/160968 eadler [patch] ports/x11/libXi broken manpages o ports/160963 x11 [patch] x11/bigreqsproto: disable specs o conf/160960 [patch] /etc/rc.d/named o ports/160959 marcus [PATCH] ports-mgmt/portlint: add *FLAGS checks o ports/160951 tobez [PATCH] math/p5-Math-BigInt: remove conditional ExtUti o ports/160941 swills [PATCH] emulators/open-vm-tools: upgrade to release 20 o ports/160930 skreuzer [PATCH] devel/gdb: HW watchpoint support for amd64 o conf/160896 imp [nanobsd] [patch] use getopts, jobs option, delay -c u o conf/160892 [network.subr] [patch] add vboxnet[0-9]* to noafif lis o misc/160867 [tools] [patch] Swapped arguments in cap_test_capmode. o misc/160866 [tools] [patch] Swapped arguments in fifo_misc.c o conf/160848 dougb [patch] [periodic] 310.accounting ignore $daily_accoun o bin/160834 [patch] grep(1): fixes for POSIX conformance o ports/160824 [PATCH] net/rabbitmq-c-devel: Upgrade to changeset cbe o misc/160818 [patch] boot menu (/boot/menu.rc) clarity and readabil a ports/160816 roam [PATCH] security/stunnel: update to 4.44 o bin/160806 [patch] Swapped argumets in xlint(1) o ports/160798 philip [PATCH] games/wesnoth-devel: update to latest version o ports/160796 xfce [PATCH] Fix pkg-plist of x11/xfce4-conf p docs/160775 delphij [patch] provide a better example for passwordless gues o ports/160759 perl [PATCH] devel/p5-ExtUtils-MakeMaker: update to 6.59 s ports/160746 beech [PATCH] net/scribe: [Fix compile error with thrift 0.6 o ports/160714 [patch] misc/{py-,}xdelta3: update to 3.0.0 (stable re o ports/160686 skv [PATCH] www/p5-HTTP-BrowserDetect: update to 1.28 p bin/160678 mckusick [patch] dump(8) cannot do incremental backups when dev o ports/160672 sylvio [PATCH] devel/tclxml: fix dependencies s ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 f ports/160667 [patch] audio/xmmix: fix WARNING pid 4826 (xmmix): ioc o ports/160664 sylvio [patch] graphics/epdfview: depend on cups-client inste o ports/160661 johans [patch] comms/minicom: make lrzsz dependency optional o ports/160657 skreuzer [patch] devel/distcc: adding pump mode support to dist o misc/160646 [build] [patch] rework build of osreldate.h to not dep a ports/160643 sunpoet [PATCH] sysutils/createrepo: update to 0.9.9 f ports/160640 [patch] devel/php5-blitz new version f ports/160626 [patch] www/py-rssdler: deprecate in favor of www/py-f o bin/160596 [patch] tzsetup(8): Use libodialog when doing tzsetup o ports/160593 mm [PATCH]devel/libevent2: respect USE/WITH_OPENSSL_PORT f ports/160579 eadler [PATCH] audio/firefly: portlint(1) fixes and more o kern/160562 geom [geom][patch] Allow to insert new component to geom_ra o ports/160547 demon [PATCH] devel/p5-Locale-gettext: follow Perl module na o kern/160541 virtualization[vimage][pf][patch] panic: userret: Returning on td 0x f ports/160539 [PATCH] security/botan: update to 1.10.1 o misc/160530 imp [nanobsd] [patch] remove hardcoding of slice names o ports/160528 miwi [patch] shells/mksh: update /etc/shells on deinstall f ports/160511 [PATCH] make math/py-graphtool actually work o ports/160507 gerald [PATCH] bsd.gcc.mk: prefer the default version of gcc o kern/160496 virtualization[pf] [patch] kernel panic with pf + VIMAGE o bin/160494 [patch] bsnmpd(1) returns inaccurate data for hrSystem o ports/160492 stas [patch] lang/ocaml: respect CC o docs/160491 doc [patch] reaper of the dead: remove ancient FAQ entries o ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn o ports/160482 nivit [PATCH] misc/py-yolk: eliminate py-elementtree depende o misc/160463 [build] [patch] fix build dependency for dtrace module o kern/160443 imp [nanobsd] [patch] make nanobsd builds deterministic an o bin/160433 [patch] syslogd(8) receiver buffer sizes set incorrect o bin/160432 [patch] newsyslog(8): Allow both size and at-time spec o arm/160431 arm [patch] Disable interrupts during busdma cache sync op p kern/160430 kientzle [libarchive] [patch] Add __packed to libarchive cpio m o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo f ports/160397 gahr [patch] sysutils/createrepo -- missing dependencies + o ports/160395 flz [PATCH] devel/rbtools: depend on simplejson conditiona o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o bin/160386 [patch] invert Z axis movement via moused(8) o conf/160373 [pccard] [patch] pccard_ether does not take settings i s docs/160369 gjb [patch] update sample simple makefile with new convent o ports/160323 [PATCH] japanese/p5-Mail-SpamAssassin. fix sa-update, o usb/160301 usb [patch] missing device usb and device ucom entries in o bin/160295 [patch] ypserv(8): ypserv -P [bin/109494] breaks tcp o kern/160294 [headers] [patch] missing cast in "/usr/include/assert o kern/160283 fs [zfs] [patch] 'zfs list' does abort in make_dataset_ha a bin/160280 [patch] tcpdump(1): Segmentation Fault (core dumped) a ports/160277 kde [PATCH] databases/akonadi: Make MySQL dependency optio o bin/160275 [patch] dtrace(1): dtrace -lv causes "unknown function o ports/160273 flo [patch] Fix distfile sources for port net/AquaGatekeep o ports/160272 flo [PATCH] unbreak port net/AquaGatekeeper o ports/160271 skv [PATCH] devel/thrift: fix compile error with fb303, pa o ports/160270 delphij [PATCH] net/openldap24-server: Support new BDB_VERSION o docs/160269 doc [patch] Handbook wireless section: sand off some rough f ports/160257 [patch] mail/ssmtp: pkg-message needs further descript o conf/160235 [syscons] [patch] Spanish Dvorak keyboard f ports/160233 [patch][update] devel/pinba_engine Update to new revis o ports/160223 miwi [PATCH] major memory leak in graphics/ristretto o ports/160205 skv [PATCH] sysutils/hyperic-sigar: update to 1.6.4 o ports/160195 swills [patch][maintainer-update] security/rubygem-bcrypt-rub o ports/160189 lippe [PATCH] textproc/p5-Excel-Template: update to 0.33 o ports/160036 dhn [PATCH]x11-wm/i3 update to v4.0.1 f ports/160034 delphij [PATCH] net/istgt: Don't enforce run before mountcritr o ports/160031 [PATCH] devel/yajl add yajl.pc o ports/160010 portmgr [patch] Mk/bsd.port.mk: cleanup orig files in post-pat o ports/159970 portmgr [PATCH] bsd.port.mk Deprecate using PATCHDIR and use F o ports/159962 python [PATCH] Mk/bsd.python.mk: prevent polluting filesystem f ports/159951 [patch] www/woof to support Python 2.7 o ports/159947 vd [patch] databases/gnats4 set default index type to pla o ports/159946 portmgr [PATCH] [bsd.port.mk] Add support for make search lice o ports/159939 skv [patch] lang/perl5.10 to address build failure in ext/ a ports/159926 eadler [PATCH] lang/py-prolog: some cleanup f ports/159917 bf [PATCH]math/scilab: fix buld with lang/gcc46, blas/lap o ports/159902 skv [patch][update] devel/thrift Update to 0.7.0 & FIX: bu o docs/159898 doc [patch] libusb.3 whitespace, markup, grammar fixes o docs/159897 doc [handbook] [patch] improve HAST section of Handbook f ports/159874 [patch] sysutils/zfs-snapshot-mgmt: respect local time o ports/159871 johans [PATCH] chinese/zh-tin: update to 1.9.6 o ports/159863 johans [patch] chinese/tin with tin 1.9.6 o docs/159854 doc [patch] grammar updates for carp.4 p usb/159836 hselasky [patch] [uhso] Add support for Option GlobeTrotter Max o bin/159833 camcontrol(8): [patch] add ATA security options to cam f ports/159821 [patch] www/squid31: dnsserver does not build o ports/159812 apache [PATCH] www/apache20,www/apache22 Strip Binaries o ports/159811 daichi [PATCH] Update japanese/mozc-server to new version o ports/159792 x11 [patch] USB HID devices support for x11-drivers/xf86-i o kern/159780 jonathan [kernel] [patch] make sys/vfs_subr.c more jail-friendl o bin/159746 [patch] cat(1) - incorrect output on fstat() failure o kern/159745 [libssh] [patch] Fix improperly specified dependency l o bin/159665 [patch] ctm(1) does not work with bzip2 or xz compress o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator o ports/159636 [patch] net/freevrrpd: RC script for freevrrpd that co p www/159634 gjb [patch] add Javascriptt o conf/159625 [PATCH] replace hardcoded /usr/local with a variable i o ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ o usb/159611 usb [PATCH] USB stick extrememory Snippy needs quirks o kern/159603 net [netinet] [patch] in_ifscrubprefix() - network route c p kern/159602 qingli [netinet] [patch] arp_ifscrub() is called even if IFF_ o kern/159601 net [netinet] [patch] in_scrubprefix() - loopback route re o bin/159568 [patch] allow daemon(8) to write pid file in /var/run o docs/159551 doc [patch] ports(7) makes no mention of LOCALBASE f ports/159535 mi [patch] add support for building www/websh with EAPI s f ports/159516 [patch] Port comms/mlan3 update to 310r2 version f ports/159409 [PATCH] devel/py-boto: update to 2.0 o kern/159356 fs [zfs] [patch] ZFS NAME_ERR_DISKLIKE check is Solaris-s o kern/159355 [kernel] [patch] unp_gc in 8.2 is once again being ove o bin/159352 [libc] [patch] accidental busy-waiting loop in fetch(3 o kern/159351 fs [nfs] [patch] - divide by zero in mountnfs() o docs/159307 doc [patch] lpd smm chapter unconditionally installed o kern/159284 [ata] [patch] Update ATA command-to-string definitions o kern/159281 [linprocfs] [patch] Linux-like /proc/swaps for linproc o conf/159280 [syscons] [patch] Improve utf-8 -> cp437 console map o kern/159279 [headers] [patch] __FreeBSD_cc_version in includes o kern/158376 [udf] [patch] The UDF file system under counts the num o bin/158363 [patch] partial restore problem in restore(8) o ports/158362 sem sysutils/grub [patch] allow GRUB to boot FreeBSD from o kern/158358 [loader] [patch] allow /boot/loader to work from an MB o kern/158351 [cam] [patch] missing #includes in p kern/158339 pjd [rpc] [patch] replay_alloc() could dereference a null o ports/158204 [PATCH] java/jde: update to 2.4.0.1 o conf/158171 jpaetzel [patch] Modify rc scripts for ftp-proxy and pflog to s o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o bin/158125 [patch] whois(1) takes too long to move to next addres o kern/158086 [digi] [patch] Update digi(4) to work with TTYng f ports/158058 culot [PATCH] lang/elk: update to 3.99.8 o ports/158054 matusita [PATCH] japanese/ja-skk-jisyo: update to 201106 o kern/157946 [patch] 'BSM conversion requested for unknown event' g o ports/157917 skv [PATCH] sysutils/pmap: multiple build problems o conf/157903 [devd.conf] [patch] automated kldload for USB class de f ports/157873 edwin [PATCH] net/dhcprelay: rc.d script does not work o ports/157852 portmgr [patch] Mk/bsd.svn.mk new framework for ports dependin o gnu/157755 [patch] gdb(1) hardware watchpoints do not work correc o docs/157698 doc [patch] gpart(8) man page contains old/incorrect size o ports/157690 portmgr [PATCH] bsd.port.mk: create patch in PATCHDIR instead p kern/157670 bz [patch] IPv6 in IPsec packets always get passed to pfi p bin/157663 dchagin [patch] kdump(1) gets ptrace args wrong o ports/157559 crees [PATCH] Fix port: databases/postgresql82-server should o ports/157558 crees [PATCH] Fix port databases/postgresql83-server should o ports/157546 portmgr [PATCH] Add feature to bsd.port.mk: Warn on deinstall o bin/157543 portmgr [patch] pkg_add(1) fails to install with -C from bad p o misc/157533 imp [nanobsd][patch] save_cfg improvements o conf/157466 [patch] add src to create /usr/share/calendar/calendar o docs/157453 doc [patch] document 16-fib cap in setfib.2 o docs/157452 doc [patch] grammar and style nits in ipfw.8 o ports/157369 stas [PATCH] x11-toolkits/ocaml-lablgtk2: add an option for o bin/157351 [patch] fsdb(8): Add some ports names to See Also for o docs/157337 doc [handbook] [patch] Indentation changes to network serv o docs/157316 doc [patch] update devstat(9) man page o docs/157234 doc [patch] nullfs(5): //proc/curproc/file returns "unknow o kern/157209 net [ip6] [patch] locking error in rip6_input() (sys/netin o ports/157207 skv [PATCH] textproc/p5-XML-LibXML: package scripts should a ports/157206 roam [PATCH] mail/vpopmail{,-devel}: use USERs/GROUPs and . o kern/157200 net [network.subr] [patch] stf(4) can not communicate betw o ports/157128 portmgr [PATCH] Mk/bsd.port.mk: add hast user to USERS_BLACKLI o bin/157104 [patch] ntpd(8) with -DDISABLE_IPV6 gives a lot of err o kern/157070 gonzo [gpio] [patch] Improve API description in gpio_if.m o ports/157045 skv [patch] devel/p5-Devel-Leak: sv_dump() fix o gnu/157025 [patch] gcc(1): gcc Bug 28796 - __builtin_nan() and __ o ports/156921 jkim [patch] www/nspluginwrapper-devel: respect STRIP o ports/156901 kde [patch] devel/cmake breaks with CC containing spaces f ports/156897 edwin [PATCH] net/freenet6: update pkg-message o docs/156853 bcr [patch] Update docs: jail(8) security issues with worl o misc/156817 [build] [patch] WITHOUT_CDDL and NO_CTF ignored if WIT o kern/156770 ipfw [ipfw] [dummynet] [patch]: performance improvement and o kern/156769 [netisr] [patch] netisr: SMP patch for 7.x and 6.x o bin/156768 [patch] sockstat(1): missing spaces between long field o ports/156759 python [patch] lang/python: kevent does not accept KQ_NOTE_EX p kern/156743 thompsa [lagg] [patch] if_lagg should not treat vlan-tagged fr o bin/156703 [patch] find(1) ignores whiteouts even with '-type w' f ports/156687 mi [PATCH] graphics/libmng: misc improvements o ports/156674 java [PATCH] java/openjdk6: make x11-fonts/dejavu a build d o conf/156659 [patch] periodic/daily/800.scrub-zfs fails on pool nam o kern/156637 [headers] [patch] sys/types.h can't be included when _ o ports/156629 [patch] sysutils/puppet patch to use PACKAGEROOT inste o kern/156567 [kqueue] [patch] Add EV_CLEAR to AIO events in kqueue o ports/156528 fluffy [PATCH] textproc/wv2: remove useless depends on gmake o ports/156527 fluffy [PATCH] multimedia/gstreamer-qt4: remove depends on gm o kern/156513 scottl [aic7xxx] [patch] missing check of scb. o arm/156496 arm [patch] Minor bugfixes and enhancements to mmc and mmc o kern/156481 [kernel] [patch] kernel incorrectly reports PPS jitter p kern/156433 avg [sound] [patch] OSS4/VPC is broken on 64-bit platforms o kern/156423 [kqueue] [patch] Please add kqueue support for /dev/kl o ports/156386 danfe [patch] x11/nvidia-driver: EnableMSI doesn't work f ports/156376 [PATCH] graphics/optipng: update to 0.6.5 o kern/156358 jkim [patch] make amdtemp.c compatible with Llano/Brazos pl o kern/156352 [kernel] [patch] misleading "maxproc limit exceeded by o ports/156319 java [patch] java/openjdk6 does not compile with previous l o kern/156283 net [ip6] [patch] nd6_ns_input - rtalloc_mpath does not re o ports/156253 makc [exp-run] [patch] Update devel/boost-* from 1.45 to 1. o ports/156251 apache [PATCH] Enable module by default for www/mod_fastcgi o kern/156245 [heimdal] [patch] heimdal 1.1 broken in 8-stable and 8 f docs/156187 doc [handbook] [patch] Add bsnmpd to handbook o kern/156137 [syscons] [patch] support for vi mode keys in scrollba o kern/156130 [kernel] [patch] hints read: resource_longlong_value a o ports/156076 python [patch] databases/py-sqlite3: Undefined symbol "sqlite o ports/156015 sem [PATCH] dns/unbound add MUNIN-plugin o docs/155989 doc [patch] Fix offset in boot.config(5) o ports/155970 python [PATCH] lang/python: speed up upgrade-site-packages o ports/155967 java [bsd.java.mk] [patch] javavm wrapper insists on diablo o ports/155896 adrian [PATCH] sysutils/mkfwimage: use LOCAL as MASTER_SITES o arm/155894 arm [patch] Enable at91 booting from SDHC (high capacity) o bin/155786 [patch] test(1): '/bin/test -d' fails to report syntax o misc/155765 jail [patch] `buildworld' does not honors WITHOUT_JAIL o conf/155738 portmgr [patch] reaper of the dead: time to BURN_BRIDGES and r o conf/155737 portmgr [patch] reaper of the dead: remove OBJFORMAT variable o ports/155696 x11 [patch] x11-servers/xorg-server: chase AIGLX altered d o ports/155683 x11 x11/xdm [patch] Enabling IPv6 support breaks IPv4 o usb/155663 usb [usbdevs] [patch] Add support for Supertop Nano 1GB US o kern/155658 [amr] [patch] amr_ioctl(): call of malloc() causes mem o ports/155649 bf [PATCH] math/atlas-devel: Add OPTIONS for STATICLIB an o bin/155567 [patch] cvs(1): add -r tag:date to CVS o ports/155526 python [PATCH] devel/py-elementtree: ignore if python >= 2.5 o ports/155524 nivit [PATCH] devel/py-celementtree: ignore if python >= 2.5 o ports/155511 miwi [patch] remove obsolete version check for csup/cvsup f o usb/155496 usb [usb][patch] support BUFFALO WLI-U2-SG54HG wireless o kern/155491 [sysctl][patch] Document some sys/dev/md sysctls o kern/155490 [sysctl][patch] Document some sys/vm sysctls o kern/155489 [sysctl][patch] Document some sys/kern sysctls o kern/155441 [loader] [patch] Firewire support in loader is broken o kern/155439 [libkvm] [patch] Spurious error message kvm_nlist: No f ports/155408 portmgr [PATCH] add support for USE_GCC_BUILD to bsd.port.mk f ports/155404 dinoex [PATCH] mail/mutt-devel: doesn't build in presence of o bin/155374 [patch] grdc(6) timing loop still broken o kern/155370 [libpcap] [patch] description string is broken o bin/155365 net [patch] routed(8): if.c in routed fails to compile if o kern/155353 xen [xen] [patch] put "nudging TOD" message under boot_ver o ports/155329 skv [PATCH] net-im/p5-DJabberd: update to 0.84 o gnu/155309 [PATCH] gcc: backport bswap32() and bswap64() o arm/155214 arm [patch] MMC/SD IO slow on Atmel ARM with modern large o ports/155201 portmgr [PATCH]bsd.port.mk: fix portion of CONFIGURE_ENV added o bin/155163 trasz [patch] Add Recursive Functionality to setfacl o docs/155149 doc [patch] don't encourage using xorg.conf outside of PRE o conf/155148 [patch] mark /usr/local as nochange in mtree o conf/155147 [patch] remove /etc/X11 from mtree o bin/155104 fs [zfs][patch] use /dev prefix by default when importing o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/154988 des [libfetch] [patch] lib/libfetch/ftp.c add LIST feature o bin/154954 adrian [patch] csup(1) in the CVS mode terminates before it o ports/154951 girgen [patch] databases/postgresql-jdbc: update to 9.0.801 o kern/154915 [libc] [patch] Force stdio output streams to line-buff o kern/154850 net [netgraph] [patch] ng_ether fails to name nodes when t o ports/154809 [PATCH] ports-mgmt/porttools should include PORTREVISI o ports/154770 portmgr [patch][regression] Mk/bsd.port.mk: do-fetch fails on o usb/154753 usb [usbdevs] [patch] Support for Qualcomm USB modem/stora o ports/154651 x11 [PATCH] graphics/dri: make it possible to choose which o kern/154597 [pam] [patch] pam_passwdqc incorrectly tells the user o bin/154570 [patch] gvinum(8) can't be built as part of the kernel o conf/154554 rc [rc.d] [patch] statd and lockd fail to start f ports/154510 x11 [patch] x11/xorg: xorg servers have Motif-crippling bu o conf/154484 [patch] request for new functionality. jail zfs datase o ports/154456 doceng [PATCH] update textproc/docproj to use newer tidy a ports/154455 roam [patch] security/stunnel: add aloha sendproxy support o gnu/154445 [patch] gcc(1): Attempt to "fix" gcc -ftree-vrp f ports/154431 sobomax [patch] ports/Tools/scripts: python scripts use bad sh p bin/154407 kientzle [patch] tar(1) ignores error codes from read() just si o ports/154352 stas [patch] multimedia/xmms: update using desktop and mime f ports/154288 glewis [patch] games/nethack*: remove old ports and cleanup l o kern/154287 [kernel] [patch] Avoid malloc(0) implementation depend f ports/154254 rene [patch] asmail imap login broken with gmail at al. o conf/154246 jail [jail] [patch] Bad symlink created if devfs mount poin o ports/154241 philip [patch] games/wesnoth: move USE_* under bsd.port.optio f ports/154209 python [PATCH] lang/python: Install symlink for ptags o conf/154062 net [vlan] [patch] change to way of auto-generatation of v o bin/154042 [patch] fix several rtprio(1) issues o bin/153993 portmgr [patch] pkg_create(1): have libpkg report which packag o kern/153936 net [ixgbe] [patch] MPRC workaround incorrectly applied to o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with o ports/153810 [PATCH] Fix usb_interrupt_read() in devel/libusb for f o bin/153801 [patch] btxld(8) produces incorrect ELF binaries f ports/153776 rea [patch] multimedia/mplayer - disabling RTCPU on non-{i o kern/153772 net [ixgbe] [patch] sysctls reference wrong XON/XOFF varia o ports/153744 autotools [patch] devel/autoconf: clean error: Permission denied o docs/153738 doc [patch] Docuement requirement to alter some sysctls wh o bin/153731 [patch] ifconfig(8): ifconfig prints trailing whitespa o kern/153695 fs [patch] [zfs] Booting from zpool created on 4k-sector o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o bin/153619 [patch] csup(1): prevent infinite cycle on empty ",v" o usb/153599 usb [usbdevs] [patch] Feiya Elango USB MicroSD reader sync o ports/153578 doceng [patch] textproc/docproj-nojadetex: JadeTeX included w o ports/153573 tabthorpe [patch] ports/Mk bsd.license.mk honor pkg_add -p/-P o ports/153567 acm [PATCH] x11/fpc-x11: doesn't respect localbase o conf/153543 [periodic] [patch] Allow periodic to read periodic.con o ports/153541 wxs [patch] devel/git: respect STRIP for stripping o bin/153527 [patch] wake(8) should use sysexits.h o kern/153459 [kbdmux][patch] add option to specify built-in keymap o kern/153454 net [patch] [wlan] [urtw] Support ad-hoc and hostap modes f ports/153437 rene [patch] emulators/dgen-sdl: mark BROKEN on non-i386 ar o ports/153429 eadler [patch] Fix explicite uses of unzip in ports o bin/153426 [patch] fsck_msdosfs(8) only works with sector size 51 o bin/153276 [patch] uudecode(1) error message is incorrect o bin/153258 fs [patch][zfs] creating ZVOLs requires `refreservation' o bin/153257 [libc] [patch] regex(3): Add support for \< and \> wor o bin/153252 ipfw [ipfw][patch] ipfw lockdown system in subsequent call o conf/153233 [patch] skel/dot.shrc: use prompt escapes, comment out f ports/153231 ohauer [PATCH] net-mgmt/nrpe2 enable ssl by default o bin/153206 [patch] netstat(1): "netstat -sz" doesn't reset any IP o misc/153157 [build] [patch] Add support for generating userland de o conf/153155 hrs [PATCH] [8.2-BETA1] ipfw rules fail to load cleanly on o bin/153154 kientzle [patch][libarchive] fix error handling in mtree parsin o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o bin/153052 [patch] watch(8) breaks tty on error a docs/153012 doc [patch] iostat(8) requires an argument to -c option o ports/152982 [patch] net/nss_ldap, ignore option nss_initgroups_ign o bin/152934 delphij [patch] Enhancements to printf(1) o bin/152928 hrs [patch] rtadvd(8) don't send RA on i/f that's down o ports/152901 mnag [patch] databases/pecl-sqlite Cleanup/Fixes o ports/152871 portmgr [patch] Request for exp-run and comment w/rt MACHINE_A o bin/152856 cperciva [patch] allow up to be used instead of update in freeb o ports/152847 clsung [patch] port/buildbot-slave could use a startup script o ports/152838 yzlin [PATCH] www/suphp: Add support for lighttpd f ports/152820 bapt [patch] shells/zsh: correct memory report for time bui f ports/152804 portmgr [patch] Add USE_SRC and ONLY_FOR_*VER to bsd.port.mk o kern/152792 [acpica] [patch] move temperature conversion macros to o bin/152738 [patch] vmstat(8), printhdr() doesn't work correctly w s ports/152547 dougb [PATCH] ports-mgmt/portmaster: support .txz and .tgz p f ports/152537 girgen [patch] database/postgresql90-server no longer needs p p kern/152488 fs [tmpfs] [patch] mtime of file updated when only inode o kern/152485 [patch] null(4)/zero(4): /dev/null seek offset is not o conf/152465 simon [jail] [patch] devfs is mounted in jails without rules o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us p ports/152262 office [patch] editors/openoffice.org-3 o kern/152253 [digi] [patch] Enhancements to digi(4) to prevent inte o kern/152250 scsi [ciss] [patch] Kernel panic when hw.ciss.expose_hidden o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu o kern/152232 [syscons] [patch] syscons VGA screensavers don't work o ports/152224 python [patch] fix installed permissions for lang/python27 s ports/152195 [PATCH] deskutils/pinot update to xapian-core 1.2.3 o ports/152194 brix [PATCH] www/xapian-omega update to 1.2.3 o ports/152193 perl