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

Bug#210818: marked as done (usb-discover: Makes installation bootup fail on systems without PCI)



Your message dated Sun, 14 Sep 2003 13:34:50 -0400
with message-id <E19yalu-0004qG-00@auric.debian.org>
and subject line Bug#210818: fixed in usb-discover 0.03
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; 13 Sep 2003 22:11:53 +0000
>From root@sesse.net Sat Sep 13 17:11:51 2003
Return-path: <root@sesse.net>
Received: from trofast.sesse.net [129.241.93.32] 
	by master.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 19yIcQ-0002XK-00; Sat, 13 Sep 2003 17:11:51 -0500
Received: from root by trofast.sesse.net with local (Exim 3.36 #1 (Debian))
	id 19yIcL-0003ma-00; Sun, 14 Sep 2003 00:11:45 +0200
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: "Steinar H. Gunderson" <sgunderson@bigfoot.com>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: usb-discover: Makes installation bootup fail on systems without PCI
X-Mailer: reportbug 2.27
Date: Sun, 14 Sep 2003 00:11:45 +0200
Message-Id: <[🔎] E19yIcL-0003ma-00@trofast.sesse.net>
Delivered-To: submit@bugs.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0
	tests=BAYES_30,HAS_PACKAGE
	version=2.53-bugs.debian.org_2003_9_13
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_9_13 (1.174.2.15-2003-03-30-exp)

Package: usb-discover
Version: 0.02 (not installed)
Severity: important
Tags: patch

If /lib/debian-installer.d/S45usb-linux is run on a system without PCI,
it does an "exit 0":

if [ ! -e /proc/bus/pci/devices ]; then
        # PCI not present. quit
        exit 0
fi

However, since this script is sourced from /sbin/debian-installer, not
executed in its own right, this makes /sbin/debian-installer exit, get
respawned by exit and then everything begins from scratch (making the
whole installation system useless since it never reaches main-menu).

Fixing this should be trivial, just remove the exit and change the if 
(negating the test) to

if [ -e /proc/bus/pci/devices ]; then
	(put entire rest of script here)
fi

This affects all non-PCI systems, including the system bochs attempts to
emulate, making testing with bochs impossible. :-)

-- System Information:
Debian Release: 
Architecture: i386
Kernel: Linux trofast.sesse.net 2.4.22 #7 Fri Sep 5 00:09:43 CEST 2003 i686
Locale: LANG=C, LC_CTYPE=en_US.ISO8859-1


---------------------------------------
Received: (at 210818-close) by bugs.debian.org; 14 Sep 2003 17:41:47 +0000
>From katie@auric.debian.org Sun Sep 14 12:41:47 2003
Return-path: <katie@auric.debian.org>
Received: from auric.debian.org [206.246.226.45] 
	by master.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 19yasd-0006ot-00; Sun, 14 Sep 2003 12:41:47 -0500
Received: from katie by auric.debian.org with local (Exim 3.35 1 (Debian))
	id 19yalu-0004qG-00; Sun, 14 Sep 2003 13:34:50 -0400
From: Alastair McKinstry <mckinstry@debian.org>
To: 210818-close@bugs.debian.org
X-Katie: $Revision: 1.35 $
Subject: Bug#210818: fixed in usb-discover 0.03
Message-Id: <E19yalu-0004qG-00@auric.debian.org>
Sender: Archive Administrator <katie@auric.debian.org>
Date: Sun, 14 Sep 2003 13:34:50 -0400
Delivered-To: 210818-close@bugs.debian.org

Source: usb-discover
Source-Version: 0.03

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

usb-discover_0.03.dsc
  to pool/main/u/usb-discover/usb-discover_0.03.dsc
usb-discover_0.03.tar.gz
  to pool/main/u/usb-discover/usb-discover_0.03.tar.gz
usb-discover_0.03_all.udeb
  to pool/main/u/usb-discover/usb-discover_0.03_all.udeb



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 210818@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Alastair McKinstry <mckinstry@debian.org> (supplier of updated usb-discover 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, 14 Sep 2003 16:46:37 +0200
Source: usb-discover
Binary: usb-discover
Architecture: source all
Version: 0.03
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Alastair McKinstry <mckinstry@debian.org>
Description: 
 usb-discover - Discover USB and load kernel modules (udeb)
Closes: 210818
Changes: 
 usb-discover (0.03) unstable; urgency=low
 .
   * Sebastian Ley
     - S45usb-linux: Do not die if something goes wrong (in this case, no pci
       detected) because the file is sourced. This was responsible for the
       endless loop when testing d-i with bochs. Thanks Steinar H. Gunderson.
       (Closes: #210818)
   * Alastair McKinstry
     - Move to Standards-Versiob 3.6.1.0; no changes required.
     - Move Build-Depends to Build-Depends-Indep; no arch-dependent pkgs.
Files: 
 799cb3fb822f0ae0ad27257541c26ec9 587 debian-installer standard usb-discover_0.03.dsc
 da4b3fb06c77ced432e33a3134493f91 2833 debian-installer standard usb-discover_0.03.tar.gz
 da9bd45619d8bce4854d79028beb1e16 1146 debian-installer standard usb-discover_0.03_all.udeb

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

iD8DBQE/ZKXT+o43kJBROPQRAuxQAKD35uvKeywL0KbVXcjH3vxf4VpkDgCg+S4C
UsRbaN4CC2RrgeyJhhdI2IQ=
=RfVP
-----END PGP SIGNATURE-----



Reply to: