[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#335264: marked as done (yaird fails with older (titanium) powerbooks.)



Your message dated Sat, 22 Oct 2005 18:17:24 -0700
with message-id <E1ETUUG-0001Yi-00@spohr.debian.org>
and subject line Bug#335264: fixed in yaird 0.0.11-7
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; 22 Oct 2005 23:45:22 +0000
>From luther@debian.org Sat Oct 22 16:45:22 2005
Return-path: <luther@debian.org>
Received: from smtp7.wanadoo.fr [193.252.22.24] 
	by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
	id 1ETT3C-0005rl-00; Sat, 22 Oct 2005 16:45:22 -0700
Received: from me-wanadoo.net (localhost [127.0.0.1])
	by mwinf0701.wanadoo.fr (SMTP Server) with ESMTP id 97C187000097
	for <submit@bugs.debian.org>; Sun, 23 Oct 2005 01:44:51 +0200 (CEST)
Received: from pegasos (AStrasbourg-251-1-59-200.w82-126.abo.wanadoo.fr [82.126.135.200])
	by mwinf0701.wanadoo.fr (SMTP Server) with ESMTP id 6F6F6700008C
	for <submit@bugs.debian.org>; Sun, 23 Oct 2005 01:44:51 +0200 (CEST)
X-ME-UUID: 20051022234451456.6F6F6700008C@mwinf0701.wanadoo.fr
Received: from sven by pegasos with local (Exim 4.50)
	id 1ETSqF-0005K1-5S
	for submit@bugs.debian.org; Sun, 23 Oct 2005 01:31:59 +0200
Content-Type: multipart/mixed; boundary="===============1977676668=="
MIME-Version: 1.0
From: Sven Luther <luther@debian.org>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: yaird fails with older (titanium) powerbooks.
X-Mailer: reportbug 3.8
Date: Sun, 23 Oct 2005 01:31:54 +0200
Message-Id: <[🔎] E1ETSqF-0005K1-5S@pegasos>
Delivered-To: submit@bugs.debian.org
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.

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

Package: yaird
Version: 0.0.11-6
Severity: normal
Tags: patch


Hi, ...

On my titanium powerbook, yaird fails with : 

 yaird error: unrecognised device: /sys/devices/pci0001:10/0001:10:17.0/0.80000000:mac-io
 yaird error: unrecognised device: /sys/devices/pci0001:10/0001:10:17.0/0.80000000:mac-io/0.0001f000:ata-4

Well, those are non-fatal errors, and the mac-io is just a super-controller
kind of thingy sitting on the pci bus, and holding the ata-* devices, which in
turn have ide0 or ide1 subdirs, which are the ones given in the path.

Now, there are two problems, first is that we should harmlessly recognize
those above, provided in the attached patch, well not sure about the exact
syntax of the comment, but this should do, and i added a small typo-fixing in
the above comment :).

The second problem is that since the initrd is generated correctly, those
non-harmfull errors should maybe not cause mkinitrd.yaird to return and error
code of 1 and thus fail, not sure though.

Friendly,

Sven Luther

-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-1-powerpc
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

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

--- /usr/lib/yaird/perl/Hardware.pm.orig	2005-10-23 00:35:19.000000000 +0200
+++ /usr/lib/yaird/perl/Hardware.pm	2005-10-23 01:30:01.000000000 +0200
@@ -36,7 +36,7 @@
 
 
 #
-# moduleList -- given a path relativwe to /sys/devices,
+# moduleList -- given a path relative to /sys/devices,
 # return a list of the modules needed to activate it.
 #
 sub moduleList ($) {
@@ -73,6 +73,12 @@
 		elsif ($abspath =~ m!/ide\d+$!) {
 			# IDE bus; harmless
 		}
+		elsif ($abspath =~ m!/.*:mac-io$!) {
+			# PowerMac super-io controller; harmless
+		}
+		elsif ($abspath =~ m!/.*:ata-\d+$!) {
+			# PowerMac ata controller; harmless
+		}
 		elsif ($abspath =~ m!/ide\d+/\d+\.\d+$!) {
 			# IDE device
 			my $dev = IdeDev->new (path => $abspath);

--===============1977676668==--


---------------------------------------
Received: (at 335264-close) by bugs.debian.org; 23 Oct 2005 01:21:03 +0000
>From katie@spohr.debian.org Sat Oct 22 18:21:03 2005
Return-path: <katie@spohr.debian.org>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
	id 1ETUUG-0001Yi-00; Sat, 22 Oct 2005 18:17:24 -0700
From: Jonas Smedegaard <dr@jones.dk>
To: 335264-close@bugs.debian.org
X-Katie: $Revision: 1.56 $
Subject: Bug#335264: fixed in yaird 0.0.11-7
Message-Id: <E1ETUUG-0001Yi-00@spohr.debian.org>
Sender: Archive Administrator <katie@spohr.debian.org>
Date: Sat, 22 Oct 2005 18:17:24 -0700
Delivered-To: 335264-close@bugs.debian.org
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

Source: yaird
Source-Version: 0.0.11-7

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

yaird_0.0.11-7.diff.gz
  to pool/main/y/yaird/yaird_0.0.11-7.diff.gz
yaird_0.0.11-7.dsc
  to pool/main/y/yaird/yaird_0.0.11-7.dsc
yaird_0.0.11-7_powerpc.deb
  to pool/main/y/yaird/yaird_0.0.11-7_powerpc.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 335264@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jonas Smedegaard <dr@jones.dk> (supplier of updated yaird 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 ftpmaster@debian.org)


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

Format: 1.7
Date: Sun, 23 Oct 2005 01:50:21 +0200
Source: yaird
Binary: yaird
Architecture: source powerpc
Version: 0.0.11-7
Distribution: unstable
Urgency: low
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Jonas Smedegaard <dr@jones.dk>
Description: 
 yaird      - Yet Another mkInitRD
Closes: 335264
Changes: 
 yaird (0.0.11-7) unstable; urgency=low
 .
   * Apply patch to ignore Apple IDE bus. Closes: bug#335264 (thanks to
     Sven Luther <sven.luther@wanadoo.fr> and myself).
Files: 
 dc667b534930fb2fe1fa8584bed84194 748 utils optional yaird_0.0.11-7.dsc
 0fc9f00ba47a31bf4f7b7af38966855c 9067 utils optional yaird_0.0.11-7.diff.gz
 27f9887bd2027391b7b79d2460ce1250 168218 utils optional yaird_0.0.11-7_powerpc.deb

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

iD8DBQFDWt9Un7DbMsAkQLgRAgVoAJ4vAidh9m7/Zi4u0V+zfw2tRZTa7gCfZ1oW
O3ySkULjF+XtN81dyE6/JU8=
=V+9O
-----END PGP SIGNATURE-----



Reply to: