Your message dated Tue, 19 Jul 2005 13:17:03 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#318431: fixed in kernel-package 9.002
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; 15 Jul 2005 14:14:32 +0000
>From [EMAIL PROTECTED] Fri Jul 15 07:14:32 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp11.wanadoo.fr [193.252.22.31] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1DtQxT-0004oe-00; Fri, 15 Jul 2005 07:14:31 -0700
Received: from me-wanadoo.net (localhost [127.0.0.1])
        by mwinf1102.wanadoo.fr (SMTP Server) with ESMTP id BA3991C0009A
        for <[EMAIL PROTECTED]>; Fri, 15 Jul 2005 16:13:56 +0200 (CEST)
Received: from pegasos (AStrasbourg-251-1-55-245.w82-126.abo.wanadoo.fr 
[82.126.139.245])
        by mwinf1102.wanadoo.fr (SMTP Server) with ESMTP id 749B01C00091;
        Fri, 15 Jul 2005 16:13:56 +0200 (CEST)
X-ME-UUID: [EMAIL PROTECTED]
Received: from luther by pegasos with local (Exim 4.51)
        id 1DtQqt-0006tp-QD; Fri, 15 Jul 2005 16:07:43 +0200
Content-Type: multipart/mixed; boundary="===============0989552031=="
MIME-Version: 1.0
From: Sven Luther <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: kernel-package: Please consider adding (or commenting on) this official
 powerpc/ppc64 patch
X-Mailer: reportbug 3.15
Date: Fri, 15 Jul 2005 16:07:43 +0200
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-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

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

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

Package: kernel-package
Version: 9.001
Severity: important
Tags: patch


Hi Manoj,

Please consider adding the attached patch to kernel-package. It will be needed
as soon as the ppc64 biarch compiler is out, to build ppc64 kernels, as well
as included the mkvmlinuz support logic in part here and in part in the actual
kernel tree. This second step is still a bit primitive, but as you will see
completely orthogonal to the rest of the stuff, and i have to see how i bring
this mkvmlinuz support patch upstream.

Anyway, i would have liked to have this in for the 2.6.12 kernel release, but
as dilinger wants to upload today, i don't think this is going to happen.

Friendly,

Sven Luther

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-powerpc
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages kernel-package depends on:
ii  dpkg                         1.13.10     Package maintenance system for Deb
ii  dpkg-dev                     1.13.10     Package building tools for Debian
ii  gcc [c-compiler]             4:3.3.6-1   The GNU C compiler
ii  gcc-2.95 [c-compiler]        1:2.95.4-22 The GNU C compiler
ii  gcc-3.3 [c-compiler]         1:3.3.6-7   The GNU C compiler
ii  make                         3.80-9      The GNU version of the "make" util
ii  perl                         5.8.7-3     Larry Wall's Practical Extraction 

Versions of packages kernel-package recommends:
ii  bzip2                       1.0.2-7      high-quality block-sorting file co
ii  libc6-dev [libc-dev]        2.3.2.ds1-22 GNU C Library: Development Librari

-- no debconf information

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

--- zzz/kernel-package/kernel/rules     2005-06-13 08:11:32.000000000 +0200
+++ kernel-package-9.001.sven1/kernel/rules     2005-07-15 15:21:30.000000000 
+0200
@@ -327,15 +327,33 @@
 
 ##### PowerPC64
 ifeq ($(strip $(architecture)), powerpc64)
-  KERNEL_ARCH=ppc64
-  kimage := vmlinux
-  loader=NoLoader
-  target = $(kimage)
-  kimagesrc = vmlinux
-  kimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
-  DEBCONFIG= $(CONFDIR)/config.$(KPKG_SUBARCH)
-  kelfimagesrc = vmlinux
-  kelfimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
+  ifneq (,$(findstring $(KPKG_SUBARCH), official-powerpc official-powerpc64))
+    ifneq (,$(findstring $(KPKG_SUBARCH), official-powerpc64))
+      KERNEL_ARCH:=ppc64
+    endif
+    ifneq (,$(findstring $(KPKG_SUBARCH), official-powerpc))
+      KERNEL_ARCH:=ppc
+      NEED_POWERPC_MKVMLINUZ_SUPPORT = YES
+      INSTALL_MKVMLINUZ_PATH = 
$(SRCTOP)/$(IMAGE_TOP)/usr/lib/kernel-image-${version}
+    endif
+    target := zImage
+    loaderdep=mkvmlinuz
+    loader=NoLoader
+    kimagesrc = vmlinux
+    kimage := vmlinux
+    kimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
+    DEBCONFIG= $(CONFDIR)/config.$(KPKG_SUBARCH)
+  else
+    KERNEL_ARCH=ppc64
+    kimage := vmlinux
+    loader=NoLoader
+    target = $(kimage)
+    kimagesrc = vmlinux
+    kimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
+    DEBCONFIG= $(CONFDIR)/config.$(KPKG_SUBARCH)
+    kelfimagesrc = vmlinux
+    kelfimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
+  endif
 endif
 
 ### PowerPC
@@ -363,12 +381,29 @@
     #endif
   endif
 
