Bug#631613: enabling kgssapi and kgssapi_krb5

2011-06-25 Thread Benjamin Kaduk

On Sat, 25 Jun 2011, Robert Millan wrote:


Package: kfreebsd-image-8.2-1-amd64
Version: 8.2-3
Severity: wishlist

I don't know what kgssapi and kgssapi_krb5 modules are good for, but they've
been recently enabled in 9-CURRENT.


They appear to be what allows for kerberized NFS mounts.

-Ben Kaduk



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/alpine.gso.1.10.1106251940540.6...@multics.mit.edu



Bug#631657: GNU/kFreeBSD support

2011-06-25 Thread Robert Millan
Package: dkms
Version: 2.1.1.2-7
Severity: wishlist
Tags: patch
User: debian-bsd@lists.debian.org
Usertags: kfreebsd

This patch adds GNU/kFreeBSD support to DKMS.  It can be tested with [1],
though it also needs fixes in glibc-bsd SVN which haven't been uploaded
to the archive yet.

[1] http://people.debian.org/~rmh/fuse/fuse-dkms_0.3.9~pre1.20080208-1_all.deb

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 8.2-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dkms depends on:
ii  build-essential   11.5   Informational list of build-essent
ii  coreutils 8.5-1  GNU core utilities
ii  dpkg-dev  1.16.0.3   Debian package development tools
ii  gcc   4:4.6.0-6  GNU C compiler
ii  kldutils [module-init-tools]  8.2+ds1-1  tools for managing kFreeBSD module
ii  make  3.81-8.1   An utility for Directing compilati
ii  patch 2.6.1-2Apply a diff file to an original

Versions of packages dkms recommends:
ii  fakeroot  1.16-1 tool for simulating superuser priv
pn  linux-headers-2.6-686 | linux  (no description available)
pn  linux-image(no description available)
ii  sudo  1.7.4p6-1  Provide limited super user privile

dkms suggests no packages.

-- no debconf information
--- a/dkms
+++ b/dkms
@@ -19,6 +19,27 @@
 #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
 
+uname_s=$(uname -s)
+
+function _get_kernel_dir() {
+KVER=$1
+case ${uname_s} in
+   Linux)  DIR="/lib/modules/$KVER" ;;
+   GNU/kFreeBSD)   DIR="/usr/src/kfreebsd-headers-$KVER/sys" ;;
+esac
+echo $DIR
+}
+
+function _check_kernel_dir() {
+DIR=$(_get_kernel_dir $1)
+case ${uname_s} in
+   Linux)  test -e $DIR/build/include ;;
+   GNU/kFreeBSD)   test -e $DIR/kern && test -e $DIR/conf/kmod.mk ;;
+   *)  return 1 ;;
+esac
+return $?
+}
+
 function invoke_command ()
 {
 local exitval=0
@@ -98,8 +119,8 @@
 function set_kernel_source_dir ()
 {
 # $1 = the kernel to base the directory on
-if [ -z "$kernel_source_dir" ] && [ -d "$install_tree/$1/build" ]; then
-kernel_source_dir="$install_tree/$1/build"
+if [ -z "$kernel_source_dir" ]; then
+kernel_source_dir="$(_get_kernel_dir "$1")"
 fi
 }
 
@@ -416,6 +437,11 @@
 local orig_location="$1"
 [ -n "${addon_modules_dir}" ] && echo "/${addon_modules_dir}" && return
 
+if [ "$uname_s" = "GNU/kFreeBSD" ] ; then
+   # Does not support subdirs, regardless of distribution
+   echo "" && return
+fi
+
 case "$running_distribution" in
 fc[12345]) ;;
 el[1234]) ;;
@@ -1051,7 +1077,7 @@
 set_kernel_source_dir "$1"
 
 # Check that kernel-source exists
-if ! [ -e "$kernel_source_dir/include" ]; then
+if ! _check_kernel_dir "$1"; then
 echo $"" >&2
 echo $"Error! Your kernel headers for kernel $1 cannot be found at" >&2
 echo $"/lib/modules/$1/build or /lib/modules/$1/source." >&2
--- a/dkms_autoinstaller
+++ b/dkms_autoinstaller
@@ -17,6 +17,27 @@
 
 test -f /usr/sbin/dkms || exit 0
 
+uname_s=$(uname -s)
+
+_get_kernel_dir() {
+KVER=$1
+case ${uname_s} in
+   Linux)  DIR="/lib/modules/$KVER" ;;
+   GNU/kFreeBSD)   DIR="/usr/src/kfreebsd-headers-$KVER/sys" ;;
+esac
+echo $DIR
+}
+
+_check_kernel_dir() {
+DIR=$(_get_kernel_dir $1)
+case ${uname_s} in
+   Linux)  test -e $DIR/build/include ;;
+   GNU/kFreeBSD)   test -e $DIR/kern && test -e $DIR/conf/kmod.mk ;;
+   *)  return 1 ;;
+esac
+return $?
+}
+
 #We only have these functions on debian/ubuntu
 # so on other distros just stub them out
 if [ -f /lib/lsb/init-functions ]; then
@@ -115,11 +136,11 @@
 log_action_end_msg 1
 else
 logger -t dkms_autoinstaller "$module_in_tree ($version_in_tree): 
Installing module on kernel $kernel."
-if [ "$current_state" != "built" ] && ! [ -e 
/lib/modules/$kernel/build/include ]; then
+if [ "$current_state" != "built" ] && ! _check_kernel_dir $kernel; 
then
 logger -t dkms_autoinstaller "  Kernel headers for $kernel are 
not installed.  Cannot install this module."
 logger -t dkms_autoinstaller "  Try installing 
linux-headers-$kernel or equivalent."
 log_action_end_msg 1
-elif [ "$current_state" != "built" ] && [ -e 
/lib/modules/$kernel/build/include ]; then
+elif [ "$current_state" != "built" ] && _check_kernel_dir $kernel; 
then
 return_status=""
 if [ -z "$kernel_preparation_done" ]; then

Bug#631639: __unused in libbsd. workaround for #522773 (linux) and #522774 (libc)

2011-06-25 Thread Robert Millan
2011/6/25 Thorsten Glaser :
> That won’t help. The overlay mode uses pkg-config which no BSD thing touches.

pkg-config can be invoked from debian/rules.  It's already used in freebsd-libs
and freebsd-utils.

It's trivial and non-intrusive, see:

http://anonscm.debian.org/viewvc/glibc-bsd/trunk/freebsd-libs/debian/rules?r1=3368&r2=3429

-- 
Robert Millan



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktimdsrf3tiamhp+gqs2dus4vgxl...@mail.gmail.com



Bug#625261: buildutils are shipped with unusable paths for kfreebsd

2011-06-25 Thread Robert Millan
Could you provide a full list? (or even better, a patch)

Btw, "gmake" is not a problem because of:

lrwxr-xr-x 1 root root 14 21 jun 22:59 /usr/lib/freebsd/gmake -> ../../bin/make

-- 
Robert Millan



-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/BANLkTimu=nu-1gk5tqej74z_z71spvz...@mail.gmail.com



Re: LLVM 2.8 on kfreebsd

2011-06-25 Thread Sylvestre Ledru
Le samedi 25 juin 2011 à 13:28 +, Christoph Egger a écrit :
> Hi all!
> 
> Looking into that again. I have now built llvm-2.8 successfully in
> the buildd chroot with the following patch. So it seems to indeed be a
> problem with running the testsuite in parallel. Additionally the
> (seemingly) same problem manifests itself with llvm-2.9 without
> wrapping in a schroot or something so that might help debugging.
> 
> I'll dig a bit deeper still and will report when I find
> something. If you don't hear back today it will unfortunately be stuck
> behind work again, I'll come back as I find time but would be happy if
> someone else finds a way to resolv this. The patch might even work as
> a workaround (potentially conditionalized on kFreeBSD).
Impressive result. Thanks for digging this issue.

Can I ask how you found the issue ? You just though "Ok, I am going to
try without the parallel testsuite !" or you found a lead before ?

Your patch is (almost) fine for me as a workaround. I just would like to
enable the sequential build just for kfreebsd . We could report a bug
upstream.

Well done!

Sylvestre



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1309026291.27677.40.ca...@losinj.inria.fr



Processed: control

2011-06-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfixed 594183 8.2-1
Bug #594183 {Done: Guillem Jover } [freebsd-buildutils] 
can't build kernel modules
Bug No longer marked as fixed in versions freebsd-buildutils/8.2-1.
> block 613300 by 594183
Bug #613300 [wnpp] RFP: fuse4bsd -- Filesystem in USErspace library (BSD 
version)
Was blocked by: 630509
Added blocking bug(s) of 613300: 594183
> tag 594183 pending
Bug #594183 {Done: Guillem Jover } [freebsd-buildutils] 
can't build kernel modules
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
594183: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594183
613300: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613300
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.130902708212416.transcr...@bugs.debian.org



Bug#631639: __unused in libbsd. workaround for #522773 (linux) and #522774 (libc)

2011-06-25 Thread Thorsten Glaser
Robert Millan dixit:

>This patch implements a workaround for __unused name collision with Linux and
>Glibc.  The trick is to define __unused only when in overlay mode, and then

That won’t help. The overlay mode uses pkg-config which no BSD thing touches.

bye,
//mirabilos
-- 
Support mksh as /bin/sh and RoQA dash NOW!
‣ src:bash (256 (275) bugs: 0 RC, 177 (192) I&N, 79 (83) M&W, 0 F&P)
‣ src:dash (81 (89) bugs: 3 RC, 43 (46) I&N, 35 (40) M&W, 0 F&P)
‣ src:mksh (2 bugs: 0 RC, 0 I&N, 2 M&W, 0 F&P)



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/pine.bsm.4.64l.1106251723290.32...@herc.mirbsd.org



Bug#631639: __unused in libbsd. workaround for #522773 (linux) and #522774 (libc)

