Your message dated Wed, 13 Apr 2005 03:17:02 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#294235: fixed in kernel-package 8.131
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 8 Feb 2005 17:42:51 +0000
>From [EMAIL PROTECTED] Tue Feb 08 09:42:51 2005
Return-path: <[EMAIL PROTECTED]>
Received: from 174.red-62-57-140.user.auna.net (khazad.dyndns.org) 
[62.57.140.174] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1CyZNy-0005Z3-00; Tue, 08 Feb 2005 09:42:50 -0800
Received: from rmh by khazad.dyndns.org with local (Exim 4.34)
        id 1CyZI1-000NYb-JV; Tue, 08 Feb 2005 18:36:41 +0100
Content-Type: multipart/mixed; boundary="===============1832054112=="
MIME-Version: 1.0
From: Robert Millan <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: Support for kfreebsd
X-Mailer: reportbug 3.7.1
Date: Tue, 08 Feb 2005 18:36:41 +0100
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.4 required=4.0 tests=BAYES_00,HAS_PACKAGE,
        UPPERCASE_25_50 autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

This is a multi-part MIME message sent by reportbug.

--===============1832054112==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: kernel-package
Version: 8.119
Severity: wishlist
Tags: patch

This patch adds support for make-kpkg to build kfreebsd.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-i386 (i386)
Kernel: GNU/kFreeBSD 5.3-2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages kernel-package depends on:
ii  bcc [c-compiler]        0.16.14-1.1      16-bit x86 C compiler
ii  dpkg                    1.10.26+kbsd     Package maintenance system for Deb
ii  dpkg-dev                1.10.26          Package building tools for Debian
ii  gcc [c-compiler]        4:3.3.5-1        The GNU C compiler
ii  gcc-3.2 [c-compiler]    1:3.2.3-9+kbsd.2 The GNU C compiler
ii  gcc-3.3 [c-compiler]    1:3.3.5-4+kbsd   The GNU C compiler
ii  gcc-3.4 [c-compiler]    3.4.1-5+kbsd     The GNU C compiler
ii  make                    3.80-9           The GNU version of the "make" util
ii  perl                    5.8.4-5+kbsd     Larry Wall's Practical Extraction 

-- no debconf information

--===============1832054112==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="kernel-package.diff"

diff -ur kernel-package-8.119.old/kernel/rules kernel-package-8.119/kernel/rules
--- kernel-package-8.119.old/kernel/rules       2004-12-08 10:46:11.000000000 
+0100
+++ kernel-package-8.119/kernel/rules   2005-02-08 18:32:35.000000000 +0100
@@ -91,13 +91,16 @@
   architecture:=$(KPKG_ARCH)
 else
   #architecture:=$(shell CC=$(HOSTCC) dpkg --print-gnu-build-architecture)
-  architecture:=$(DEB_HOST_ARCH)
+  architecture:=$(DEB_HOST_GNU_CPU)
+  ifeq ($(architecture), x86_64)
+    architecture:=amd64
+  endif
 endif
 
 ifndef CROSS_COMPILE
   ifeq ($(strip $(MAKING_VIRTUAL_IMAGE)),)
     ifneq ($(strip $(architecture)),$(strip $(DEB_BUILD_ARCH)))
-      KERNEL_CROSS:=$(architecture)-$(strip $(DEB_HOST_GNU_SYSTEM))-
+      KERNEL_CROSS:=$(DEB_HOST_GNU_TYPE)
     endif
   endif
 else
@@ -119,7 +122,12 @@
 space:= $(empty) $(empty)
 localversion_files := $(wildcard localversion*)
 
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+PMAKE = PATH=/usr/lib/freebsd/:$(CURDIR)/bin:$(PATH) WERROR= MAKEFLAGS= \
+       freebsd-make
+endif
 
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
 VERSION =$(shell grep -E '^VERSION +=' Makefile 2>/dev/null | \
  sed -e 's/[^0-9]*\([0-9]*\)/\1/')
 PATCHLEVEL =$(shell grep -E '^PATCHLEVEL +=' Makefile 2>/dev/null | \
@@ -130,6 +138,18 @@
  sed -e 's/EXTRAVERSION *= *\([^ \t]*\)/\1/')
 LOCALVERSION = $(subst $(space),, $(shell cat /dev/null $(localversion_files)) 
\
                  $(CONFIG_LOCALVERSION))
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+VERSION        =$(shell grep '^REVISION=' conf/newvers.sh | \
+ sed -e 's/[^0-9]*\([0-9]\)\..*/\1/')
+PATCHLEVEL =$(shell grep '^REVISION=' conf/newvers.sh | \
+ sed -e 's/[^0-9]*[0-9]*\.\([0-9]*\)[^0-9]*/\1/')
+SUBLEVEL =0
+EXTRA_VERSION =$(shell grep '^RELEASE=' conf/newvers.sh | \
+ sed -e 's/[^0-9]*\([0-9]*\)[^0-9]*/\1/')
+LOCALVERSION = $(subst $(space),, $(shell cat /dev/null $(localversion_files)) 
\
+                 $(CONFIG_LOCALVERSION))
+endif
 
 
 