-  ifeq (,$(findstring $(KPKG_SUBARCH),apus prpmc chrp mbx pmac prep Amiga APUs 
CHRP MBX PReP chrp-rs6k nubus ))
+  ifeq (,$(findstring $(KPKG_SUBARCH),apus prpmc chrp mbx pmac prep Amiga APUs 
CHRP MBX PReP chrp-rs6k nubus official-powerpc official-ppc64 ))
     KPKG_SUBARCH:=$(GUESS_SUBARCH)
   endif
 
   KERNEL_ARCH:=ppc
 
+  ifneq (,$(findstring $(KPKG_SUBARCH), official-powerpc official-powerpc64))
+    ifneq (,$(findstring $(KPKG_SUBARCH), official-powerpc64))
+      KERNEL_ARCH:=ppc64
+    endif
+    ifneq (,$(findstring $(KPKG_SUBARCH), official-powerpc))
+      KERNEL_ARCH:=ppc
+      NEED_POWERPC_MKVMLINUZ_SUPPORT = YES
+      INSTALL_MKVMLINUZ_PATH = 
$(SRCTOP)/$(IMAGE_TOP)/usr/lib/kernel-image-${version}
+    endif
+    target := zImage
+    loaderdep=mkvmlinuz
+    kimagesrc = vmlinux
+    kimage := vmlinux
+    kimagedest = $(INT_IMAGE_DESTDIR)/vmlinux-$(version)
+    DEBCONFIG= $(CONFDIR)/config.$(KPKG_SUBARCH)
+  endif
+
   ifneq (,$(findstring $(KPKG_SUBARCH),APUs apus Amiga))
     KPKG_SUBARCH:=apus
     loader := NoLoader
@@ -2503,6 +2538,10 @@
                IMAGE_TOP=$(IMAGE_TOP) STEM=$(INT_STEM) version=$(version)    \
                        debian/post-install;                                  \
        fi
+ifeq ($(strip $(NEED_POWERPC_MKVMLINUZ_SUPPORT)),YES)
+       $(MAKE) INSTALL_MKVMLINUZ=$(INSTALL_MKVMLINUZ_PATH) ARCH=$(KERNEL_ARCH) 
\
+               -C arch/ppc/boot mkvmlinuz_support_install
+endif
 ifneq ($(strip $(image_clean_hook)),)
        (cd $(IMAGE_TOP);              \
                test -x $(image_clean_hook) && $(image_clean_hook))

--===============0989552031==--


---------------------------------------
Received: (at 318431-close) by bugs.debian.org; 19 Jul 2005 17:25:12 +0000
>From [EMAIL PROTECTED] Tue Jul 19 10:25:11 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1DuvqB-0003lq-00; Tue, 19 Jul 2005 10:25:11 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DuviJ-0005Wg-00; Tue, 19 Jul 2005 13:17:03 -0400
From: Manoj Srivastava <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#318431: fixed in kernel-package 9.002
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 19 Jul 2005 13:17:03 -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-Level: 
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-CrossAssassin-Score: 6

Source: kernel-package
Source-Version: 9.002

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_9.002.dsc
  to pool/main/k/kernel-package/kernel-package_9.002.dsc
kernel-package_9.002.tar.gz
  to pool/main/k/kernel-package/kernel-package_9.002.tar.gz
kernel-package_9.002_all.deb
  to pool/main/k/kernel-package/kernel-package_9.002_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: Tue, 19 Jul 2005 10:34:06 -0500
Source: kernel-package
Binary: kernel-package
Architecture: source all
Version: 9.002
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: 313338 315858 317638 318378 318397 318431 318962
Changes: 
 kernel-package (9.002) unstable; urgency=low
 .
   * Bug fix: "kernel-package: Spelling error in rules file", thanks to
      Peter Marschall                                   (Closes: #317638).
   * Bug fix: "kernel-package: Spelling error in rules file", thanks to
     Aaron Howell                                        (Closes: #313338).
   * Bug fix: "kernel-package: Missing 'scripts' directory in
     kernel-headers produced by make-kpkg", thanks to Marc L. de
     Bruin. Also added Module.symvers, thanks to Ryan Underwood for
     pointing that out.                                  (Closes: #315858).
   * Bug fix: "describe -stem in the manpage", thanks to dann frazier
                                                         (Closes: #318397).
   * Bug fix: "kernel-package: possibly missing xargs option in rules
     file", thanks to Rob Browning                       (Closes: #318378).
   * Bug fix: "kernel-package: Please consider adding (or commenting on)
     this official powerpc/ppc64 patch", thanks to Sven Luther
                                                         (Closes: #318431).
   * Bug fix: "kernel-package: please include more --config options",
     thanks to Andres Salomon                             (Closes: #318962).
Files: 
 306e4eb930d38a206ff8981b151411c8 483 misc optional kernel-package_9.002.dsc
 884fc8b976e39a11f614639392ea014b 534499 misc optional 
kernel-package_9.002.tar.gz
 553b37a5e5d344f17da18f12b6576f79 363030 misc optional 
kernel-package_9.002_all.deb

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

iD4DBQFC3TBmIbrau78kQkwRAlZ+AJ9cKy1v0nEEN1LBEPhqgwtFtGGODwCWJa46
4jrwd5teyjtwagyCMR9fWw==
=3gD/
-----END PGP SIGNATURE-----


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

Reply via email to