2011-06-25 Thread Robert Millan
Package: libbsd-dev
Version: 0.3.0-1
Severity: wishlist
Tags: patch
User: debian-bsd@lists.debian.org
Usertags: kfreebsd

This patch implements a workaround for __unused name collision with Linux and
Glibc.  The trick is to define __unused only when in overlay mode, and then
provide replacements for broken headers using the overlay.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 8.2-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libbsd-dev depends on:
ii  libbsd0   0.3.0-1utility functions from BSD systems

libbsd-dev recommends no packages.

libbsd-dev suggests no packages.

-- no debconf information
diff -Nur libbsd-0.3.0/include/bsd/aio.h libbsd-0.3.0.new/include/bsd/aio.h
--- libbsd-0.3.0/include/bsd/aio.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/aio.h	2011-06-25 18:54:20.398388435 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/asm/stat.h libbsd-0.3.0.new/include/bsd/asm/stat.h
--- libbsd-0.3.0/include/bsd/asm/stat.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/asm/stat.h	2011-06-25 18:58:50.515051926 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/bits/stat.h libbsd-0.3.0.new/include/bsd/bits/stat.h
--- libbsd-0.3.0/include/bsd/bits/stat.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/bits/stat.h	2011-06-25 18:54:20.398388435 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/bits/utmp.h libbsd-0.3.0.new/include/bsd/bits/utmp.h
--- libbsd-0.3.0/include/bsd/bits/utmp.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/bits/utmp.h	2011-06-25 18:54:20.398388435 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/bits/utmpx.h libbsd-0.3.0.new/include/bsd/bits/utmpx.h
--- libbsd-0.3.0/include/bsd/bits/utmpx.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/bits/utmpx.h	2011-06-25 18:54:20.398388435 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/linux/icmp.h libbsd-0.3.0.new/include/bsd/linux/icmp.h
--- libbsd-0.3.0/include/bsd/linux/icmp.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/linux/icmp.h	2011-06-25 18:58:53.870548764 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/linux/sysctl.h libbsd-0.3.0.new/include/bsd/linux/sysctl.h
--- libbsd-0.3.0/include/bsd/linux/sysctl.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/linux/sysctl.h	2011-06-25 18:58:58.855057851 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/netdb.h libbsd-0.3.0.new/include/bsd/netdb.h
--- libbsd-0.3.0/include/bsd/netdb.h	1970-01-01 01:00:00.0 +0100
+++ libbsd-0.3.0.new/include/bsd/netdb.h	2011-06-25 18:54:20.398388435 +0200
@@ -0,0 +1,3 @@
+#undef __unused
+#include_next 
+#include 
diff -Nur libbsd-0.3.0/include/bsd/sys/cdefs.h libbsd-0.3.0.new/include/bsd/sys/cdefs.h
--- libbsd-0.3.0/include/bsd/sys/cdefs.h	2011-05-28 10:58:26.0 +0200
+++ libbsd-0.3.0.new/include/bsd/sys/cdefs.h	2011-06-25 19:01:26.494054843 +0200
@@ -24,9 +24,6 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef LIBBSD_SYS_CDEFS_H
-#define LIBBSD_SYS_CDEFS_H
-
 #ifdef LIBBSD_OVERLAY
 #include_next 
 #else
@@ -43,11 +40,13 @@
 #define _SYS_CDEFS_H
 #endif
 
+#ifndef LIBBSD_GCC_VERSION
 #ifdef __GNUC__
 #define LIBBSD_GCC_VERSION (__GNUC__ << 8 | __GNUC_MINOR__)
 #else
 #define LIBBSD_GCC_VERSION 0
 #endif
+#endif
 
 #ifndef __dead2
 # if LIBBSD_GCC_VERSION >= 0x0207
@@ -83,8 +82,8 @@
 
 /* Linux headers define a struct with a member names __unused.
  * Debian bugs: #522773 (linux), #522774 (libc).
- * Disable for now. */
-#if 0
+ * Enable only in overlay mode, where this can be worked around. */
+#ifdef LIBBSD_OVERLAY
 #ifndef __unused
 # if LIBBSD_GCC_VERSION >= 0x0300
 #  define __unused __attribute__((unused))
@@ -137,5 +136,3 @@
 #ifndef __COPYRIGHT
 # define __COPYRIGHT(x)
 #endif
-
-#endif


LLVM 2.8 on kfreebsd

2011-06-25 Thread Christoph Egger
Hi all!

Looking into that again. I have now built llvm-2.8 successfully in
the buildd chroot with the following patch. So it seems to indeed be a
problem with running the testsuite in parallel. Additionally the
(seemingly) same problem manifests itself with llvm-2.9 without
wrapping in a schroot or something so that might help debugging.

I'll dig a bit deeper still and will report when I find
something. If you don't hear back today it will unfortunately be stuck
behind work again, I'll come back as I find time but would be happy if
someone else finds a way to resolv this. The patch might even work as
a workaround (potentially conditionalized on kFreeBSD).


diff -Nru llvm-2.8-2.8/debian/rules.d/build.mk 
llvm-2.8-2.8/debian/rules.d/build.mk
--- llvm-2.8-2.8/debian/rules.d/build.mk2011-04-11 19:59:20.0 
+
+++ llvm-2.8-2.8/debian/rules.d/build.mk2011-06-25 11:38:13.0 
+
@@ -48,7 +48,7 @@
 #   &)
if test "x$(nocheck)-$($(strip $(call buildof,$*))_check)" = "xno-yes" 
; then \
  if test "x$($*_check)" = "xyes" ; then \
-   $(MAKE) -C $($*_builddir) $($*_MAKECHECKOPTS) check || true ; \
+   $(MAKE) -C $($*_builddir) $($*_MAKECHECKOPTS) LIT_ARGS="-j1 -s -v" 
check || true ; \
  fi ; \
fi
$(call $*_extra_check)


Regards

Christoph


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110625132816.ga9...@fasch.debian.org



kfreebsd-9_9.0~svn223502-1_kfreebsd-amd64.changes ACCEPTED into unstable

2011-06-25 Thread Debian FTP Masters



Accepted:
kfreebsd-9_9.0~svn223502-1.debian.tar.gz
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502-1.debian.tar.gz
kfreebsd-9_9.0~svn223502-1.dsc
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502-1.dsc
kfreebsd-9_9.0~svn223502.orig.tar.gz
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502.orig.tar.gz
kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb
  to main/k/kfreebsd-9/kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to main/k/kfreebsd-9/kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-source-9.0_9.0~svn223502-1_all.deb
  to main/k/kfreebsd-9/kfreebsd-source-9.0_9.0~svn223502-1_all.deb


Override entries for your package:
kfreebsd-9_9.0~svn223502-1.dsc - source kernel
kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb - optional kernel
kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb - optional 
kernel
kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb - optional kernel
kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb - optional kernel
kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb - optional kernel
kfreebsd-source-9.0_9.0~svn223502-1_all.deb - optional kernel

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 630509 631160 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qaroq-0006qq...@franck.debian.org



kfreebsd-8_8.2-3_kfreebsd-amd64.changes ACCEPTED into unstable

2011-06-25 Thread Debian FTP Masters



Accepted:
kfreebsd-8_8.2-3.debian.tar.gz
  to main/k/kfreebsd-8/kfreebsd-8_8.2-3.debian.tar.gz
kfreebsd-8_8.2-3.dsc
  to main/k/kfreebsd-8/kfreebsd-8_8.2-3.dsc
kfreebsd-headers-8-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-headers-8-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-headers-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-headers-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-headers-8.2-1_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-headers-8.2-1_8.2-3_kfreebsd-amd64.deb
kfreebsd-image-8-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-image-8-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-image-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-image-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-source-8.2_8.2-3_all.deb
  to main/k/kfreebsd-8/kfreebsd-source-8.2_8.2-3_all.deb


Override entries for your package:
kfreebsd-8_8.2-3.dsc - source kernel
kfreebsd-headers-8-amd64_8.2-3_kfreebsd-amd64.deb - optional kernel
kfreebsd-headers-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb - optional kernel
kfreebsd-headers-8.2-1_8.2-3_kfreebsd-amd64.deb - optional kernel
kfreebsd-image-8-amd64_8.2-3_kfreebsd-amd64.deb - optional kernel
kfreebsd-image-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb - optional kernel
kfreebsd-source-8.2_8.2-3_all.deb - optional kernel

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 631160 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qarnm-0005kk...@franck.debian.org



Processing of kfreebsd-9_9.0~svn223502-1_kfreebsd-amd64.changes

2011-06-25 Thread Debian FTP Masters
kfreebsd-9_9.0~svn223502-1_kfreebsd-amd64.changes uploaded successfully to 
localhost
along with the files:
  kfreebsd-9_9.0~svn223502-1.dsc
  kfreebsd-9_9.0~svn223502.orig.tar.gz
  kfreebsd-9_9.0~svn223502-1.debian.tar.gz
  kfreebsd-source-9.0_9.0~svn223502-1_all.deb
  kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb
  kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qarht-0003do...@franck.debian.org



Bug#631160: marked as done (kfreebsd-9: cve-2011-2480 info disclosure)

2011-06-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Jun 2011 11:51:44 +
with message-id 
and subject line Bug#631160: fixed in kfreebsd-9 9.0~svn223502-1
has caused the Debian Bug report #631160,
regarding kfreebsd-9: cve-2011-2480 info disclosure
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
631160: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631160
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: kfreebsd
version: 9.0~svn223109-0.1
severity: important
tags: security

a vulnerability has been disclosed for freebsd.  the affected code is
present in the kfreebsd-9 package:
http://openwall.com/lists/oss-security/2011/06/16/1


--- End Message ---
--- Begin Message ---
Source: kfreebsd-9
Source-Version: 9.0~svn223502-1

