Your message dated Tue, 20 May 2014 06:52:10 +0000
with message-id <[email protected]>
and subject line Bug#747662: Removed package(s) from unstable
has caused the Debian Bug report #499923,
regarding [hal] hald-probe-volume fails with "kernel: cdrom: pid XXX must open
device O_NONBLOCK!"
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 [email protected]
immediately.)
--
499923: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=499923
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Package: hal
Version: 0.5.11-3
Severity: normal
Tags: patch
Hello.
Because this bug, it is impossible to use Nautilus/Gnome-mount "auto
action" features for non data optical discs and no icons are shown on
desktop/Nautilus pane.
In detail, hald-probe-volume cannot determine the disc type (empty,
audio, VCD, ...) because it cannot successfully open the device file
descriptor.
In attach, the (simpler) patch that resolved the bug for me.
- --- System information. ---
Architecture: i386
Kernel: Linux 2.6.26-gas-machine
Debian Release: lenny/sid
850 testing security.debian.org
850 testing ftp.it.debian.org
800 unstable www.debian-multimedia.org
800 unstable opensync.gforge.punktart.de
800 unstable ftp.it.debian.org
750 experimental ftp.it.debian.org
500 trylegaldownloads trylegaldownloads.de
500 stable wine.budgetdedicated.com
500 etch-wx apt.wxwidgets.org
- --- Package information. ---
Depends (Version) | Installed
====================================-+-================
libc6 (>= 2.7-1) | 2.7-13
libdbus-1-3 (>= 1.0.2) | 1.2.1-3
libdbus-glib-1-2 (>= 0.71) | 0.76-1
libexpat1 (>= 1.95.8) | 2.0.1-4
libgcc1 (>= 1:4.1.1) | 1:4.3.1-9
libglib2.0-0 (>= 2.16.0) | 2.16.5-1
libhal-storage1 (>= 0.5.11~rc2) | 0.5.11-3
libhal1 (>= 0.5.10) | 0.5.11-3
libsmbios1 | 0.13.13-1
libstdc++6 (>= 4.1.1) | 4.3.1-9
libusb-0.1-4 (>= 2:0.1.12) | 2:0.1.12-12
libvolume-id0 (>= 0.113-1~) | 0.125-6
adduser | 3.110
pciutils | 1:3.0.0-4
usbutils | 0.73-10
udev (>= 0.065) | 0.125-6
dbus (>= 0.61) | 1.2.1-3
lsb-base (>= 3.2-14) | 3.2-20
hal-info (>= 20070402) | 20080508+git20080601-1
pm-utils | 1.1.2.3-1
mount (>= 2.13) | 2.13.1.1-1
- --
Alessio Gaeta
http://meden.uni.cc
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAkjZJ0MACgkQirbk3DO+UZ2GSQCfbd87rCwuaqYQR3u2MrEJFGtU
o2wAoNAUixfMi7ItqCMmh1MyxIgnLd9z
=kh2Y
-----END PGP SIGNATURE-----
--- hal-0.5.11.orig/hald/linux/probing/probe-volume.c 2008-05-08 01:23:44.000000000 +0200
+++ hal-0.5.11/hald/linux/probing/probe-volume.c 2008-09-23 14:17:32.000000000 +0200
@@ -376,7 +376,10 @@ main (int argc, char *argv[])
/* set up signal handler in case I/O to the device takes too long and the runner kills us */
signal (SIGTERM, handle_sigterm);
- fd = open (device_file, O_RDONLY);
+ if (is_disc)
+ fd = open (device_file, O_RDONLY | O_NONBLOCK);
+ else
+ fd = open (device_file, O_RDONLY);
if (fd < 0)
goto out;
--- End Message ---
--- Begin Message ---
Version: 0.5.14-8+rm
Dear submitter,
as the package hal has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/747662
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Ansgar Burchardt (the ftpmaster behind the curtain)
--- End Message ---