@@ -481,6 +501,7 @@
   ifeq (,$(findstring $(KPKG_SUBARCH),i386 i486 i586 i686))
     KPKG_SUBARCH:=$(GUESS_SUBARCH)
   endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
   kimage := bzImage
   loaderdep=lilo (>= 19.1) | grub
   loader=lilo
@@ -488,9 +509,17 @@
   target = $(kimage)
   kimagesrc = $(strip arch/$(KERNEL_ARCH)/boot/$(kimage))
   kimagedest = $(INT_IMAGE_DESTDIR)/vmlinuz-$(version)
-  DEBCONFIG= $(CONFDIR)/config.$(KPKG_SUBARCH)
   kelfimagesrc = vmlinux
   kelfimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
+else
+  loaderdep=grub | grub2
+  loader=grub
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+  kimagesrc = $(strip $(KERNEL_ARCH)/compile/GENERIC/kernel)
+  kimagedest = $(INT_IMAGE_DESTDIR)/kfreebsd-$(version)
+endif
+  DEBCONFIG= $(CONFDIR)/config.$(KPKG_SUBARCH)
 endif
 
 ##### S/390
@@ -810,10 +839,16 @@
 version = 
$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)$(iatv)$(INT_FLAV)$(LOCALVERSION)
 
 # See if we are being run in the kernel directory
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
 IN_KERNEL_DIR := $(shell if test -d drivers && test -d kernel && test -d fs && 
test                \
                                  -d include/linux ; then                       
     \
                             echo YES;                                          
     \
                          fi )
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+IN_KERNEL_DIR := $(shell if test -d dev && test -d kern && test -d fs && \
+                  test -d i386/include ; then echo YES; fi)
+endif
 
 IN_KERNEL_HEADERS=$(shell if [ -f $(INT_STEM)-headers.revision ]; then         
           \
                                cat $(INT_STEM)-headers.revision;               
           \
@@ -1269,7 +1304,7 @@
 # Deal with modules issues
 
 # define MODULES_ENABLED if appropriate
-ifneq ($(strip $(shell grep -E ^[^\#]*CONFIG_MODULES $(CONFIG_FILE))),)
+ifneq ($(filter kfreebsd-gnu, $(DEB_HOST_GNU_SYSTEM)):$(strip $(shell grep -E 
^[^\#]*CONFIG_MODULES $(CONFIG_FILE))),:)
 MODULES_ENABLED := YES
 endif
 
@@ -1582,13 +1617,18 @@
        fi
 endif
        -test -f stamp-configure || $(deb_rule) configure
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
        $(MAKE) $(do_parallel) $(EXTRAV_ARG) $(FLAV_ARG) ARCH=$(KERNEL_ARCH) \
                            $(CROSS_ARG) $(target)
 ifneq ($(strip $(shell grep -E ^[^\#]*CONFIG_MODULES $(CONFIG_FILE))),)
        $(MAKE) $(do_parallel) $(EXTRAV_ARG) $(FLAV_ARG) ARCH=$(KERNEL_ARCH) \
                            $(CROSS_ARG) modules
 endif
-       COLUMNS=150 dpkg -l 'gcc*' perl dpkg 'libc6*' binutils ldso make 
dpkg-dev |\
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+       $(PMAKE) -C $(architecture)/compile/GENERIC
+endif
+       COLUMNS=150 dpkg -l 'gcc*' perl dpkg 'libc[0-9]*' binutils ldso make 
dpkg-dev |\
          awk '$$1 ~ /[hi]i/ { printf("%s-%s\n", $$2, $$3) }'   > 
debian/buildinfo
        @echo this was built on a machine with the kernel: >> debian/buildinfo
        uname -a >> debian/buildinfo
@@ -1667,7 +1707,7 @@
        -test ! -f stamp-debian && \
                ( test ! -f debian/official || test ! -f debian/control) && \
           sed -e 's/=V/$(version)/g'        -e 's/=D/$(debian)/g'       \
-              -e 's/=A/$(architecture)/g'   -e 's/=SA/$(INT_SUBARCH)/g' \
+              -e 's/=A/$(DEB_HOST_ARCH)/g'   -e 's/=SA/$(INT_SUBARCH)/g' \
                 -e 's/=L/$(int_loaderdep) /g' -e 's/=I/$(initrddep)/g'    \
                 -e 's/=CV/$(VERSION).$(PATCHLEVEL)/g'                     \
                 -e 's/=M/$(maintainer) <$(email)>/g'                      \
@@ -1675,7 +1715,7 @@
                         $(CONTROL)> debian/control
        -test ! -f stamp-debian && test ! -f debian/official &&              \
           sed -e 's/=V/$(version)/g' -e 's/=D/$(debian)/g'                  \
-           -e 's/=A/$(architecture)/g' -e 's/=M/$(maintainer) <$(email)>/g' \
+           -e 's/=A/$(DEB_HOST_ARCH)/g' -e 's/=M/$(maintainer) <$(email)>/g' \
             -e 's/=ST/$(INT_STEM)/g'                                         \
                $(DEBDIR)/changelog > debian/changelog
        -test ! -f debian/rules &&                                       \
@@ -1728,14 +1768,29 @@
        @rm -f .mak
 else
 conf.vars: Makefile
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
        $(MAKE) -f debian/rules INCLUDE_KERNEL_MAKEFILE=yes conf_vars
+else
+       touch conf.vars
+endif
 endif
 
 dummy_do_dep:
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
        +$(MAKE) $(EXTRAV_ARG) $(FLAV_ARG) $(CROSS_ARG) \
                                  ARCH=$(KERNEL_ARCH) $(fast_dep) dep
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+       $(PMAKE) -C $(architecture)/compile/GENERIC depend
+endif
 
 stamp-kernel-configure: stamp-debian .config
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+       mkdir -p bin
+       ln -sf `which gcc-3.4` bin/cc
+       cd $(architecture)/conf && freebsd-config GENERIC
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
        $(MAKE) $(EXTRAV_ARG) $(FLAV_ARG) $(CROSS_ARG) \
                                  ARCH=$(KERNEL_ARCH) $(config_target)
 ifeq ($(shell if [ $(VERSION) -ge 2 ] && [ $(PATCHLEVEL) -ge 5 ]; then \
@@ -1749,6 +1804,7 @@
                                 ARCH=$(KERNEL_ARCH) prepare
 endif
 endif
+endif
        echo done >  $@
 
 configure: debian .config stamp-configure
@@ -1786,10 +1842,20 @@
 # only unpatch what we have applied? That would be changed, though saner,
 # behaviour
 real_stamp_clean:
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
        test ! -f .config || cp -pf .config config.precious
        -test -f Makefile && \
             $(MAKE) $(FLAV_ARG) $(EXTRAV_ARG) ARCH=$(KERNEL_ARCH) distclean
        test ! -f config.precious || mv -f config.precious .config
+else
+       rm -f .config
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+       rm -rf bin
+       if test -e $(architecture)/compile/GENERIC ; then \
+               $(PMAKE) -C $(architecture)/compile/GENERIC clean ; \
+       fi
+endif
 ifeq ($(strip $(patch_the_kernel)),YES)
        $(deb_rule) unpatch_now
 endif
@@ -1899,7 +1965,7 @@
            $(install_file) debian/README.Debian $(SOURCE_DOC)/README.Debian ; \
           gzip -9qf $(SOURCE_DOC)/README.Debian;\
        else \
-           sed -e 's/=V/$(version)/g' -e 's/=A/$(architecture)/g' \
+           sed -e 's/=V/$(version)/g' -e 's/=A/$(DEB_HOST_ARCH)/g' \
              -e 's/=ST/$(INT_STEM)/g'                              \
                  $(DEBDIR)/README.source >  $(SOURCE_SRC)/README.Debian ; \
        fi
@@ -1941,6 +2007,13 @@
        $(deb_rule) real_stamp_headers
 endif
 
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
+config = .config
+endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+config = $(architecture)/conf/GENERIC
+endif
+
 real_stamp_headers:
 ifneq ($(strip $(MAKING_VIRTUAL_IMAGE)),)
        echo done >  stamp-headers
@@ -1966,7 +2039,7 @@
        gzip -9qf                                $(HEADER_DOC)/changelog.Debian
        $(install_file) $(DEBDIR)/README.headers $(HEADER_DOC)/debian.README
        gzip -9qf                                $(HEADER_DOC)/debian.README
-       $(install_file) .config                       
$(HEADER_DOC)/config-$(version)
+       $(install_file) $(config)                $(HEADER_DOC)/config-$(version)
        $(install_file) conf.vars            $(HEADER_DOC)/conf.vars
        gzip -9qf                                $(HEADER_DOC)/config-$(version)
        gzip -9qf                                $(HEADER_DOC)/conf.vars
@@ -2009,7 +2082,7 @@
        (cd $(HEADER_SRC);              \
                test -x $(header_clean_hook) && $(header_clean_hook))
 endif
-       dpkg-gencontrol -DArchitecture=$(architecture) -isp \
+       dpkg-gencontrol -DArchitecture=$(DEB_HOST_ARCH) -isp \
                         -p$(h_package) -P$(HEADER_TOP)/
        chown -R root:root $(HEADER_TOP)
        chmod -R og=rX $(HEADER_TOP)
@@ -2180,8 +2253,10 @@
        $(install_file) $(DEBDIR)/linux.1 $(MAN1DIR)/linux-$(version).1
        gzip -9fq       $(MAN1DIR)/linux-$(version).1
 endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
        $(install_file) Documentation/Changes $(IMAGE_DOC)/
        gzip -9qf $(IMAGE_DOC)/Changes
+endif
        $(install_file) debian/changelog        $(IMAGE_DOC)/changelog.Debian
        gzip -9qf                               $(IMAGE_DOC)/changelog.Debian
 ifdef loaderdoc
@@ -2194,7 +2269,7 @@
        echo "This was produced by kernel-package version $(kpkg_version)." > \
                   $(IMAGE_DOC)/Buildinfo
        chmod 0644 $(IMAGE_DOC)/Buildinfo
-       $(install_file) .config          $(INT_IMAGE_DESTDIR)/config-$(version)
+       $(install_file) $(config)        $(INT_IMAGE_DESTDIR)/config-$(version)
        $(install_file) conf.vars        $(IMAGE_DOC)/conf.vars
        gzip -9qf                        $(IMAGE_DOC)/conf.vars
        $(install_file) debian/buildinfo $(IMAGE_DOC)/buildinfo
@@ -2214,11 +2289,12 @@
 ifeq ($(strip $(HAVE_EXTRA_DOCS)),YES)
        $(install_file) $(extra_docs)            $(IMAGE_DOC)/
 endif
-ifneq ($(strip $(shell grep -E ^[^\#]*CONFIG_MODULES $(CONFIG_FILE))),)
-ifeq  ($(strip $(HAVE_NEW_MODLIB)),)
+ifneq ($(filter kfreebsd-gnu, $(DEB_HOST_GNU_SYSTEM)):$(strip $(shell grep -E 
^[^\#]*CONFIG_MODULES $(CONFIG_FILE))),:)
+ifeq  ($(DEB_HOST_GNU_SYSTEM):$(strip $(HAVE_NEW_MODLIB)),linux:)
        $(mod_inst_cmds)
 else
 # could have also said DEPMOD=/bin/true instead of moving files
+ifeq ($(DEB_HOST_GNU_SYSTEM), linux)
 ifneq ($(strip $(KERNEL_CROSS)),)
        mv System.map System.precious
 endif
@@ -2228,6 +2304,22 @@
        mv System.precious System.map
 endif
 endif
+ifeq ($(DEB_HOST_GNU_SYSTEM), kfreebsd-gnu)
+       mkdir -p $(INSTALL_MOD_PATH)/boot/defaults
+       install -o root -g root -m 644 \
+               $(architecture)/conf/GENERIC.hints \
+               $(INSTALL_MOD_PATH)/boot/device.hints
+       install -o root -g root -m 644 \
+               boot/forth/loader.conf \
+               $(INSTALL_MOD_PATH)/boot/loader.conf 
+       touch $(INSTALL_MOD_PATH)/boot/loader.conf
+       install -o root -g root -m 644 \
+               boot/forth/loader.conf \
+               $(INSTALL_MOD_PATH)/boot/defaults/loader.conf
+       $(PMAKE) -C $(architecture)/compile/GENERIC install \
+               DESTDIR=$(INSTALL_MOD_PATH)
+endif
+endif
        test ! -e $(IMAGE_TOP)/lib/modules/$(version)/source ||                 
       \
           mv $(IMAGE_TOP)/lib/modules/$(version)/source ./debian/source-link
        test ! -e $(IMAGE_TOP)/lib/modules/$(version)/build ||                  
       \
@@ -2298,7 +2390,7 @@
 ifeq ($(strip $(delete_build_link)),YES)
        rm -f $(IMAGE_TOP)/lib/modules/$(version)/build
 endif
-       dpkg-gencontrol -DArchitecture=$(architecture) -isp                   \
+       dpkg-gencontrol -DArchitecture=$(DEB_HOST_ARCH) -isp                   \
                         -p$(i_package) -P$(IMAGE_TOP)/
        chmod -R og=rX $(IMAGE_TOP)
        chown -R root:root $(IMAGE_TOP)
diff -ur kernel-package-8.119.old/make-kpkg kernel-package-8.119/make-kpkg
--- kernel-package-8.119.old/make-kpkg  2004-11-17 17:33:32.000000000 +0100
+++ kernel-package-8.119/make-kpkg      2005-02-08 17:54:06.000000000 +0100
@@ -743,7 +743,8 @@
     exit 1;
   }
   # See if we are running in a linux kernel directory
-  if (!(-d "drivers" && -d "kernel" && -d "fs" && -d "include/linux")){
+  if ((!(-d "drivers" && -d "kernel" && -d "fs" && -d "include/linux"))
+     && (!(-d "dev" && -d "kern" && -d "fs" && -d "i386/include"))){
     my @other_targets = grep (! m/^modules/, @ARGV);
     if ($#other_targets != -1 || ! -d "include/linux") {
       print STDERR <<EOERR;

--===============1832054112==--

---------------------------------------
Received: (at 294235-close) by bugs.debian.org; 13 Apr 2005 07:24:19 +0000
>From [EMAIL PROTECTED] Wed Apr 13 00:24:19 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DLcEV-0006NT-00; Wed, 13 Apr 2005 00:24:19 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DLc7S-0006XF-00; Wed, 13 Apr 2005 03:17:02 -0400
From: Manoj Srivastava <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#294235: fixed in kernel-package 8.131
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 13 Apr 2005 03:17:02 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Source: kernel-package
Source-Version: 8.131

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

kernel-package_8.131.dsc
  to pool/main/k/kernel-package/kernel-package_8.131.dsc
kernel-package_8.131.tar.gz
  to pool/main/k/kernel-package/kernel-package_8.131.tar.gz
kernel-package_8.131_all.deb
  to pool/main/k/kernel-package/kernel-package_8.131_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Manoj Srivastava <[EMAIL PROTECTED]> (supplier of updated kernel-package 
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 [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 13 Apr 2005 01:53:41 -0500
Source: kernel-package
Binary: kernel-package
Architecture: source all
Version: 8.131
Distribution: unstable
Urgency: low
Maintainer: Manoj Srivastava <[EMAIL PROTECTED]>
Changed-By: Manoj Srivastava <[EMAIL PROTECTED]>
Description: 
 kernel-package - A utility for building Linux kernel related Debian packages.
Closes: 294235 303833
Changes: 
 kernel-package (8.131) unstable; urgency=low
 .
   * Bug fix: "kernel-package: README.modules should include targets
     called", thanks to Kevin Locke                        (Closes: #303833).
   * Updated spanish man pages.
   * Spit out a warning of the module dir does not exist. Earlier, we were
     silently ignoring missing third party modules.
   * Bug fix: "Support for kfreebsd", thanks to Robert Millan
                                                           (Closes: #294235).
Files: 
 ed9c6e3d6435379acf2e24dd04f04252 483 misc optional kernel-package_8.131.dsc
 0d1a628fe4837ea863ecd0fa0e7dad23 507543 misc optional 
kernel-package_8.131.tar.gz
 f2e728a7a3cfced9a0c66359a4f4cdd4 356846 misc optional 
kernel-package_8.131_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)

iD8DBQFCXMQXIbrau78kQkwRAnziAKC6U7S6/B3DgThqvey2CR3PAR47iQCdHUVa
lx78R0ebbXmtGG4O1ttLSJs=
=bZMr
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to