We believe that the bug you reported is fixed in the latest version of
kfreebsd-9, which is due to be installed in the Debian FTP archive:

kfreebsd-9_9.0~svn223502-1.debian.tar.gz
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502-1.debian.tar.gz
kfreebsd-9_9.0~svn223502-1.dsc
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502-1.dsc
kfreebsd-9_9.0~svn223502.orig.tar.gz
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502.orig.tar.gz
kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb
  to main/k/kfreebsd-9/kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to main/k/kfreebsd-9/kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-source-9.0_9.0~svn223502-1_all.deb
  to main/k/kfreebsd-9/kfreebsd-source-9.0_9.0~svn223502-1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 631...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Robert Millan  (supplier of updated kfreebsd-9 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 24 Jun 2011 16:16:30 +0200
Source: kfreebsd-9
Binary: kfreebsd-source-9.0 kfreebsd-headers-9.0-0 kfreebsd-image-9.0-0-amd64 
kfreebsd-image-9-amd64 kfreebsd-headers-9.0-0-amd64 kfreebsd-headers-9-amd64 
kfreebsd-image-9.0-0-486 kfreebsd-image-9-486 kfreebsd-headers-9.0-0-486 
kfreebsd-headers-9-486 kfreebsd-image-9.0-0-686 kfreebsd-image-9-686 
kfreebsd-headers-9.0-0-686 kfreebsd-headers-9-686 kfreebsd-image-9.0-0-686-smp 
kfreebsd-image-9-686-smp kfreebsd-headers-9.0-0-686-smp 
kfreebsd-headers-9-686-smp kfreebsd-image-9.0-0-xen kfreebsd-image-9-xen 
kfreebsd-headers-9.0-0-xen kfreebsd-headers-9-xen kfreebsd-image-9.0-0-malta 
kfreebsd-image-9-malta kfreebsd-headers-9.0-0-malta kfreebsd-headers-9-malta
Architecture: source all kfreebsd-amd64
Version: 9.0~svn223502-1
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers 
Changed-By: Robert Millan 
Description: 
 kfreebsd-headers-9-486 - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-686 - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-686-smp - header files for kernel of FreeBSD 9 
(meta-package)
 kfreebsd-headers-9-amd64 - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-malta - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-xen - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9.0-0 - Common architecture-specific header files for kernel 
of FreeBSD 9
 kfreebsd-headers-9.0-0-486 - header files for kernel of FreeBSD 9.0
 kfreebsd-headers-9.0-0-686 - header files for kernel of FreeBSD 9.0
 kfreebsd-headers-9.0-0-686-smp - header files for kernel of FreeBSD 9.0
 kfreebsd-headers-9.0-0-amd64 - header files for kernel of FreeBSD 9.0
 kfreebsd-headers-9.0-0-malta - header files for kernel of FreeBSD 9.0
 kfreebsd-headers-9.0-0-xen - header files for kernel of FreeBSD 9.0
 kfreebsd-image-9-486 - kernel of FreeBSD 9 image (meta-package)

Bug#631160: marked as done (kfreebsd-9: cve-2011-2480 info disclosure)

2011-06-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Jun 2011 11:50:39 +
with message-id 
and subject line Bug#631160: fixed in kfreebsd-8 8.2-3
has caused the Debian Bug report #631160,
regarding kfreebsd-9: cve-2011-2480 info disclosure
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
631160: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631160
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: kfreebsd
version: 9.0~svn223109-0.1
severity: important
tags: security

a vulnerability has been disclosed for freebsd.  the affected code is
present in the kfreebsd-9 package:
http://openwall.com/lists/oss-security/2011/06/16/1


--- End Message ---
--- Begin Message ---
Source: kfreebsd-8
Source-Version: 8.2-3

We believe that the bug you reported is fixed in the latest version of
kfreebsd-8, which is due to be installed in the Debian FTP archive:

kfreebsd-8_8.2-3.debian.tar.gz
  to main/k/kfreebsd-8/kfreebsd-8_8.2-3.debian.tar.gz
kfreebsd-8_8.2-3.dsc
  to main/k/kfreebsd-8/kfreebsd-8_8.2-3.dsc
kfreebsd-headers-8-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-headers-8-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-headers-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-headers-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-headers-8.2-1_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-headers-8.2-1_8.2-3_kfreebsd-amd64.deb
kfreebsd-image-8-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-image-8-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-image-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
  to main/k/kfreebsd-8/kfreebsd-image-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
kfreebsd-source-8.2_8.2-3_all.deb
  to main/k/kfreebsd-8/kfreebsd-source-8.2_8.2-3_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 631...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Robert Millan  (supplier of updated kfreebsd-8 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 24 Jun 2011 16:24:58 +0200
Source: kfreebsd-8
Binary: kfreebsd-source-8.2 kfreebsd-headers-8.2-1 kfreebsd-image-8.2-1-amd64 
kfreebsd-image-8-amd64 kfreebsd-headers-8.2-1-amd64 kfreebsd-headers-8-amd64 
kfreebsd-image-8.2-1-486 kfreebsd-image-8-486 kfreebsd-headers-8.2-1-486 
kfreebsd-headers-8-486 kfreebsd-image-8.2-1-686 kfreebsd-image-8-686 
kfreebsd-headers-8.2-1-686 kfreebsd-headers-8-686 kfreebsd-image-8.2-1-686-smp 
kfreebsd-image-8-686-smp kfreebsd-headers-8.2-1-686-smp 
kfreebsd-headers-8-686-smp kfreebsd-image-8.2-1-xen kfreebsd-image-8-xen 
kfreebsd-headers-8.2-1-xen kfreebsd-headers-8-xen kfreebsd-image-8.2-1-malta 
kfreebsd-image-8-malta kfreebsd-headers-8.2-1-malta kfreebsd-headers-8-malta
Architecture: source all kfreebsd-amd64
Version: 8.2-3
Distribution: unstable
Urgency: medium
Maintainer: GNU/kFreeBSD Maintainers 
Changed-By: Robert Millan 
Description: 
 kfreebsd-headers-8-486 - header files for kernel of FreeBSD 8 (meta-package)
 kfreebsd-headers-8-686 - header files for kernel of FreeBSD 8 (meta-package)
 kfreebsd-headers-8-686-smp - header files for kernel of FreeBSD 8 
(meta-package)
 kfreebsd-headers-8-amd64 - header files for kernel of FreeBSD 8 (meta-package)
 kfreebsd-headers-8-malta - header files for kernel of FreeBSD 8 (meta-package)
 kfreebsd-headers-8-xen - header files for kernel of FreeBSD 8 (meta-package)
 kfreebsd-headers-8.2-1 - Common architecture-specific header files for kernel 
of FreeBSD 8
 kfreebsd-headers-8.2-1-486 - header files for kernel of FreeBSD 8.2
 kfreebsd-headers-8.2-1-686 - header files for kernel of FreeBSD 8.2
 kfreebsd-headers-8.2-1-686-smp - header files for kernel of FreeBSD 8.2
 kfreebsd-headers-8.2-1-amd64 - header files for kernel of FreeBSD 8.2
 kfreebsd-headers-8.2-1-malta - header files for kernel of FreeBSD 8.2
 kfreebsd-headers-8.2-1-xen - header files for kernel of FreeBSD 8.2
 kfreebsd-image-8-486 - kernel of FreeBSD 8 image (meta-package)
 kfreebsd-image-8-686 - kernel of FreeBSD 8 image (meta-package)
 kfreebsd-image-8-686-smp - kernel of FreeBSD 8 image (meta-package)
 kfreebsd-image-8-amd64 - kernel of FreeBSD 8 image (meta-package)
 kfreebsd-image-8-malta - kernel of FreeBSD 8 image (meta-package)
 kfreebsd-image-8-x

Bug#630509: marked as done (missing conf/kern.mk conf/kmod.mk kern/vnode_if.src and tools/vnode_if.awk, necessary for building modules)

2011-06-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Jun 2011 11:51:44 +
with message-id 
and subject line Bug#630509: fixed in kfreebsd-9 9.0~svn223502-1
has caused the Debian Bug report #630509,
regarding missing conf/kern.mk conf/kmod.mk kern/vnode_if.src and 
tools/vnode_if.awk, necessary for building modules
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
630509: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=630509
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: kfreebsd-headers-8.2-1
Version: 8.2-1
Severity: grave

This package can't serve its purpose (building out-of-tree modules) without,
at least, the following files:

conf/kern.mk
conf/kmod.mk
kern/vnode_if.src
tools/vnode_if.awk

once they're copied from kfreebsd source, it becomes possible to build
fuse.kmod using kfreebsd-headers-8.2-1-amd64.

-- System Information:
Debian Release: 6.0.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 8.2-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: kfreebsd-9
Source-Version: 9.0~svn223502-1

We believe that the bug you reported is fixed in the latest version of
kfreebsd-9, which is due to be installed in the Debian FTP archive:

kfreebsd-9_9.0~svn223502-1.debian.tar.gz
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502-1.debian.tar.gz
kfreebsd-9_9.0~svn223502-1.dsc
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502-1.dsc
kfreebsd-9_9.0~svn223502.orig.tar.gz
  to main/k/kfreebsd-9/kfreebsd-9_9.0~svn223502.orig.tar.gz
kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-headers-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-headers-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb
  to main/k/kfreebsd-9/kfreebsd-headers-9.0-0_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to main/k/kfreebsd-9/kfreebsd-image-9-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
  to 
main/k/kfreebsd-9/kfreebsd-image-9.0-0-amd64_9.0~svn223502-1_kfreebsd-amd64.deb
kfreebsd-source-9.0_9.0~svn223502-1_all.deb
  to main/k/kfreebsd-9/kfreebsd-source-9.0_9.0~svn223502-1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 630...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Robert Millan  (supplier of updated kfreebsd-9 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 24 Jun 2011 16:16:30 +0200
Source: kfreebsd-9
Binary: kfreebsd-source-9.0 kfreebsd-headers-9.0-0 kfreebsd-image-9.0-0-amd64 
kfreebsd-image-9-amd64 kfreebsd-headers-9.0-0-amd64 kfreebsd-headers-9-amd64 
kfreebsd-image-9.0-0-486 kfreebsd-image-9-486 kfreebsd-headers-9.0-0-486 
kfreebsd-headers-9-486 kfreebsd-image-9.0-0-686 kfreebsd-image-9-686 
kfreebsd-headers-9.0-0-686 kfreebsd-headers-9-686 kfreebsd-image-9.0-0-686-smp 
kfreebsd-image-9-686-smp kfreebsd-headers-9.0-0-686-smp 
kfreebsd-headers-9-686-smp kfreebsd-image-9.0-0-xen kfreebsd-image-9-xen 
kfreebsd-headers-9.0-0-xen kfreebsd-headers-9-xen kfreebsd-image-9.0-0-malta 
kfreebsd-image-9-malta kfreebsd-headers-9.0-0-malta kfreebsd-headers-9-malta
Architecture: source all kfreebsd-amd64
Version: 9.0~svn223502-1
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers 
Changed-By: Robert Millan 
Description: 
 kfreebsd-headers-9-486 - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-686 - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-686-smp - header files for kernel of FreeBSD 9 
(meta-package)
 kfreebsd-headers-9-amd64 - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-malta - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9-xen - header files for kernel of FreeBSD 9 (meta-package)
 kfreebsd-headers-9.0-0 - Common architecture-specific header files for kernel 
of FreeBSD 9
 kfreebsd-h

Bug#631161: kfreebsd-8: cve-2011-2480 info disclosure

2011-06-25 Thread Robert Millan
2011/6/21 Michael Gilbert :
> looking at the commit itself [0], i find Dan's conclusion rather
> surprising. the affected code is in the 802.11 stack, so it seems like
> it should be platform-independent.  i doubt x86 is any better at
> handling signedness issues, but i suppose i could be missing something.

Fix uploaded to unstable and experimental.

debian-security: Patch is available in r3480 in glibc-bsd SVN (attached
for your convenience).

-- 
Robert Millan
Index: debian/changelog
===
--- debian/changelog(revision 3479)
+++ debian/changelog(revision 3480)
@@ -1,3 +1,11 @@
+kfreebsd-8 (8.1+dfsg-8+squeeze1) UNRELEASED; urgency=low
+
+  * Fix net802.11 stack kernel memory disclosure (CVE-2011-2480).
+(Closes: #631160)
+- 000_net80211_disclosure.diff
+
+ -- Robert Millan   Sat, 25 Jun 2011 13:24:06 +0200
+
 kfreebsd-8 (8.1+dfsg-8) stable-proposed-updates; urgency=low
 
   [ Petr Salinger ]
Index: debian/patches/series
===
--- debian/patches/series   (revision 3479)
+++ debian/patches/series   (revision 3480)
@@ -3,6 +3,7 @@
 000_coda.diff
 000_ufs_lookup.diff  
 000_tcp_usrreq.diff
+000_net80211_disclosure.diff
 001_misc.diff
 003_glibc_dev_aicasm.diff
 004_xargs.diff
Index: debian/patches/000_net80211_disclosure.diff
===
--- debian/patches/000_net80211_disclosure.diff (revision 0)
+++ debian/patches/000_net80211_disclosure.diff (revision 3480)
@@ -0,0 +1,79 @@
+--- a/sys/net80211/ieee80211_acl.c
 b/sys/net80211/ieee80211_acl.c
+@@ -77,7 +77,7 @@
+ struct aclstate {
+   acl_lock_t  as_lock;
+   int as_policy;
+-  int as_nacls;
++  uint32_tas_nacls;
+   TAILQ_HEAD(, acl)   as_list;/* list of all ACL's */
+   LIST_HEAD(, acl)as_hash[ACL_HASHSIZE];
+   struct ieee80211vap *as_vap;
+@@ -289,7 +289,8 @@
+   struct aclstate *as = vap->iv_as;
+   struct acl *acl;
+   struct ieee80211req_maclist *ap;
+-  int error, space, i;
++  int error;
++  uint32_t i, space;
+ 
+   switch (ireq->i_val) {
+   case IEEE80211_MACCMD_POLICY:
+--- a/sys/net80211/ieee80211_ioctl.c
 b/sys/net80211/ieee80211_ioctl.c
+@@ -141,7 +141,7 @@
+ ieee80211_ioctl_getchaninfo(struct ieee80211vap *vap, struct ieee80211req 
*ireq)
+ {
+   struct ieee80211com *ic = vap->iv_ic;
+-  int space;
++  uint32_t space;
+ 
+   space = __offsetof(struct ieee80211req_chaninfo,
+   ic_chans[ic->ic_nchans]);
+@@ -205,7 +205,7 @@
+ {
+   struct ieee80211_node *ni;
+   uint8_t macaddr[IEEE80211_ADDR_LEN];
+-  const int off = __offsetof(struct ieee80211req_sta_stats, is_stats);
++  const size_t off = __offsetof(struct ieee80211req_sta_stats, is_stats);
+   int error;
+ 
+   if (ireq->i_len < off)
+@@ -321,7 +321,7 @@
+   if (req.space > ireq->i_len)
+   req.space = ireq->i_len;
+   if (req.space > 0) {
+-  size_t space;
++  uint32_t space;
+   void *p;
+ 
+   space = req.space;
+@@ -456,7 +456,7 @@
+ 
+ static __noinline int
+ getstainfo_common(struct ieee80211vap *vap, struct ieee80211req *ireq,
+-  struct ieee80211_node *ni, int off)
++  struct ieee80211_node *ni, size_t off)
+ {
+   struct ieee80211com *ic = vap->iv_ic;
+   struct stainforeq req;
+@@ -501,7 +501,7 @@
+ ieee80211_ioctl_getstainfo(struct ieee80211vap *vap, struct ieee80211req 
*ireq)
+ {
+   uint8_t macaddr[IEEE80211_ADDR_LEN];
+-  const int off = __offsetof(struct ieee80211req_sta_req, info);
++  const size_t off = __offsetof(struct ieee80211req_sta_req, info);
+   struct ieee80211_node *ni;
+   int error;
+ 
+--- a/sys/net80211/ieee80211_ioctl.h
 b/sys/net80211/ieee80211_ioctl.h
+@@ -578,7 +578,7 @@
+   chari_name[IFNAMSIZ];   /* if_name, e.g. "wi0" */
+   uint16_ti_type; /* req type */
+   int16_t i_val;  /* Index or simple value */
+-  int16_t i_len;  /* Index or simple value */
++  uint16_ti_len;  /* Index or simple value */
+   void*i_data;/* Extra data */
+ };
+ #define   SIOCS80211   _IOW('i', 234, struct ieee80211req)


Bug#631613: enabling kgssapi and kgssapi_krb5

2011-06-25 Thread Robert Millan
Package: kfreebsd-image-8.2-1-amd64
Version: 8.2-3
Severity: wishlist

I don't know what kgssapi and kgssapi_krb5 modules are good for, but they've
been recently enabled in 9-CURRENT.

Unfortunately they fail to build on Debian (either 8.2 or 9~).  For now it's
been disabled in kfreebsd-9 package.  Error message:

gssd_xdr.c:6:98: fatal error: 
/home/rmh/trunk/kfreebsd-8/flavor-8.2-1-amd64/sys/modules/kgssapi/../../kgssapi/gssd.h:
 El fitxer o directori no existeix
compilation terminated.
gssd_clnt.c:6:37: fatal error: memory.h: El fitxer o directori no existeix
compilation terminated.
mkdep: compile failed
*** Error code 1

Stop in /home/rmh/trunk/kfreebsd-8/flavor-8.2-1-amd64/sys/modules/kgssapi.
*** Error code 1

It'd help if someone could provide information on the convenience/necessity
of enabling these modules (in 8.x and in 9.x).

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 8.2-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages kfreebsd-image-8.2-1-amd64 depends on:
ii  freebsd-utils 8.2+ds1-1  FreeBSD utilities needed for GNU/k
ii  kldutils  8.2+ds1-1  tools for managing kFreeBSD module

kfreebsd-image-8.2-1-amd64 recommends no packages.

kfreebsd-image-8.2-1-amd64 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110625112252.50883.44733.reportbug@dimoni



Incomplete upload found in Debian upload queue

2011-06-25 Thread Debian FTP Masters
Probably you are the uploader of the following file(s) in
the Debian upload queue directory:
  kfreebsd-9_9.0~svn223502-1.debian.tar.gz
  kfreebsd-9_9.0~svn223502-1.dsc
  kfreebsd-9_9.0~svn223502.orig.tar.gz
This looks like an upload, but a .changes file is missing, so the job
cannot be processed.

If no .changes file arrives within 23:27:06, the files will be deleted.

If you didn't upload those files, please just ignore this message.

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qar7l-00039q...@franck.debian.org



Processing of kfreebsd-8_8.2-3_kfreebsd-amd64.changes

2011-06-25 Thread Debian FTP Masters
kfreebsd-8_8.2-3_kfreebsd-amd64.changes uploaded successfully to localhost
along with the files:
  kfreebsd-8_8.2-3.dsc
  kfreebsd-8_8.2-3.debian.tar.gz
  kfreebsd-source-8.2_8.2-3_all.deb
  kfreebsd-headers-8.2-1_8.2-3_kfreebsd-amd64.deb
  kfreebsd-image-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
  kfreebsd-image-8-amd64_8.2-3_kfreebsd-amd64.deb
  kfreebsd-headers-8.2-1-amd64_8.2-3_kfreebsd-amd64.deb
  kfreebsd-headers-8-amd64_8.2-3_kfreebsd-amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qaqlj-0003ro...@franck.debian.org