Re: bin/159558: bsdinstall(8): Installer doesn't configure WPA2-PSK network correctly

2011-09-17 Thread nwhitehorn
Synopsis: bsdinstall(8): Installer doesn't configure WPA2-PSK network correctly

State-Changed-From-To: open->closed
State-Changed-By: nwhitehorn
State-Changed-When: Sat Sep 17 07:45:39 UTC 2011
State-Changed-Why: 
Fixed in r225612. Thanks for the report!

http://www.freebsd.org/cgi/query-pr.cgi?pr=159558
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: bin/159583: commit references a PR

2011-09-17 Thread dfilter service
The following reply was made to PR bin/159583; it has been noted by GNATS.

From: dfil...@freebsd.org (dfilter service)
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: bin/159583: commit references a PR
Date: Sat, 17 Sep 2011 09:25:54 + (UTC)

 Author: nwhitehorn
 Date: Sat Sep 17 09:25:45 2011
 New Revision: 225637
 URL: http://svn.freebsd.org/changeset/base/225637
 
 Log:
   Inquire about terminal type if starting from a serial console and do
   not configure the host's networking if netbooted [1]. Also fix FTP
   installations behind some firewalls [2].
   
   PR:  bin/159583 [2]
   Reported by: stas [1]
   Approved by: re (kib)
 
 Modified:
   head/release/rc.local
   head/usr.sbin/bsdinstall/scripts/auto
 
 Modified: head/release/rc.local
 ==
 --- head/release/rc.local  Sat Sep 17 08:54:23 2011(r225636)
 +++ head/release/rc.local  Sat Sep 17 09:25:45 2011(r225637)
 @@ -8,13 +8,37 @@
  : ${DIALOG_ITEM_HELP=4}
  : ${DIALOG_ESC=255}
  
 -TERM=xterm; export TERM # XXX: serial consoles
 +kbdcontrol -d >/dev/null 2>&1
 +if [ $? -eq 0 ]; then
 +  # Syscons: use xterm
 +  TERM=xterm
 +else
 +  # Serial or other console
 +  echo
 +  echo "Welcome to FreeBSD!"
 +  echo
 +  echo "Please choose the appropriate terminal type for your system."
 +  echo "Common console types are:"
 +  echo "   ansi Standard ANSI terminal"
 +  echo "   vt100VT100 or compatible terminal"
 +  echo "   xtermxterm terminal emulator (or compatible)"
 +  echo
 +  echo -n "Console type [vt100]: "
 +  read TERM
 +  TERM=${TERM:-vt100}
 +fi
 +export TERM
  
  dialog --backtitle "FreeBSD Installer" --title "Welcome" --extra-button 
--extra-label "Shell" --ok-label "Install" --cancel-label "Live CD" --yesno 
"Welcome to FreeBSD! Would you like to begin an installation or use the live 
CD?" 0 0
  
  case $? in
  $DIALOG_OK)   # Install
 -  BSDINSTALL_CONFIGCURRENT=yes; export BSDINSTALL_CONFIGCURRENT
 +  # If not netbooting, have the installer configure the network
 +  dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
 +  if [ ${dlv:=0} -eq 0 -a ! -f /etc/diskless ]; then
 +  BSDINSTALL_CONFIGCURRENT=yes; export BSDINSTALL_CONFIGCURRENT
 +  fi
 +
trap true SIGINT# Ignore cntrl-C here
bsdinstall
if [ $? -eq 0 ]; then
 
 Modified: head/usr.sbin/bsdinstall/scripts/auto
 ==
 --- head/usr.sbin/bsdinstall/scripts/auto  Sat Sep 17 08:54:23 2011
(r225636)
 +++ head/usr.sbin/bsdinstall/scripts/auto  Sat Sep 17 09:25:45 2011
(r225637)
 @@ -35,7 +35,7 @@ error() {
--no-label "Exit" --yes-label "Restart" --yesno \
"An installation step has been aborted. Would you like to restart 
the installation or exit the installer?" 0 0
if [ $? -ne 0 ]; then
 -  exit
 +  exit 1
else
exec $0
fi
 @@ -128,14 +128,12 @@ if [ ! -z "$FETCH_DISTRIBUTIONS" ]; then
if [ -d $BSDINSTALL_DISTDIR ]; then
DISTDIR_IS_UNIONFS=1
mount_nullfs -o union "$BSDINSTALL_FETCHDEST" 
"$BSDINSTALL_DISTDIR"
 -  fi
 -
 -  # Otherwise, fetch everything
 -  if [ $? -ne 0 ]; then
 -  export DISTRIBUTIONS="$ALL_DISTRIBUTIONS"
 +  else
 +  export DISTRIBUTIONS="MANIFEST $ALL_DISTRIBUTIONS"
export BSDINSTALL_DISTDIR="$BSDINSTALL_FETCHDEST"
fi

 +  export FTP_PASSIVE_MODE=YES
bsdinstall distfetch || error
export DISTRIBUTIONS="$ALL_DISTRIBUTIONS"
  fi
 ___
 svn-src-...@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"
 
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: bin/159583: bsdinstall(8): Command unrecognized during FTP installation

2011-09-17 Thread nwhitehorn
Synopsis: bsdinstall(8): Command unrecognized during FTP installation

State-Changed-From-To: open->closed
State-Changed-By: nwhitehorn
State-Changed-When: Sat Sep 17 20:07:31 UTC 2011
State-Changed-Why: 
Fixed in r225637. Thanks for the report!

http://www.freebsd.org/cgi/query-pr.cgi?pr=159583
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


kern/160790: panic: VPUTX: negative ref count with FUSE

2011-09-17 Thread Allen Landsidel

>Number: 160790
>Category:   kern
>Synopsis:   panic: VPUTX: negative ref count with FUSE
>Confidential:   no
>Severity:   critical
>Priority:   low
>Responsible:freebsd-bugs
>State:  open
>Quarter:
>Keywords:   
>Date-Required:
>Class:  sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Sep 17 20:30:10 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator: Allen Landsidel
>Release:8.2-STABLE
>Organization:
>Environment:
FreeBSD is01 8.2-STABLE FreeBSD 8.2-STABLE #0: Thu Sep 15 15:30:52 EDT 2011 
root@:/usr/obj/usr/src/sys/GENERIC  amd64
>Description:
Unexpected panic from nowhere.  Had been storing files with MooseFS at 10-20 
mbit/sec for several hours when all connections to machine were lost.  A visit 
to the console showed a panic.

System did not automatically reboot after the panic, hard reset was required.

May be related to / dupe of 
http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/156797 though ZFS was not 
involved.

Full panic is:

vputx: negative ref count
0xff01573bf1d8: tag fuse, type VREC
usecount 0, writecount 0, refcount 0 mountedhere 0
flags (VI_FREE)
  VI_LOCKed  lock type fuse: UNLOCKED
nodeid: 0, parent_nid: 38125, fh_counter: 0, nlookup: 1, flags: 0
panic: vputx: negative ref cnt
cpuid = 3
KDB: stack backtrace:
#0 0x805fdda0 at kdb_backtrace+0x60
#1 0x805cbbd4 at panic_0x1b4
#2 0x8065e211 at vputx+0x101
#3 0x8065e40e at vput+0xe
#4 0x80660c50 at kern_statat_vnhook+0x100
#5 0x80660d95 at kern_statat+0x15
#6 0x80660dbc at kern_lstat+0x1c
#7 0x80660e5d at lstat+0x2d
#8 0x8060abde at syscallenter+0x2fe
#9 0x808bd961 at syscall+0x41
#10 0x808a5ed2 at Xfast_syscall+0xe2
Uptime: 2h47m36s
Cannot dump. Device not defined or unavailable.
Automatic reboot in 15 seconds - press a key on the console to abort
>How-To-Repeat:
Exact steps are unknown.  The system had been up running apache and MooseFS (a 
FUSE based distributed filesystem) for several hours before the panic.  Apache 
only used to serve images via the mounted FUSE filesystem.
>Fix:


>Release-Note:
>Audit-Trail:
>Unformatted:
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


misc/160798: [PATCH] games/wesnoth-devel: update to latest version

2011-09-17 Thread Mikhail T.

>Number: 160798
>Category:   misc
>Synopsis:   [PATCH] games/wesnoth-devel: update to latest version
>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:   Sat Sep 17 21:50:06 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator: Mikhail T.
>Release:
>Organization:
>Environment:
>Description:
- Update to 1.9.9
- use EXTRACT_DEPENDS instead of RUN_DEPENDS for x11-fonts/junicode
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: Makefile
===
RCS file: /home/ncvs/ports/games/wesnoth-devel/Makefile,v
retrieving revision 1.99
diff -u -r1.99 Makefile
--- Makefile11 Aug 2011 19:19:25 -  1.99
+++ Makefile17 Sep 2011 19:39:09 -
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=  wesnoth
-PORTVERSION=   1.9.7
+PORTVERSION=   1.9.9
 CATEGORIES=games
 MASTER_SITES=  SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
http://files.wesnoth.org/
@@ -15,10 +15,8 @@
 MAINTAINER=phi...@freebsd.org
 COMMENT=   A fantasy turn-based strategy game
 
+EXTRACT_DEPENDS=   ${NONEXISTENT}:${PORTSDIR}/x11-fonts/junicode:extract
 LIB_DEPENDS=   boost_thread.4:${PORTSDIR}/devel/boost-libs
-RUN_DEPENDS=   ${NONEXISTENT}:${PORTSDIR}/x11-fonts/junicode:extract
-
-BROKEN=incomplete plist
 
 LICENSE=   GPLv2 GPLv3
 LICENSE_COMB=  dual
@@ -27,7 +25,7 @@
 CONFLICTS= wesnoth-[0-9]*
 
 USE_SDL=   image mixer net ttf
-USE_GNOME= pango
+USE_GNOME= pango desktopfileutils
 MAKE_JOBS_SAFE=yes
 USE_BZIP2= yes
 USE_CMAKE= yes
@@ -97,9 +95,17 @@
 .else
 CMAKE_ARGS+=   -DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale
 USE_GETTEXT=   yes
-MANLANG=   "" cs de en_GB et fi fr gl hu id it ja lt pl pt_BR sk \
-   sr sr@ijekavian sr@ijekavianlatin sr@latin zh_CN zh_TW
+MANLANG=   "" cs de en_GB et fr gl hu id lt pl sk \
+   zh_CN zh_TW
 _MANPAGES+=${PREFIX}/man/es/man6/wesnothd.6 \
+   ${PREFIX}/man/fi/man6/wesnothd.6 \
+   ${PREFIX}/man/it/man6/wesnothd.6 \
+   ${PREFIX}/man/ja/man6/wesnothd.6 \
+   ${PREFIX}/man/pt_BR/man6/wesnothd.6 \
+   ${PREFIX}/man/sr/man6/wesnothd.6 \
+   ${PREFIX}/man/sr@ijekavian/man6/wesnothd.6 \
+   ${PREFIX}/man/sr@ijekavianlatin/man6/wesnothd.6 \
+   ${PREFIX}/man/sr@latin/man6/wesnothd.6 \
${PREFIX}/man/tr/man6/wesnothd.6
 PLIST_SUB+=NLS=""
 .endif
Index: distinfo
===
RCS file: /home/ncvs/ports/games/wesnoth-devel/distinfo,v
retrieving revision 1.61
diff -u -r1.61 distinfo
--- distinfo21 Jun 2011 09:18:38 -  1.61
+++ distinfo17 Sep 2011 19:39:09 -
@@ -1,2 +1,2 @@
-SHA256 (wesnoth-1.9.7.tar.bz2) = 
ced4a5f88d650a97e547dfec153c89da04c565b2d705ef0920dbc000338f4492
-SIZE (wesnoth-1.9.7.tar.bz2) = 338021134
+SHA256 (wesnoth-1.9.9.tar.bz2) = 
271cc410d43d56e3f5ee10252a2e1b434c8b42322df619a1d979dbf486d9ab71
+SIZE (wesnoth-1.9.9.tar.bz2) = 340588943
Index: pkg-plist
===
RCS file: /home/ncvs/ports/games/wesnoth-devel/pkg-plist,v
retrieving revision 1.64
diff -u -r1.64 pkg-plist
--- pkg-plist   21 Jun 2011 09:18:38 -  1.64
+++ pkg-plist   17 Sep 2011 19:39:09 -
@@ -2,6 +2,8 @@
 %%TOOLS%%bin/cutter
 %%TOOLS%%bin/exploder
 bin/wesnoth
+bin/schema_generator
+bin/schema_validator
 %%PYTHONTOOLS%%bin/wesnoth_addon_manager
 %%TESTS%%bin/wesnoth_test
 %%SERVER%%bin/wesnothd


>Release-Note:
>Audit-Trail:
>Unformatted:
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: ports/160798: [PATCH] games/wesnoth-devel: update to latest version

2011-09-17 Thread linimon
Synopsis: [PATCH] games/wesnoth-devel: update to latest version

Responsible-Changed-From-To: freebsd-bugs->philip
Responsible-Changed-By: linimon
Responsible-Changed-When: Sat Sep 17 23:33:48 UTC 2011
Responsible-Changed-Why: 
Make this a ports PR and assign.

http://www.freebsd.org/cgi/query-pr.cgi?pr=160798
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: kern/160662: [ufs] [hang] Snapshots cause a lockup on UFS with SU+J enabled

2011-09-17 Thread linimon
Old Synopsis: Snapshots cause a lockup on UFS with SU+J enabled
New Synopsis: [ufs] [hang] Snapshots cause a lockup on UFS with SU+J enabled

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: linimon
Responsible-Changed-When: Sun Sep 18 02:31:13 UTC 2011
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=160662
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: kern/160777: [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/import on 9.0-BETA2/amd64

2011-09-17 Thread linimon
Old Synopsis: RAID-Z3 causes fatal hang upon scrub/import on 9.0-BETA2/amd64
New Synopsis: [zfs] [hang] RAID-Z3 causes fatal hang upon scrub/import on 
9.0-BETA2/amd64

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: linimon
Responsible-Changed-When: Sun Sep 18 02:40:08 UTC 2011
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=160777
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: kern/160786: [ahci] [ata] Drive not detected when using AHCI on Marvel 9128 controller

2011-09-17 Thread linimon
Old Synopsis: Drive not detected when using AHCI on Marvel 9128 controller
New Synopsis: [ahci] [ata] Drive not detected when using AHCI on Marvel 9128 
controller

Responsible-Changed-From-To: freebsd-amd64->freebsd-bugs
Responsible-Changed-By: linimon
Responsible-Changed-When: Sun Sep 18 02:40:49 UTC 2011
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=160786
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: kern/160790: [fusefs] [panic] VPUTX: negative ref count with FUSE

2011-09-17 Thread linimon
Old Synopsis: panic: VPUTX: negative ref count with FUSE
New Synopsis: [fusefs] [panic] VPUTX: negative ref count with FUSE

Responsible-Changed-From-To: freebsd-bugs->freebsd-fs
Responsible-Changed-By: linimon
Responsible-Changed-When: Sun Sep 18 02:46:03 UTC 2011
Responsible-Changed-Why: 
Over to maintainer(s).

http://www.freebsd.org/cgi/query-pr.cgi?pr=160790
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"