Bug#635653: [linux-2.6] Please pick: iwlagn: check for !priv-txq in iwlagn_wait_tx_queue_empty

2011-07-28 Thread Florian Kriener
On Thursday 28 July 2011 00:23:00 you wrote:
 Does the following work?  It has been applied upstream and will
 probably be part of v3.1-rc1.

Short version: Yes it works, but the patch did not apply to the curren 
linux-source package.

Long Version:

I tried to apply the patch, but it seemed to be for a different version 
than that of linux-source-3.0.0 version 3.0.0-1, so I had to apply it by 
hand (not using git that is). See below for my diff (). Then I 
configured and compiled the kernel with

make localmodconfig
make clean
make -j 3 KDEB_PKGVERSION=3.0.0-mac80211.1 deb-pkg

and installed it with

dpkg -i linux-image-3.0.0_3.0.0-mac80211.1_amd64.deb.

(It looks like I choose a wrong name for the version here because the 
installation didn't do what I hoped -- to have a separate entry in the 
boot loader -- and I had to remove linux-image-3.0.0-1-amd64 for it to 
work out.)

Then I rebooted into runlevel 1 and tried to suspend a few times by 
writing mem\n to /sys/power/state. It never failed.


BTW: Here is a workaround, for those with the same problem and installed 
pm-utils package. Add the following line to a file  in /etc/pm/config.d 
(e.g. iwlagn):

SUSPEND_MODULES=iwlagn


Kind regards,
Florian.


diff -Ntaur linux-source-3.0.0-orig//net/mac80211/pm.c 
linux-source-3.0.0/net/mac80211/pm.c
--- linux-source-3.0.0-orig//net/mac80211/pm.c 2011-07-22 04:17:23.0 
+0200
+++ linux-source-3.0.0/net/mac80211/pm.c 2011-07-28 09:12:00.303443535 +0200
@@ -12,6 +12,9 @@
 struct ieee80211_sub_if_data *sdata;
 struct sta_info *sta;
 
+if (!local-open_count)
+goto suspend;
+
 ieee80211_scan_cancel(local);
 
 if (hw-flags  IEEE80211_HW_AMPDU_AGGREGATION) {
diff -Ntaur linux-source-3.0.0-orig//net/mac80211/util.c 
linux-source-3.0.0/net/mac80211/util.c
--- linux-source-3.0.0-orig//net/mac80211/util.c 2011-07-22 04:17:23.0 
+0200
+++ linux-source-3.0.0/net/mac80211/util.c 2011-07-28 09:23:56.442994666 +0200
@@ -1146,26 +1146,36 @@
 }
 #endif
 
-/* restart hardware */
-if (local-open_count) {
-/*
- * Upon resume hardware can sometimes be goofy due to
- * various platform / driver / bus issues, so restarting
- * the device may at times not work immediately. Propagate
- * the error.
- */
-res = drv_start(local);
-if (res) {
-WARN(local-suspended, Hardware became unavailable 
- upon resume. This could be a software issue 
- prior to suspend or a hardware issue.\n);
-return res;
-}
+/* setup fragmentation threshold */
+drv_set_frag_threshold(local, hw-wiphy-frag_threshold);
+
+/* setup RTS threshold */
+drv_set_rts_threshold(local, hw-wiphy-rts_threshold);
+
+/* reset coverage class */
+drv_set_coverage_class(local, hw-wiphy-coverage_class);
 
-ieee80211_led_radio(local, true);
-ieee80211_mod_tpt_led_trig(local,
-   IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
+/* everything else happens only if HW was up  running */
+if (!local-open_count)
+goto wake_up;
+ 
+/*
+* Upon resume hardware can sometimes be goofy due to
+* various platform / driver / bus issues, so restarting
+* the device may at times not work immediately. Propagate
+* the error.
+*/
+res = drv_start(local);
+if (res) {
+WARN(local-suspended, Hardware became unavailable 
+ upon resume. This could be a software issue 
+ prior to suspend or a hardware issue.\n);
+return res;
 }
+ 
+ieee80211_led_radio(local, true);
+ieee80211_mod_tpt_led_trig(local,
+   IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
 
 /* add interfaces */
 list_for_each_entry(sdata, local-interfaces, list) {
@@ -1190,12 +1200,6 @@
 }
 mutex_unlock(local-sta_mtx);
 
-/* setup fragmentation threshold */
-drv_set_frag_threshold(local, hw-wiphy-frag_threshold);
-
-/* setup RTS threshold */
-drv_set_rts_threshold(local, hw-wiphy-rts_threshold);
-
 /* reconfigure hardware */
 ieee80211_hw_config(local, ~0);


Bug#635653: [linux-2.6] Please pick: iwlagn: check for !priv-txq in iwlagn_wait_tx_queue_empty

2011-07-27 Thread Florian Kriener
Package: linux-2.6
Version: 3.0.0-1-amd64
Severity: normal
Tags: patch

--- Please enter the report below this line. ---

There is a mean bug in the 3.0 version of the iwlagn driver causing a 
kernel panic when going into suspend with a wireless card that is down. 
However, there is a fix for that already that is small clean and works 
like a charm. It would be nice if you could cherry pick it for the next 
update, thanks.

For the origin of the patch and further info see [1]. 

Kind regards,
Florian.


[1] https://patchwork.kernel.org/patch/1005892/

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.0.0-1-amd64

Debian Release: wheezy/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  100 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c 
b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c
index f803fb6..d6ae444 100644
--- a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c
+++ b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c
@@ -1487,6 +1487,9 @@  int iwlagn_wait_tx_queue_empty(struct iwl_priv *priv)
unsigned long now = jiffies;
int ret = 0;
 
+   if (!priv-txq)
+   return 0;
+
/* waiting for all the tx frames complete might take a while */
for (cnt = 0; cnt  priv-hw_params.max_txq_num; cnt++) {
if (cnt == priv-cmd_queue)


Bug#622975: [iceweasel] Please don't use gnome's mime database

2011-04-16 Thread Florian Kriener
Package: iceweasel
Version: 4.0-3
Severity: minor

--- Please enter the report below this line. ---
I am using iceweasel running in a kde session and wondered why iceweasel 
always suggests the wrong application to open a file from the web. For 
example, when I try to open a PDF I want it to open in okular (and 
sometimes in lpr) but instead iceweasel suggests inkscape. I browsed the 
source code a bit and found out that iceweasel queries the gnome-mime-
database before it tries mailcap. Please don't do this, it only works 
for gnome applications and leaves every other desktop manager out.

Removing the gnome-mime-data package works btw. but since inkscape 
depends on it (through gnome-vfs stuff) one cannot reasonable use 
iceweasel with inkscape installed in a non gnome session.

Florian.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.38-2-amd64

Debian Release: wheezy/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  100 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
libc6(= 2.2.5) | 2.11.2-13
libglib2.0-0(= 2.16.0) | 2.28.6-1
libgtk2.0-0   (= 2.10) | 2.24.4-3
libnspr4-0d   (= 1.8.0.10) | 4.8.7-2
libstdc++6   (= 4.1.1) | 4.6.0-2
fontconfig  | 2.8.0-2.1
procps  | 1:3.2.8-10
debianutils   (= 1.16) | 3.4.4
xulrunner-2.0  (= 2.0) | 2.0-3
libasound2  ( 1.0.18) | 1.0.23-2.1
libatk1.0-0 (= 1.29.3) | 2.0.0-1
libbz2-1.0  | 1.0.5-6
libc6(= 2.3.3) | 2.11.2-13
libcairo2(= 1.10.2-2~) | 1.10.2-6
libdbus-1-3  (= 1.0.2) | 1.4.6-1
libevent-1.4-2   (= 1.4.13-stable) | 1.4.13-stable-1
libfontconfig1   (= 2.8.0) | 2.8.0-2.1
libfreetype6 (= 2.2.1) | 2.4.4-1
libgcc1(= 1:4.1.1) | 1:4.6.0-2
libglib2.0-0(= 2.24.0) | 2.28.6-1
libgtk2.0-0 (= 2.18.0) | 2.24.4-3
libhunspell-1.2-0   (= 1.2.11) | 1.2.14-4
libjpeg62  (= 6b1) | 6b1-1
libmozjs4d(= 2.0-3) | 2.0-3
libnspr4-0d( 4.7.1-1) | 4.8.7-2
libnss3-1d(= 3.12.9~beta2) | 
3.12.9.with.ckbi.1.82-1
libpango1.0-0   (= 1.14.0) | 1.28.3-6
libpixman-1-0   (= 0.11.2) | 0.21.6-2
libreadline6   (= 6.0) | 6.1-3
libsqlite3-0(= 3.6.12) | 3.7.5-1
libstartup-notification0  (= 0.10) | 0.10-1
libstdc++6 (= 4.5) | 4.6.0-2
libvpx0  (= 0.9.0) | 0.9.6-1
libx11-6| 2:1.4.3-1
libxext6| 2:1.2.0-2
libxrender1 | 1:0.9.6-1
libxt6  | 1:1.1.1-1
zlib1g (= 1:1.1.4) | 1:1.2.3.4.dfsg-3


Package's Recommends field is empty.

Suggests(Version) | Installed
=-+-===
ttf-lyx   | 2.0.0~rc3-1
 OR latex-xft-fonts   | 
xfonts-mathml | 4
ttf-mathematica4.1| 
xprint| 
mozplugger| 
libgssapi-krb5-2  | 1.9+dfsg-1+b1
 OR libkrb53  | 
libdbus-glib-1-2(= 0.78) | 0.92-1
libgconf2-4   (= 2.27.0) | 2.28.1-6
libgnomevfs2-0 (= 1:2.17.90) | 
libnotify1 (= 0.5.0) | 0.5.0-2
libnotify1-gtk2.10| 
libgnomeui-0  | 
libcanberra0  | 0.24-1







-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#620284: linux-image-2.6.38-2-amd64: Box crashed at resume after hibernate

2011-04-02 Thread Florian Kriener
Tags: patch

There is a fix for it: https://patchwork.kernel.org/patch/679502/

diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 5a0484a..0943eb2 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -891,6 +891,7 @@  void __init setup_arch(char **cmdline_p)
max_low_pfn = max_pfn;
 
high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
+   mmu_cr4_features = read_cr4();
 #endif
 
/*

It would be nice if you could include that patch.

-- 
OH MY GOD!  I just tried Ray Strode's patch and not only does fix the 
sound bug, but it makes flash WAY MORE STABLE!  I used to get flash
crashing on me all the time whenever I played several videos at
once, and now I'm noticing that I no longer see any crashes at all!
Incredible!
   -- C. Stone on https://bugzilla.redhat.com/show_bug.cgi?id=638477
  regarding the substitution of memcpy with memmove in
  libflashplayer.so



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#619166: fixed

2011-03-29 Thread Florian Kriener
fixed upstream, see:

http://cgit.freedesktop.org/systemd/commit/?id=34f0fd8187e3de692a04f20958893e163ead72ca



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#619524: [network-manager] use systemd service for nm_dispatcher as well?

2011-03-24 Thread Florian Kriener
Package: network-manager
Version: 0.8.3.998-1
Severity: wishlist
Tags: patch

--- Please enter the report below this line. ---

Would it make sense to place the DBus activated nm_dispatcher.action 
into it's own systemd service?

I am currently playing around with systemd and noticed that although 
network manager uses systemd it's dispatcher process does not get that 
treatment. So I came up with this unit file:

  [Unit]
  Description=Network Manager Dispatcher

  [Service]
  Type=dbus
  BusName=org.freedesktop.nm_dispatcher
  ExecStart=/usr/lib/NetworkManager/nm-dispatcher.action
  StandardOutput=syslog
  ControlGroup=/system/NetworkManager.service/NetworkManager_dispatcher.service

  [Install]
  Alias=dbus-org.freedesktop.nm_dispatcher.service


And put the line

  SystemdService=dbus-org.freedesktop.nm_dispatcher.service

to the end of org.freedesktop.nm_dispatcher.service in 
/usr/share/dbus-1/system-services.

Now I am wondering is that a good idea? And is it fine to use a sub-
cgroup for the dispatcher service or is that a rather bad idea?

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.38-1-amd64

Debian Release: wheezy/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  100 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-
libc6(= 2.4) | 2.11.2-13
libdbus-1-3(= 1.0.2) | 1.4.6-1
libdbus-glib-1-2(= 0.88) | 0.92-1
libgcrypt11(= 1.4.6) | 1.4.6-5
libglib2.0-0  (= 2.24.0) | 2.28.2-1
libgnutls26 (= 2.9.11-0) | 2.10.5-1
libgudev-1.0-0   (= 146) | 166-1
libnl1   (= 1.1) | 1.1-6
libnm-glib2(= 0.8.2) | 0.8.3.998-1
libnm-util1(= 0.8.2) | 0.8.3.998-1
libpolkit-gobject-1-0   (= 0.99) | 0.101-1
libuuid1(= 2.16) | 2.17.2-9.1
lsb-base  (= 3.2-14) | 3.2-27
wpasupplicant(= 0.6.2-1) | 0.7.3-1
dbus   (= 1.1.2) | 1.4.6-1
udev  | 166-1
adduser   | 3.112+nmu2
isc-dhcp-client   (= 4.1.1-P1-4) | 4.1.1-P1-16


Recommends(Version) | Installed
===-+-===
policykit-1 | 0.101-1
ppp  (= 2.4.5) | 2.4.5-5
dnsmasq-base| 2.57-1
iptables| 1.4.10-1
modemmanager| 0.4+git.20110124t203624.00b6cce-2


Suggests   (Version) | Installed
-+-===
avahi-autoipd| 





-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#619166: [systemd] systemd does not honor /etc/defaule/locale

2011-03-21 Thread Florian Kriener
Package: systemd
Version: 20-1
Severity: normal
Tags: patch

--- Please enter the report below this line. ---
My locale is

LANG=de_DE.UTF-8
LC_MESSAGES=C

which workes perfectly with sysvinit. Systemd on the other hand
expects the locale configuration to be in /etc/locale.conf and
only uses LANG from /etc/default/locale.

The locale parsing logic is in src/locale-setup.c on line 139

#elif defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU)
if (r = 0 
(r = parse_env_file(/etc/default/locale, NEWLINE,
LANG, variables[VARIABLE_LANG],
NULL))  0) {

if (r != -ENOENT)
log_warning(Failed to read /etc/default/locale: %s, 
strerror(-r));
}

IMHO that should better be

#elif defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU)
   if (r = 0 
(r = parse_env_file(/etc/default/locale, NEWLINE,
   LANG,  variables[VARIABLE_LANG],
   LC_CTYPE,  
variables[VARIABLE_LC_CTYPE],
   LC_NUMERIC,
variables[VARIABLE_LC_NUMERIC],
   LC_TIME,   
variables[VARIABLE_LC_TIME],
   LC_COLLATE,
variables[VARIABLE_LC_COLLATE],
   LC_MONETARY,   
variables[VARIABLE_LC_MONETARY],
   LC_MESSAGES,   
variables[VARIABLE_LC_MESSAGES],
   LC_PAPER,  
variables[VARIABLE_LC_PAPER],
   LC_NAME,   
variables[VARIABLE_LC_NAME],
   LC_ADDRESS,
variables[VARIABLE_LC_ADDRESS],
   LC_TELEPHONE,  
variables[VARIABLE_LC_TELEPHONE],
   LC_MEASUREMENT,
variables[VARIABLE_LC_MEASUREMENT],
   LC_IDENTIFICATION, 
variables[VARIABLE_LC_IDENTIFICATION],
NULL))  0) {
   
if (r != -ENOENT)   
log_warning(Failed to read /etc/default/locale: %s, 
strerror(-r));
   }

(untested)

Cheers,
Flo.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.38-1-amd64

Debian Release: wheezy/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  100 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-==
libaudit0| 1.7.13-1+b2
libc6  (= 2.10) | 2.11.2-13
libcap2(= 2.10) | 1:2.20-1
libcryptsetup1(= 2:1.2) | 2:1.2.0-2
libdbus-1-3   (= 1.1.1) | 1.4.6-1
libpam0g   (= 0.99.7.1) | 1.1.2-2
libselinux1  (= 2.0.65) | 2.0.96-1
libudev0(= 154) | 166-1
libwrap0 (= 7.6-4~) | 7.6.q-19
util-linux (= 2.17.2-5) | 2.17.2-9.1


Recommends  (Version) | Installed
=-+-===
libpam-systemd| 20-1


Suggests (Version) | Installed
==-+-===
systemd-gui| 20-1





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#619168: [systemd] timeouts when trying to restart apache2

2011-03-21 Thread Florian Kriener
libcap2(= 2.10) | 1:2.20-1
libcryptsetup1(= 2:1.2) | 2:1.2.0-2
libdbus-1-3   (= 1.1.1) | 1.4.6-1
libpam0g   (= 0.99.7.1) | 1.1.2-2
libselinux1  (= 2.0.65) | 2.0.96-1
libudev0(= 154) | 166-1
libwrap0 (= 7.6-4~) | 7.6.q-19
util-linux (= 2.17.2-5) | 2.17.2-9.1


Recommends  (Version) | Installed
=-+-===
libpam-systemd| 20-1


Suggests (Version) | Installed
==-+-===
systemd-gui| 20-1





-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#619000: [systemd] SystemD fails to start system, hangs at Logging Daemon...

2011-03-20 Thread Florian Kriener
Package: systemd
Version: 19-1
Severity: normal

--- Please enter the report below this line. ---
Today I wanted to take a look at systemd and was stopped early. At first 
it look as if systemd hung after cryptsetup from initrd but after using 
some kernel command line options to increase the verbosity of systemd I 
found that systemd hung when starting rsyslog (if I interpret Logging 
Daemon correctly). Here are the last lines:

Starting /tmp...
Starting Remoount API VFS...
Starting Runtime Directory...
Starting File System Check on Root Device...
Starting Lock Directory...
Starting Logging Daemon...

I then pressed Ctrl-Alt-Del, which lead to console fonts and keymap 
initialization and some error messages.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.38-1-amd64

Debian Release: wheezy/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  100 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-==
libaudit0| 1.7.13-1+b2
libc6  (= 2.10) | 2.11.2-13
libcap2(= 2.10) | 1:2.20-1
libcryptsetup1(= 2:1.2) | 2:1.2.0-2
libdbus-1-3   (= 1.1.1) | 1.4.6-1
libpam0g   (= 0.99.7.1) | 1.1.2-2
libselinux1  (= 2.0.65) | 2.0.96-1
libudev0(= 154) | 166-1
util-linux (= 2.17.2-5) | 2.17.2-9.1


Recommends  (Version) | Installed
=-+-===
libpam-systemd| 19-1


Suggests (Version) | Installed
==-+-===
systemd-gui| 19-1





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#619000: [systemd] SystemD fails to start system, hangs at Logging Daemon...

2011-03-20 Thread Florian Kriener
On Sunday 20 March 2011 13:12:26 Michael Biebl wrote:
 Do you have any special setup (cryptsetup, LVM, partition layout like
 /usr on a separate partition)?

My setup is this: One hdd with two partitions 

sda1: /boot, ext2
sda2: luks encrypted with lvm on top and two lvs for / and /home, both  
  ext4

 Could you boot with systemd.log_level=debug and
 systemd.log_target=kmsg please and check if that reveals more. It's
 most likely not a rsyslog related issue. Logging Daemon is
 systemd's internal logger service provided by
 systemd-logger.service.

You are right. This has nothing to to with rsyslog. The kernel command 
line I used was the above and it did not show more. However...

 My guess is that systemd is waiting for some devices to show up. You
 could wait for at least a minute to wait for the timeout and check
 if the boot process continues.
 If you then can login, check the status with systemctl list-jobs and
 systemctl --full --all | grep failed.

I took your advice went for a shower and a shave after fiering up a 
systemd boot. When I came back I found, that there must have been some 
timeout and the boot process had continued. However, the next message 
wasn't very comforting: Apparently systemd failed to start udev. The 
rest of the messages was more or less irrelevant and I don't remember 
them. Logging in was not possible.

 If you are able to connect to your system via a serial console to the
 a full log of the boot process, that would be most helpful.

Sadly, that is not possible as my notebook misses a serial interface. 
But I could present you with some hand made screen captures (aka digital 
still images) if that could help you. I don't see a lot of usefull stuff 
though.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#619000: [systemd] SystemD fails to start system, hangs at Logging Daemon...

2011-03-20 Thread Florian Kriener
On Sunday 20 March 2011 20:50:14 you wrote:
  Which version of the lvm2 package do you have installed?

 Given that systemd 19-1 has Breaks against older versions of lvm2, I
 think the version should be recent enough.

Thats right, it's 2.02.84-2.

 There might be an issue
 with initrd not being up-to-date (Florian, could you try to run
 update-initramfs -u), but I somehow doubt that.

I'll try that, but I recently installed 2.6.38, so it should be okay.

 But seeing that even the ttys fail to start and the udev.service
 times out, I'm wondering if it isn't actually a udev related
 problem.
 
 Florian, how exactly did you tweak your initramfs?
 Do you have any custom udev rules/configuration?

What I did to the initramfs is hardly called tweaking, I just put the 
string i915 into /etc/initramfs-tools/modules. It's the only 
uncommented string in there. 

I don't have custom udev rules and udev works fine so far. The only 
problem is, that the hp driver generates some warnings at startup 
(SYSFS={} will be removed ...). However, I do not see these warnings, 
when I boot with systemd but maybe the corresponding rules get loaded 
later.

What I am wondering about is that I do not see a line saying Starting 
LVM. I was expecting something along those lines, since vgchange -a y 
should be run quite early.

And then there is this thread on the systemd-devel list [1]. I don't 
know how that is related, but the solution there does not work for me 
(using the lvm.service file from [2]).

[1] http://thread.gmane.org/gmane.comp.sysutils.systemd.devel/1272
[2] http://article.gmane.org/gmane.linux.lvm.devel/6138


Cheers,
Florian.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#618878: [pm-utils] power.d/wireless broken

2011-03-19 Thread Florian Kriener
Package: pm-utils
Version: 1.4.1-7
Severity: normal
Tags: patch

--- Please enter the report below this line. ---
I noticed that pm-utils did not turn on wireless power management
when unplugging from ac on my laptop. I investigated a bit and
found out, that the power.d/wireless skript uses a heuristic
method for finding out if a network interface is a wireless
interface. The line in question is

# Skip if not a wireless card.
[ -d /sys/class/net/$1/wireless ] || return 1

Apparently, the directory /sys/class/net/$1/wireless has gone
away, or is not available on every platform at least. Therefor I
think it's best to use /sys/class/ieee80211 instead.

The patch below corrects the script accordingly. The new skript
works fine on my box but I cannot test it on different hardware
and it might need some adjustments in the final loop for other
network cards since I am not sure what it means, when one
ieee80211/* device has multiple ../device/net/* devices.


diff --git a/wireless b/wireless
index b4be69c..de70084 100755
--- a/wireless
+++ b/wireless
@@ -16,12 +16,10 @@ get_wireless_params() {
 unset iwpriv iwconfig iwlevel
 
 # Don't do anything if we cannot find a driver for this iface.
-[ -L /sys/class/net/$1/device/driver ] || return 1
-# Skip if not a wireless card.
-[ -d /sys/class/net/$1/wireless ] || return 1
+[ -L /sys/class/ieee80211/$1/device/driver ] || return 1
 # Also don't do anything if the device is disabled
-[ $(cat /sys/class/net/$1/device/enable) = 1 ] || return 1
-driver=$(readlink /sys/class/net/$1/device/driver)
+[ $(cat /sys/class/ieee80211/$1/device/enable) = 1 ] || return 1
+driver=$(readlink /sys/class/ieee80211/$1/device/driver)
 driver=${driver##*/}
 case $driver in
 ipw2100) iwpriv_ac=set_power 0
@@ -31,7 +29,7 @@ get_wireless_params() {
 ipw3945)
 iwpriv_ac=set_power 6
 iwpriv_batt=set_power 7;;
-iwl*) if [ -f /sys/class/net/$1/device/power_level ]; then
+iwl*) if [ -f /sys/class/ieee80211/$1/device/power_level ]; then
  iwlevel_ac=0
  iwlevel_batt=3
   else
@@ -53,19 +51,21 @@ get_wireless_params() {
 }
 
 wireless_powersave() {
-for dev in /sys/class/net/*; do
-get_wireless_params ${dev##*/} $1 || continue
+for phy in /sys/class/ieee80211/*; do
+get_wireless_params ${phy##*/} $1 || continue
ret=0
-   printf Turning powersave for %s %s... ${dev##*/} $1
-   if [ $have_iwconfig = true -a $iwconfig ]; then
-   iwconfig ${dev##*/} $iwconfig || ret=1
-   fi
-if [ $have_iwpriv = true -a $iwpriv ]; then
-   iwpriv ${dev##*/} $iwpriv || ret=1
-   fi
+for dev in $phy/device/net/*; do
+printf Turning powersave for %s %s... ${dev##*/} $1
+if [ $have_iwconfig = true -a $iwconfig ]; then
+iwconfig ${dev##*/} $iwconfig || ret=1
+fi
+if [ $have_iwpriv = true -a $iwpriv ]; then
+iwpriv ${dev##*/} $iwpriv || ret=1
+fi
+done
 if [ $iwlevel ]; then
-   echo $iwlevel  $dev/device/power_level || ret=1
-   fi
+echo $iwlevel  $phy/device/power_level || ret=1
+fi
[ $ret -eq 0 ]  echo Done. || echo Failed.
 done
 }
@@ -76,4 +76,4 @@ case $1 in
 *) exit $NA ;;
 esac
 
-exit 0
\ No newline at end of file
+exit 0



--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.38-1-amd64

Debian Release: wheezy/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  100 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-===
powermgmt-base| 1.31
kbd   | 
 OR console-tools | 1:0.2.3dbs-70


Recommends  (Version) | Installed
=-+-===
vbetool   | 1.1-2
procps| 1:3.2.8-10
hdparm| 9.32-1


Suggests(Version) | Installed
=-+-===
cpufrequtils  | 007-1
wireless-tools| 30~pre9-5
ethtool   | 1:2.6.37-1
radeontool| 








-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#614420: Gone ine 2.6.37-2

2011-03-02 Thread Florian Kriener
I installed 2.6.37-2 yesterday and the bug noticed, that the bug is 
gone.

Thank you very much.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#614420: [linux-2.6.37-1-amd64] Wrong keyboard layout on console

2011-02-21 Thread Florian Kriener
Package: linux-2.6.37-1-amd64
Severity: normal

--- Please enter the report below this line. ---

I have a problem with 2.6.37-1 that was not there before (2.6.37-trunk): 
When I boot with the new kernel my console apparently uses the qwerty 
keyboard layout although I use qwertz. It definetly (doubly checked) 
worked before (i.e. with 2.6.37-trunk). I even tried

% update-initramfs -u -k all

but that changed nothing.

Thanks again and keep up the good work (fine release btw).


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.37-1-amd64

Debian Release: wheezy/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  101 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.







-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#598207: [linux-image-2.6.36-rc5-amd64] BUG: NULL pointer dereference

2010-09-27 Thread Florian Kriener
] ? 
system_call_fastpath+0x16/0x1b
Sep 27 15:01:52 nanuk kernel: [   13.680006] Code: c7 c2 90 cc 07 a0 48 c7 c6 
0b bf 07 a0 41 b5 ed e8 38 68 fe e0 48 89 ab 18 c0 00 00 49 89 9c 24 a0 00 00 
00 48 8b 83 18 c0 00 00 83 38 00 0f 84 a4 00 00 00 8b 50 04 8d 
4a 01 85 d2 89 48 04 75 
Sep 27 15:01:52 nanuk kernel: [   13.680006] RIP  [a0078ea2] 
hiddev_open+0x89/0x15b [usbhid]
Sep 27 15:01:52 nanuk kernel: [   13.680006]  RSP 880139a0dcb8
Sep 27 15:01:52 nanuk kernel: [   13.680006] CR2: 
Sep 27 15:01:52 nanuk kernel: [   13.749395] ---[ end trace 6766acc47f9bb891 
]---


/sys/devices/platform/i8042/serio0 ist my keyboard, however normally I only see
input/input1 and not input/input0 in the list of input devices. 

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  101 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-=
module-init-tools | 3.12-1
linux-base   (= 2.6.36~rc5-1~experimental.1) | 
2.6.36~rc5-1~experimental.1
initramfs-tools(= 0.55)  | 0.98.4
 OR linux-initramfs-tool  | 


Package Status  (Version) | Installed
=-+-===
firmware-bnx2 | 
firmware-bnx2x| 
firmware-ipw2x00  | 
firmware-ivtv | 
firmware-iwlwifi  | 0.26
firmware-linux| 0.26
firmware-linux-nonfree| 0.26
firmware-qlogic   | 
firmware-ralink   | 
xen-hypervisor| 


Recommends(Version) | Installed
===-+-
firmware-linux-free (= 2.6.36~rc5) | 2.6.36~rc5-1~experimental.1


Suggests  (Version) | Installed
===-+-===
linux-doc-2.6.36| 2.6.36~rc5-1~experimental.1
grub| 
 OR lilo| 



--- Output from package bug script ---


-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#598207: More info and patch

2010-09-27 Thread Florian Kriener
The Bug seems to be well known. There is a BugZilla entry [1] and a 
thread [2] with a fix [3]

[1] https://bugzilla.kernel.org/show_bug.cgi?id=18892
[2] http://lkml.org/lkml/2010/9/19/164
[3] http://lkml.org/lkml/2010/9/21/160

Sorry for the noise. It will be fixed in rc6.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#598006: [pm-utils] wrong path in intel-audio-powersave (and a small bug)

2010-09-25 Thread Florian Kriener
Package: pm-utils
Version: 1.4.1-2
Severity: normal
Tags: patch

--- Please enter the report below this line. ---

In the script intel-audio-powersave is this loop

for dev in /sys/module/snd_*/parameters/power_save; do
[ -w $dev/parameters/power_save ] || continue
 printf Setting power savings for $s to %d... $dev##*/ $1
echo $1  $dev/parameters/power_save  echo Done. || echo Failed.
done

I think it should be

for dev in /sys/module/snd_*; do
[ -w $dev/parameters/power_save ] || continue
 printf Setting power savings for %s to %d... ${dev##*/} $1
echo $1  $dev/parameters/power_save  echo Done. || echo Failed.
done


This fixes the two bugs.



--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  101 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-===
powermgmt-base| 1.31
kbd   | 
 OR console-tools | 1:0.2.3dbs-69


Recommends  (Version) | Installed
=-+-===
vbetool   | 1.1-2
procps| 1:3.2.8-9
hdparm| 9.27-2.1


Suggests(Version) | Installed
=-+-===
cpufrequtils  | 007-1
uswsusp   | 0.8-1.2+b1
wireless-tools| 30~pre9-5
ethtool   | 1:2.6.34-3
radeontool| 





-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#598011: [pm-utils] Bug in command line handling in pm-powersave

2010-09-25 Thread Florian Kriener
Package: pm-utils
Version: 1.4.1-2
Severity: normal

--- Please enter the report below this line. ---

The --help options in pm-powersave does not work as it should. The 
problem is line 42 in help()

if [ $1 = --help ]; then

but when help is called in line 80

 --help) help  run_hooks power help;;

it does not get any parameters passed, it should therefore read

 --help) help $@  run_hooks power help;;

or something similiar. However, run_hooks power help does not work 
still, which I think is some deeper problem and related to why this 
version is in experimental.



--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  101 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-===
powermgmt-base| 1.31
kbd   | 
 OR console-tools | 1:0.2.3dbs-69


Recommends  (Version) | Installed
=-+-===
vbetool   | 1.1-2
procps| 1:3.2.8-9
hdparm| 9.27-2.1


Suggests(Version) | Installed
=-+-===
cpufrequtils  | 007-1
uswsusp   | 0.8-1.2+b1
wireless-tools| 30~pre9-5
ethtool   | 1:2.6.34-3
radeontool| 





-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#594125: [linux-image-2.6.35-trunk-amd64] BSD ring buffer implementation makes suspend to ram unreliable

2010-08-23 Thread Florian Kriener
Package: linux-image-2.6.35-trunk-amd64
Version: 1~experimental.2
Severity: grave
Tags: patch

--- Please enter the report below this line. ---
There is a bug in the linux kernel 2.6.35, that makes suspend to ram
unusable (it seems to be fixed in 2.6.36-rc2) [1]. The symptoms are:
- Suspend to ram from X hangs the computer, the only option is to press
  the power button for ~5 sec and thus forcefully turning off the  
  computer (SysRq does not work for me). After a while (when not
  turning off the computer of cause) the fan goes to full power.
- However, suspend to ram from console works.
- The hang does happen every time on my laptop. However,  on some
  computers that seems to happen only sporadically.

The link [1] contains two possible solutions for this problem.
1. Turn off BSD completely by replacing the corresponding define
   in i915_drv.h with
#define HAS_BSD(dev)(0)
2. 2.6.36-rc2 seems to fix the problem (according to a comment on [1]).

[1] https://bugs.freedesktop.org/show_bug.cgi?id=29406
  

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  101 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-=
module-init-tools | 3.12-1
linux-base   (= 2.6.35-1~experimental.2) | 2.6.35-1~experimental.2
initramfs-tools(= 0.55)  | 0.98
 OR linux-initramfs-tool  | 


Recommends(Version) | Installed
===-+-
firmware-linux-free (= 2.6.35) | 2.6.35-1~experimental.2


Suggests  (Version) | Installed
===-+-===
linux-doc-2.6.35| 2.6.35-1~experimental.2
grub| 
 OR lilo| 





-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#592374: qwit: crash with OAuth

2010-08-13 Thread Florian Kriener
The bug is fixed since Revision 349. Please update the package, when you 
find some time. Thanks.





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#585003: [virtualbox-ose] Assertion error in PGMAllPool.cpp

2010-06-08 Thread Florian Kriener
Package: virtualbox-ose
Version: 3.2.0-dfsg-1
Severity: important

--- Please enter the report below this line. ---
Hello,

it seems I hit a bug, that is already known and fixed upstream. A 
assertion failure in PGMAllPool.cpp, which causes a abort when I start 
my vitual windows 7 machine.

Here is the upstream bug report: http://www.virtualbox.org/ticket/6728

I would be really happy, if you could include a fix in your package.

Cheers,
Flo.


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.de.debian.org 
  500 testing ftp.de.debian.org 
  101 experimental-snapshots qt-kde.debian.net 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-==
libc6(= 2.6) | 2.11.1-2
libcurl3(= 7.16.2-1) | 7.20.1-2
libgcc1  (= 1:4.1.1) | 1:4.4.4-4
libpng12-0  (= 1.2.13-4) | 1.2.43-1
libpython2.6 (= 2.6) | 2.6.5+20100529-1
libsdl1.2debian (= 1.2.10-1) | 1.2.14-6
libssl0.9.8 (= 0.9.8m-1) | 0.9.8o-1
libstdc++6 (= 4.2.1) | 4.4.4-4
libvncserver0 | 0.9.7-2
libx11-6  | 2:1.3.3-3
libxcursor1( 1.1.2) | 1:1.1.10-2
libxext6  | 2:1.1.1-3
libxml2(= 2.7.4) | 2.7.7.dfsg-2
libxmu6   | 2:1.0.5-1
libxt6| 1:1.0.7-1
python2.5(= 2.5) | 2.5.5-6
zlib1g   (= 1:1.1.4) | 1:1.2.3.4.dfsg-3
python   (= 2.4) | 2.5.4-9
python-central(= 0.6.11) | 0.6.16
adduser   | 3.112


Recommends(Version) | Installed
===-+-==
virtualbox-ose-dkms   (= 3.2.0-dfsg-1)  | 3.2.0-dfsg-1
 OR virtualbox-ose-source  (= 3.2.0-dfsg-1) | 
virtualbox-ose-qt  (= 3.2.0-dfsg-1) | 3.2.0-dfsg-1
libgl1-mesa-glx | 7.7.1-3
 OR libgl1  | 
libqt4-opengl  (= 4:4.5.3) | 4:4.6.2-5
libqtcore4 (= 4:4.5.3) | 4:4.6.2-5
libqtgui4  (= 4:4.5.3) | 4:4.6.2-5


Suggests(Version) | Installed
=-+-===
virtualbox-guest-additions| 3.2.0-1
libasound2| 1.0.23-1
libpulse0 | 0.9.21-1.2+b1
vde2  | 








-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#551894: ktimetracker 4.3.2 reports itself as 4.3.1, distorted gui

2009-10-21 Thread Florian Kriener
Package: ktimetracker
Version: 4:4.3.2-1
Severity: normal

When I start ktimetracker it does not display the toolbar nor the
context menu or the  menus for clock and task. The file menu is more
or less empty and when I open the about dialog it annouces itself as
version 4.3.1


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ktimetracker depends on:
ii  kdebase-runtime   4:4.3.2-1  runtime components from the offici
ii  kdelibs5  4:4.3.2-2  core libraries for all KDE 4 appli
ii  kdepimlibs5   4:4.3.2-1  core libraries for KDE PIM 4 appli
ii  libc6 2.9-27 GNU C Library: Shared libraries
ii  libkdepim44:4.3.2-1  KDE PIM library
ii  libkontactinterfaces4 4:4.3.2-1  KDE Kontact interface library
ii  libqt4-dbus   4:4.5.3-4  Qt 4 D-Bus module
ii  libqt4-xml4:4.5.3-4  Qt 4 XML module
ii  libqtcore44:4.5.3-4  Qt 4 core module
ii  libqtgui4 4:4.5.3-4  Qt 4 GUI module
ii  libstdc++64.4.1-6The GNU Standard C++ Library v3
ii  libx11-6  2:1.2.2-1  X11 client-side library
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library

ktimetracker recommends no packages.

ktimetracker suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#546751: shorewall: perl compiler is not executable

2009-09-15 Thread florian kriener
Package: shorewall
Version: 4.4.1.2-1
Severity: important


/usr/share/shorewall/compiler.pl is not executable which breaks
/sbin/shorewal6 in line 374:

[ -x $pc ] || startup_error Shorewall6 requires the shorewall package which is 
not installed 

with $pc being /usr/share/shorewall/compiler.pl

BTW: Why is shorewall6 in /sbin and not in /usr/sbin? It does require
/usr/share/shorewall/compiler.pl at least in my case. Is this a
separate bug? -- Sorry for asking this in a bug report.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages shorewall depends on:
ii  bc   1.06.94-3.1 The GNU bc arbitrary precision cal
ii  debconf [debconf-2.0]1.5.27  Debian configuration management sy
ii  iproute  20090324-1  networking and traffic control too
ii  iptables 1.4.4-2 administration tools for packet fi
ii  perl-modules 5.10.0-25   Core Perl modules

shorewall recommends no packages.

Versions of packages shorewall suggests:
ii  linux-image-2.6.30-1-amd64 [l 2.6.30-6   Linux 2.6.30 image on AMD64
ii  make  3.81-6 An utility for Directing compilati
pn  shorewall-doc none (no description available)

-- debconf information:
  shorewall/invalid_config:
  shorewall/dont_restart:
  shorewall/major_release:



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#537126: dbus: 1.2.16-1 is broken

2009-07-15 Thread florian kriener
Package: dbus
Version: 1.2.14-3
Severity: critical
Justification: breaks unrelated software


The dbus package 1.2.16-1 is broken because a part of the software are not 
installed in / but in /debian/tmp

% dpkg -L dbus
/.   
/etc 
/etc/init.d  
/etc/init.d/dbus 
/etc/default 
/etc/default/dbus
/var 
/var/lib 
/var/lib/dbus
/usr 
/usr/share   
/usr/share/doc   
/usr/share/doc/dbus
/usr/share/doc/dbus/copyright
/usr/share/doc/dbus/AUTHORS  
/usr/share/doc/dbus/README.gz
/usr/share/doc/dbus/changelog.Debian.gz
/usr/share/doc/dbus/changelog.gz   
/debian
/debian/tmp
/debian/tmp/etc
/debian/tmp/etc/dbus-1 
/debian/tmp/etc/dbus-1/session.d   
/debian/tmp/etc/dbus-1/system.d
/debian/tmp/etc/dbus-1/session.conf
/debian/tmp/etc/dbus-1/system.conf 
/debian/tmp/usr
/debian/tmp/usr/lib
/debian/tmp/usr/lib/dbus-1.0   
/debian/tmp/usr/lib/dbus-1.0/dbus-daemon-launch-helper
/debian/tmp/usr/bin   
/debian/tmp/usr/bin/dbus-uuidgen  
/debian/tmp/usr/bin/dbus-cleanup-sockets  
/debian/tmp/usr/bin/dbus-daemon   
/debian/tmp/usr/bin/dbus-send 
/debian/tmp/usr/bin/dbus-monitor  
/debian/tmp/usr/share 
/debian/tmp/usr/share/dbus-1  
/debian/tmp/usr/share/dbus-1/services 
/debian/tmp/usr/share/dbus-1/system-services  
/debian/tmp/usr/share/man 
/debian/tmp/usr/share/man/man1
/debian/tmp/usr/share/man/man1/dbus-uuidgen.1 
/debian/tmp/usr/share/man/man1/dbus-cleanup-sockets.1 
/debian/tmp/usr/share/man/man1/dbus-daemon.1  
/debian/tmp/usr/share/man/man1/dbus-monitor.1 
/debian/tmp/usr/share/man/man1/dbus-send.1
/etc/dbus-1/system.conf   
/etc/dbus-1/session.conf 


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dbus depends on:
ii  adduser   3.110  add and remove users and groups
ii  libc6 2.9-20 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.16-1   simple interprocess messaging syst
ii  libexpat1 2.0.1-4XML parsing C library - runtime li
ii  libselinux1   2.0.82-1   SELinux shared libraries
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

dbus recommends no packages.

Versions of packages dbus suggests:
ii  dbus-x11  1.2.16-1   simple interprocess messaging syst

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#501394: iceweasel: Cannot open links with running /usr/bin/firefox

2008-10-07 Thread florian kriener
Package: iceweasel
Version: 3.0.3-1
Severity: normal


When I try to open a link in a external application (akregator)
iceweasel displays Iceweasel is already running, but is not
responding. To open a new window, you must first close the existing
Iceweasel process, or restart your system. when running
/usr/bin/firefox instead of /usr/bin/iceweasel. I did this and didn't
know because it was some old setting, that I didn't think of for years.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (300, 'testing'), (100, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages iceweasel depends on:
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  fontconfig2.6.0-1generic font configuration library
ii  libc6 2.7-14 GNU C Library: Shared libraries
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libnspr4-0d   4.7.1-4NetScape Portable Runtime Library
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  procps1:3.2.7-9  /proc file system utilities
ii  psmisc22.6-1 Utilities that use the proc filesy
ii  xulrunner-1.9 1.9.0.3-1  XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  latex-xft-fonts   0.1-8  Xft-compatible versions of some La
ii  libkrb53  1.6.dfsg.4~beta1-4 MIT Kerberos runtime libraries
pn  mozpluggernone (no description available)
ii  ttf-mathematica4.15  Installer of Mathematica TrueType 
ii  xfonts-mathml 2  Type1 Symbol font for MathML
ii  xprint2:1.4.2-7  X11 print system (binary)
pn  xulrunner-1.9-gnome-s none (no description available)

-- no debconf information



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



Bug#494655: sysctl.conf: sys.kernel.maps_protect should be kernel.maps_protect

2008-08-11 Thread florian kriener
Package: procps
Version: 1:3.2.7-9
Severity: normal

Line 64 of sysctl.conf reads

sys.kernel.maps_protect = 1

but should be

kernel.maps_protect = 1

otherwise an error occurs.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (300, 'testing'), (100, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages procps depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libncurses5   5.6+20080804-1 shared libraries for terminal hand
ii  lsb-base  3.2-19 Linux Standard Base 3.2 init scrip

Versions of packages procps recommends:
ii  psmisc22.6-1 Utilities that use the proc filesy

procps suggests no packages.

-- no debconf information



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



Bug#462497: Debian bug #462497 grub-pc: debian theme not working

2008-07-20 Thread Florian Kriener
On Sunday 20 July 2008 17:48:45 Felix Zielcke wrote:
 Is this issue still present in 1.96+20080704-2 currently in
 testing/unstable ?

No, it works fine now. Thanks for asking, I thought the Bug was closed.

-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874




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



Bug#488085: [pkg-fetchmail-maint] Bug#488085: /etc/init.d/fetchmail try-restart should be able to not start fetchmail if it is not running

2008-07-02 Thread Florian Kriener


On Tuesday 01 July 2008 22:45:09 Nico Golde wrote:
 Why don't you reorder your runlevels symlinks then?

Because it seems not very sensible to me to start the mta and spamc before the 
network gets started.

  So I investigated
  that problem and found try-restart behaving like it does,
  starting the daemon if it is not running already (which,
  in my opinion, is not intuitive).

 it's restarting the daemon or starting it if it's not yet
 running.

Yes, but it's called try-restart and not try-restart-or-start. But this is a 
mere sidenote.

 I am not too happy about including this patch for this
 corner-case. The init scripts in Debian include an LSB
 header that defines dependencies on other init scripts (well
 facilities to be precise). Did you already have a look at
 the insserv package which automatically reorders your init
 scripts based on these dependencies.

 This might be the right solution for you.

Please see above, for why that is not the right solution. And I can understand 
your point in not wanting to include that more or less crude patch. But let's 
have a look at /etc/resolvconf/update-libc.d/fetchmail:

  if [ -x /etc/init.d/fetchmail ]; then
  /etc/init.d/fetchmail try-restart
  fi

I don't think that resolvconf should start any daemon, but it does. So 
starting my network causes the start of fetchmail. (BTW: init tries to start 
fetchmail too, which then fails of cause).


-- 
Florian Kriener

August-Bebel-Straße 46
04275 Leipzig

Tel:   +49 341-3047701
Mobil: +49 176-20070874




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



Bug#488085: /etc/init.d/fetchmail try-restart should be able to not start fetchmail if it is not running

2008-06-26 Thread florian kriener
Package: fetchmail
Version: 6.3.9~rc2-2
Severity: wishlist
Tags: patch


I'm using DHCP here on my computer and the client for DHCP starts fetchmail 
when my computer got a response. The problem is that with that fetchmail is 
started before postfix and spamd, which is not only ugly but leads to at least 
one uncheckt spammail per boot. So I investigated that problem and found 
try-restart behaving like it does, starting the daemon if it is not running 
already (which, in my opinion, is not intuitive). And so it came to this 
wishlist item.

To lessen the pain (if you should recon this item), I already made that small 
change:

diff --git a/debian/fetchmail.default b/debian/fetchmail.default
index c145c37..9e2a5d1 100644
--- a/debian/fetchmail.default
+++ b/debian/fetchmail.default
@@ -9,3 +9,6 @@

 # Declare here if we want to start fetchmail. 'yes' or 'no'
 START_DAEMON=no
+
+# Start fetchmail on try-restart ('normal') or not ('dontstart').
+TRY_RESTART=normal
diff --git a/debian/init b/debian/init
index e5c94ff..8931cb8 100644
--- a/debian/init
+++ b/debian/init
@@ -177,7 +177,9 @@ case $1 in
exit 0
fi
fi
-   test -f /etc/rc`/sbin/runlevel | cut -d' ' -f2`.d/S*fetchmail* 
 $0 start
+   if [ ! x$TRY_RESTART = xdontstart ]; then
+   test -f /etc/rc`/sbin/runlevel | cut -d' ' 
-f2`.d/S*fetchmail*  $0 start
+   fi
;;
awaken)
log_begin_msg Awakening mail retriever agent: fetchmail


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (300, 'testing'), (100, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages fetchmail depends on:
ii  adduser   3.108  add and remove users and groups
ii  debianutils   2.29   Miscellaneous utilities specific t
ii  libc6 2.7-12 GNU C Library: Shared libraries
ii  libcomerr21.40.11-1  common error description library
ii  libkrb53  1.6.dfsg.4~beta1-3 MIT Kerberos runtime libraries
ii  libssl0.9.8   0.9.8g-10.1SSL shared libraries
ii  lsb-base  3.2-12 Linux Standard Base 3.2 init scrip

Versions of packages fetchmail recommends:
ii  ca-certificates   20080617   Common CA certificates

-- no debconf information



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



Bug#486804: grub-pc: grub.cfg has wrong root device set on LVM with /usr on a different lv than /

2008-06-20 Thread Florian Kriener
On Wednesday 18 June 2008 20:03:10 Robert Millan wrote:
 On Wed, Jun 18, 2008 at 11:01:07AM +0200, florian kriener wrote:
  I suspect
 
 set root=(vg-usr)
 
  to be the culprit here.

 First of all, I see that you don't have a insmod lvm even though it
 should be there.  I think the attached patch should fix that (please
 confirm; you can apply directly to update-grub_lib).

Sorry, it does not work. (By the way, it contains a bug.) But grub-probe does 
not work either.

  ### BEGIN /etc/grub.d/05_debian_theme ###
  set root=(vg-usr)
  search --fs-uuid --set b22901d9-92ac-4e02-9b5b-9225451ab970
  insmod png
  if background_image
  /share/images/desktop-base/debian-blueish-wallpaper-640x480.png ; then
  set color_normal=black/black
set color_highlight=magenta/black
  else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
  fi
  ### END /etc/grub.d/05_debian_theme ###

 Then we have 05_debian_theme setting root and not setting it back to what
 it should be to access /boot, and I think I know why.  Attached patch
 includes a hunk to address that, too (please confirm).

That hunk works.






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



Bug#486804: grub-pc: grub.cfg has wrong root device set on LVM with /usr on a different lv than /

2008-06-18 Thread florian kriener
Package: grub-pc
Version: 1.96+20080617-1
Severity: important


After an upgrade I could no longer boot my system without editing the menuentry 
with grup.

After changing

linux   /boot/vmlinuz-2.6.24-1-amd64 
root=UUID=3fe734d5-bbaf-4515-835e-f6d0bb12e242 ro single vga=791
initrd  /boot/initrd.img-2.6.24-1-amd64

to

linux   (hd0,2)/boot/vmlinuz-2.6.24-1-amd64 
root=UUID=3fe734d5-bbaf-4515-835e-f6d0bb12e242 ro single vga=791
initrd  (hd0,2)/boot/initrd.img-2.6.24-1-amd64

my system booted as usual.

I suspect

   set root=(vg-usr)

to be the culprit here.


-- Package-specific info:

*** BEGIN /proc/mounts
/dev/disk/by-uuid/3fe734d5-bbaf-4515-835e-f6d0bb12e242 / ext3 
rw,errors=remount-ro,acl,data=ordered 0 0
/dev/disk/by-uuid/3fe734d5-bbaf-4515-835e-f6d0bb12e242 /dev/.static/dev ext3 
rw,errors=remount-ro,acl,data=ordered 0 0
/dev/mapper/vg-home /home ext3 rw,errors=continue,acl,data=ordered 0 0
/dev/mapper/vg-opt /opt ext3 rw,errors=continue,acl,data=ordered 0 0
/dev/mapper/vg-usr /usr ext3 rw,errors=continue,acl,data=ordered 0 0
/dev/mapper/vg-var /var ext3 rw,errors=continue,acl,data=ordered 0 0
/dev/mapper/vg-srv /srv ext3 rw,errors=continue,acl,data=ordered 0 0
/dev/mapper/vg-music /mnt/musik ext3 rw,errors=continue,acl,data=ordered 0 0
/dev/mapper/vg-space /mnt/platz ext3 rw,errors=continue,acl,data=ordered 0 0
/dev/mapper/vg-apt /var/cache/apt/archives ext3 
rw,errors=continue,acl,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/sda
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/update-grub using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(vg-usr)
search --fs-uuid --set b22901d9-92ac-4e02-9b5b-9225451ab970
if font /share/grub/unicode.pff ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  terminal gfxterm
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set root=(vg-usr)
search --fs-uuid --set b22901d9-92ac-4e02-9b5b-9225451ab970
insmod png
if background_image 
/share/images/desktop-base/debian-blueish-wallpaper-640x480.png ; then
  set color_normal=black/black
  set color_highlight=magenta/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_hurd ###
### END /etc/grub.d/10_hurd ###

### BEGIN /etc/grub.d/10_linux ###
menuentry Debian GNU/Linux, linux 2.6.25-2-amd64 {
linux   /boot/vmlinuz-2.6.25-2-amd64 
root=UUID=3fe734d5-bbaf-4515-835e-f6d0bb12e242 ro vga=791 
initrd  /boot/initrd.img-2.6.25-2-amd64
}
menuentry Debian GNU/Linux, linux 2.6.25-2-amd64 (single-user mode) {
linux   /boot/vmlinuz-2.6.25-2-amd64 
root=UUID=3fe734d5-bbaf-4515-835e-f6d0bb12e242 ro single vga=791
initrd  /boot/initrd.img-2.6.25-2-amd64
}
menuentry Debian GNU/Linux, linux 2.6.24-1-amd64 {
linux   /boot/vmlinuz-2.6.24-1-amd64 
root=UUID=3fe734d5-bbaf-4515-835e-f6d0bb12e242 ro vga=791 
initrd  /boot/initrd.img-2.6.24-1-amd64
}
menuentry Debian GNU/Linux, linux 2.6.24-1-amd64 (single-user mode) {
linux   /boot/vmlinuz-2.6.24-1-amd64 
root=UUID=3fe734d5-bbaf-4515-835e-f6d0bb12e242 ro single vga=791
initrd  /boot/initrd.img-2.6.24-1-amd64
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry Memory test (memtest86+) {
linux   /memtest86+.bin
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
*** END /boot/grub/grub.cfg

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (300, 'testing'), (100, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]1.5.22  Debian configuration management sy
ii  grub-common  1.96+20080617-1 GRand Unified Bootloader, version 
ii  libc62.7-12  GNU C Library: Shared libraries
ii  liblzo2-22.03-1  data compression library
ii  libncurses5  5.6+20080614-1  Shared libraries for terminal hand

grub-pc recommends no packages.

-- debconf information:
  grub-pc/linux_cmdline:
* grub-pc/chainload_from_menu.lst: false



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



Bug#464702: kdebase-workspace: 4.0.1 uninstallable

2008-02-08 Thread florian kriener
Package: kdebase-workspace
Version: 4:4.0.0-3
Severity: minor


kdebase-workspace 4.0.1 as well as some other kde 4.0.1 packages are not 
installable on the i386 architecture. Please don't be mad at me for reporting 
this as a bug, but KDE 4.0.0 is somewhat buggy, so I hoped to be able to 
install some updates. Thank you for your hard work so far.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (900, 'unstable'), (300, 'testing'), (100, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kdebase-workspace depends on:
ii  kdebase-workspace-bin 4:4.0.0-3  Core binaries for the KDE 4 base m
ii  klipper   4:4.0.0-3  Clipboard utility for KDE 4
ii  ksysguard 4:4.0.0-3  System Guard for KDE 4
ii  kwin  4:4.0.0-3  The KDE 4 window manager
ii  systemsettings4:4.0.0-3  KDE 4 System Settings

Versions of packages kdebase-workspace recommends:
ii  kdm   4:4.0.0-3  KDE Display Manager for X11

-- no debconf information



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



Bug#462497: grub-pc: debian theme not working

2008-02-06 Thread Florian Kriener
On Wednesday 06 February 2008 01:33:43 you wrote:
 Is desktop-base installed?  background image is only enabled when it is
 provided by that package.

Yes desktop-base is installed and the file-access via grub should work. At 
least I can see the file, when using the grub commandline.



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



Bug#462497: grub-pc: debian theme not working

2008-02-05 Thread Florian Kriener
On Tuesday 05 February 2008 21:48:04 you wrote:
 [ Resending with the CC to BTS.  please keep it. ]

 On Tue, Feb 05, 2008 at 12:27:43PM +0100, Florian Kriener wrote:
  On Sunday 03 February 2008 20:18:43 you wrote:
I'm a bit confused.  Please, can you take a picture of that?  With
and without commenting those three lines.
   
And preferrably send it to [EMAIL PROTECTED]  This means more eyes
will look at your problem.
  
   Actually, please try 1.96+20080203-1 first.  A number of possible
   causes for your problem have been fixed recently, and fallback code has
   been added for robustness.
  
   Please report not only if you get a usable bootloader, but also if it
   fires up graphical mode and whether it's using the debian background.
 
  1.96+20080203-1 works so far. I get a usable bootloader. I.e. I get the
  good old text menu in blue and white, no fancy graphics though, but that
  is not a problem, not for me at least.

 You mean in text mode?  Sounds like fonts aren't loading properly.  Please
 could you check why /usr isn't accessible from GRUB ?  (use 'ls' in the
 grub console).

Oh no, fonts do work actualy. At least it does not look like the same font the 
bios uses (it is more slim and finer). I just wanted to say, that I see no 
background image or anything like it.




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



Bug#462497: grub-pc: debian theme not working

2008-02-03 Thread Florian Kriener
On Friday 25 January 2008 14:27:26 you wrote:
 What happens if you comments out:
  background_image
  (linux-usr)/share/images/desktop-base/debian-blueish-wallpaper-640x480.tg
 a set color_normal=black/black
  set color_highlight=magenta/black

 those three lines?

At first it does nothing but displaying a greeting from grub. But after 
pressing ESC (or maybe waiting, but I didn't want to wait that long) it shows 
the menu.

The greeting is new though (must have happend after an upgrade), and is 
displayed whether the three lines above are commended out or not. and the red 
line is no red line anymore but the first menu entry in a red color.




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



Bug#462497: grub-pc: debian theme not working

2008-01-25 Thread florian kriener
Package: grub-pc
Version: 1.95+20080124-1
Severity: important


When grub tries to display the theme, it does only display a red line at the 
top of the screen. After that grub boots linux normaly, i.e. the first entry in 
grub.cfg. My guess is, that it has something to do with /usr being on a lvm 
volume, because I had trouble with that and the font (Bug #425666).

-- Package-specific info:

*** BEGIN /proc/mounts
rootfs / rootfs rw 0 0
none /sys sysfs rw,nosuid,nodev,noexec 0 0
none /proc proc rw,nosuid,nodev,noexec 0 0
udev /dev tmpfs rw 0 0
/dev/hda1 / ext3 rw,data=ordered 0 0
/dev/hda1 /dev/.static/dev ext3 rw,data=ordered 0 0
tmpfs /lib/init/rw tmpfs rw,nosuid 0 0
usbfs /proc/bus/usb usbfs rw,nosuid,nodev,noexec 0 0
tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0
devpts /dev/pts devpts rw,nosuid,noexec 0 0
fusectl /sys/fs/fuse/connections fusectl rw 0 0
/dev/mapper/linux-var /var reiserfs rw 0 0
/dev/mapper/linux-tmp /tmp reiserfs rw 0 0
/dev/mapper/linux-usr /usr reiserfs rw 0 0
/dev/mapper/linux-opt /opt reiserfs rw 0 0
/dev/mapper/linux-home /home reiserfs rw 0 0
/dev/mapper/linux-pub /pub reiserfs rw 0 0
/dev/hdb2 /space reiserfs rw 0 0
/dev/mapper/linux-apt--archives /var/cache/apt/archives ext3 rw,data=ordered 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,nosuid,nodev,noexec 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/hda
(hd1)   /dev/hdb
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/update-grub using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod lvm
set default=0
set timeout=5
set root=(hd0,1)
font (linux-usr)/share/grub/unicode.pff
set gfxmode=640x480
insmod gfxterm
insmod vbe
terminal gfxterm
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod tga
background_image 
(linux-usr)/share/images/desktop-base/debian-blueish-wallpaper-640x480.tga
set color_normal=black/black
set color_highlight=magenta/black
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_hurd ###
### END /etc/grub.d/10_hurd ###

### BEGIN /etc/grub.d/10_linux ###
menuentry Debian GNU/Linux, linux 2.6.22-3-k7 {
linux   (hd0,1)/boot/vmlinuz-2.6.22-3-k7 root=/dev/hda1 ro noapic 
vga=791
initrd  (hd0,1)/boot/initrd.img-2.6.22-3-k7
}
menuentry Debian GNU/Linux, linux 2.6.22-3-k7 (single-user mode) {
linux   (hd0,1)/boot/vmlinuz-2.6.22-3-k7 root=/dev/hda1 ro single 
noapic vga=791
initrd  (hd0,1)/boot/initrd.img-2.6.22-3-k7
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry Memory test (memtest86+) {
linux   (hd0,1)/boot/memtest86+.bin
}
### END /etc/grub.d/20_memtest86+ ###
*** END /boot/grub/grub.cfg

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-k7 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages grub-pc depends on:
ii  base-files4.0.2  Debian base system miscellaneous f
ii  debconf [debconf-2.0] 1.5.18 Debian configuration management sy
ii  libc6 2.7-6  GNU C Library: Shared libraries
ii  liblzo2-2 2.02-3 data compression library

grub-pc recommends no packages.

-- debconf information:
  grub-pc/chainload_from_menu.lst: true



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



Bug#461321: /usr/lib/ruby/1.8/taglib.rb:216: warning: instance variable @tag not initialized

2008-01-17 Thread florian kriener
Package: libtagc0-ruby1.8
Version: 1.1-6
Severity: normal

When using taglib in one of my programs, the warning:
/usr/lib/ruby/1.8/taglib.rb:216: warning: instance variable @tag not initialized
is printed out.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-k7 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libtagc0-ruby1.8 depends on:
ii  libruby1.8   1.8.6.111-3 Libraries necessary to run Ruby 1.
ii  libtagc0 1.4-8+b1TagLib Audio Meta-Data Library (C 

libtagc0-ruby1.8 recommends no packages.

-- no debconf information



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



Bug#423409: grub-probe

2007-05-16 Thread Florian Kriener
Hello,

On Monday 14 May 2007 11:09:37 you wrote:
 This is indeed a bug, but note that your usage of grub-probe is wrong.  It
 recevies a path as argument, not a device.

tanks for pointing this out. However, that bug appears too when running 
update-grub.



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



Bug#423409: grub-probe

2007-05-16 Thread Florian Kriener
On Wednesday 16 May 2007 17:55:26 you wrote:
 Could you recompile grub with debugging symbols to make this backtrace
 more meaningful?

Sure, here it goes:

-- snipp--
(gdb) set args ext2_mod-fs_ext2.d
(gdb) run

Starting program: /home/leflo/src/grub2-1.95+20070515/grub-probe 
ext2_mod-fs_ext2.d
*** glibc detected *** /home/leflo/src/grub2-1.95+20070515/grub-probe: double 
free or corruption (!prev): 0x08067188 ***
=== Backtrace: =
/lib/i686/cmov/libc.so.6[0xb7e3aeed]
/lib/i686/cmov/libc.so.6(cfree+0x90)[0xb7e3e530]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x804bc8f]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x8059368]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x804b47e]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x804fa4c]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x804f5ef]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x804b5ff]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x8049720]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x804b704]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x804b3f4]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x8058e92]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x8058eb2]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x80491aa]
/lib/i686/cmov/libc.so.6(__libc_start_main+0xdc)[0xb7de8ebc]
/home/leflo/src/grub2-1.95+20070515/grub-probe[0x8048eb1]
=== Memory map: 
08048000-0805c000 r-xp  fe:01 
177294 /home/leflo/src/grub2-1.95+20070515/grub-probe
0805c000-0805d000 rwxp 00014000 fe:01 
177294 /home/leflo/src/grub2-1.95+20070515/grub-probe
0805d000-08085000 rwxp 0805d000 00:00 0  [heap]
b7c0-b7c21000 rwxp b7c0 00:00 0
b7c21000-b7d0 ---p b7c21000 00:00 0
b7d96000-b7da1000 r-xp  08:01 172230 /lib/libgcc_s.so.1
b7da1000-b7da2000 rwxp a000 08:01 172230 /lib/libgcc_s.so.1
b7da2000-b7dd3000 rwxp b7da2000 00:00 0
b7dd3000-b7f1 r-xp  08:01 204158 /lib/i686/cmov/libc-2.5.so
b7f1-b7f11000 r-xp 0013d000 08:01 204158 /lib/i686/cmov/libc-2.5.so
b7f11000-b7f13000 rwxp 0013e000 08:01 204158 /lib/i686/cmov/libc-2.5.so
b7f13000-b7f17000 rwxp b7f13000 00:00 0
b7f33000-b7f34000 rwxp b7f33000 00:00 0
b7f34000-b7f4f000 r-xp  08:01 172367 /lib/ld-2.5.so
b7f4f000-b7f51000 rwxp 0001b000 08:01 172367 /lib/ld-2.5.so
bfd01000-bfd17000 rwxp bfd01000 00:00 0  [stack]
e000-f000 r-xp  00:00 0  [vdso]

Program received signal SIGABRT, Aborted.
0xe410 in __kernel_vsyscall ()
(gdb) bt
#0  0xe410 in __kernel_vsyscall ()
#1  0xb7dfcd60 in raise () from /lib/i686/cmov/libc.so.6
#2  0xb7dfe5b1 in abort () from /lib/i686/cmov/libc.so.6
#3  0xb7e3308b in __libc_message () from /lib/i686/cmov/libc.so.6
#4  0xb7e3aeed in _int_free () from /lib/i686/cmov/libc.so.6
#5  0xb7e3e530 in free () from /lib/i686/cmov/libc.so.6
#6  0x0804bc8f in grub_disk_read (disk=0x8064078, sector=4000189, offset=0, 
size=194560, buf=0xb7da2008 )
at kern/disk.c:480
#7  0x08059368 in grub_lvm_scan_device (name=0x8064068 hd0,2) at 
disk/lvm.c:262
#8  0x0804b47e in iterate_partition (disk=0x8064008, partition=0xbfd138a4) at 
kern/device.c:133
#9  0x0804fa4c in pc_partition_map_iterate (disk=0x8064008, hook=0xbfd139ae) 
at partmap/pc.c:154
#10 0x0804f5ef in grub_partition_iterate (disk=0x8064008, hook=0xbfd139ae) at 
kern/partition.c:127
#11 0x0804b5ff in iterate_disk (disk_name=0xbfd13952 hd0) at 
kern/device.c:102
#12 0x08049720 in grub_util_biosdisk_iterate (hook=0xbfd139a4) at 
util/i386/pc/biosdisk.c:133
#13 0x0804b704 in grub_disk_dev_iterate (hook=0xbfd139a4) at kern/disk.c:203
#14 0x0804b3f4 in grub_device_iterate (hook=0x8059220 grub_lvm_scan_device) 
at kern/device.c:139
#15 0x08058e92 in grub_mod_init (mod=0x0) at disk/lvm.c:489
#16 0x08058eb2 in grub_lvm_init () at disk/lvm.c:487
#17 0x080491aa in main (argc=Cannot access memory at address 0x3bd8
) at util/i386/pc/grub-probe.c:273

--snapp--

Doesn't matter at all what I set args to. Even good old asdf throws this 
error. Plus it does not matter if run as root or not.

BTW: Thats about everything I can do debugging c apps. So if you need more 
please tell me how to do it.


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



Bug#406477: linux-image-2.6.18-4-k7 crashes too

2007-04-10 Thread Florian Kriener
Hi there,

disconnecting my nokia 6288 from my usb causes this bug (reproducable):

Apr 10 22:22:06 pussyheaven kernel: kernel BUG at mm/slab.c:595!
Apr 10 22:22:06 pussyheaven kernel: invalid opcode:  [#1]
Apr 10 22:22:06 pussyheaven kernel: SMP 
Apr 10 22:22:06 pussyheaven kernel: Modules linked in: rndis_host cdc_ether 
usbnet cdc_acm sd_mod usb_storage scsi_mod nvidia vmnet vmmon rfcomm l2cap 
bluetooth ipv6 ppdev lp autofs4 button ac battery snd_rtctimer snd_via82xx 
snd_mpu401 snd_mpu401_uart snd_emu10k1_synth snd_emux_synth snd_seq_virmidi 
snd_seq_midi_emul snd_emu10k1 snd_ac97_codec snd_ac97_bus snd_pcm_oss 
snd_mixer_oss snd_pcm snd_page_alloc snd_seq_dummy snd_seq_oss snd_seq_midi 
snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd_hwdep snd 
soundcore snd_util_mem iptable_raw xt_policy xt_multiport ipt_ULOG ipt_TTL 
ipt_ttl ipt_TOS ipt_tos ipt_TCPMSS ipt_SAME ipt_REJECT ipt_REDIRECT 
ipt_recent ipt_owner ipt_NETMAP ipt_MASQUERADE ipt_LOG ipt_iprange 
ipt_hashlimit ipt_ECN ipt_ecn ipt_DSCP ipt_dscp ipt_CLUSTERIP ipt_ah 
ipt_addrtype ip_nat_tftp ip_nat_snmp_basic ip_nat_pptp ip_nat_irc ip_nat_ftp 
ip_nat_amanda ip_conntrack_tftp ip_conntrack_pptp ip_conntrack_netbios_ns 
ip_conntrack_irc ip_conntrack_ftp ts_kmp ip_conntrack_amanda xt_tcpmss xt_p
Apr 10 22:22:06 pussyheaven kernel: ttype xt_physdev bridge xt_NFQUEUE xt_MARK 
xt_mark xt_mac xt_limit xt_length xt_helper xt_dccp xt_conntrack xt_CONNMARK 
xt_connmark xt_CLASSIFY xt_tcpudp xt_state iptable_nat ip_nat ip_conntrack 
iptable_mangle nfnetlink iptable_filter ip_tables x_tables reiserfs fuse 
dm_crypt aes_i586 w83781d hwmon_vid i2c_dev i2c_isa i2c_viapro tsdev analog 
psmouse budget_av dvb_pll saa7146_vv video_buf videodev v4l1_compat 
v4l2_common via_ircc budget_core saa7146 emu10k1_gp floppy parport_pc parport 
irda rtc ttpci_eeprom gameport serio_raw pcspkr stv0299 dvb_core tda10021 
tda1004x shpchp pci_hotplug crc_ccitt firmware_class i2c_core via_agp agpgart 
evdev ext3 jbd mbcache dm_mirror dm_snapshot dm_mod ide_cd cdrom ide_disk 
generic ehci_hcd uhci_hcd ohci_hcd via82cxxx ide_core usbcore via_rhine mii 
thermal processor fan
Apr 10 22:22:06 pussyheaven kernel: CPU:0
Apr 10 22:22:06 pussyheaven kernel: EIP:0060:[c015734f]Tainted: P 
 
VLI
Apr 10 22:22:06 pussyheaven kernel: EFLAGS: 00010002   (2.6.18-4-k7 #1) 
Apr 10 22:22:06 pussyheaven kernel: EIP is at kfree+0x2e/0x65
Apr 10 22:22:06 pussyheaven kernel: eax: 882c   ebx: f3d51b00   ecx: 
d6a0   edx: c167a960
Apr 10 22:22:06 pussyheaven kernel: esi: 0282   edi: f3d4b392   ebp: 
f3d51800   esp: e4cd3e14
Apr 10 22:22:06 pussyheaven kernel: ds: 007b   es: 007b   ss: 0068
Apr 10 22:22:06 pussyheaven kernel: Process modprobe (pid: 5982, ti=e4cd2000 
task=e4cb5550 task.ti=e4cd2000)
Apr 10 22:22:06 pussyheaven kernel: Stack: f3d51b00 f971c62e f3d51806 f971c02d 
e53b7200 f94626a0 e53fb568 e5216800 
Apr 10 22:22:06 pussyheaven kernel:ff92 dfac2200   
0001 0001 0001 0001 
Apr 10 22:22:06 pussyheaven kernel:f9462660 e53b7200 f9463520 f9463550 
c02133be f885aceb e53b7214 e53b7214 
Apr 10 22:22:06 pussyheaven kernel: Call Trace:
Apr 10 22:22:06 pussyheaven kernel:  [f971c02d] usbnet_probe+0x4ea/0x4ff 
[usbnet]
Apr 10 22:22:06 pussyheaven kernel:  [c02133be] __driver_attach+0x0/0x5d
Apr 10 22:22:06 pussyheaven kernel:  [f885aceb] 
usb_probe_interface+0x58/0x85 [usbcore]
Apr 10 22:22:06 pussyheaven kernel:  [c0213319] 
driver_probe_device+0x42/0x91
Apr 10 22:22:06 pussyheaven kernel:  [c02133f6] __driver_attach+0x38/0x5d
Apr 10 22:22:06 pussyheaven udevd-event[5975]: run_program: '/sbin/modprobe' 
abnormal exit
Apr 10 22:22:06 pussyheaven kernel:  [c0212e38] bus_for_each_dev+0x37/0x59
Apr 10 22:22:06 pussyheaven kernel:  [c0213283] driver_attach+0x11/0x13
Apr 10 22:22:06 pussyheaven kernel:  [c02133be] __driver_attach+0x0/0x5d
Apr 10 22:22:06 pussyheaven kernel:  [c0212b47] bus_add_driver+0x6b/0xfd
Apr 10 22:22:06 pussyheaven kernel:  [f885ab23] 
usb_register_driver+0x60/0xbb [usbcore]
Apr 10 22:22:06 pussyheaven kernel:  [c0135c67] 
sys_init_module+0x1732/0x18b5
Apr 10 22:22:06 pussyheaven kernel:  [c0116755] __wake_up+0x2a/0x3d
Apr 10 22:22:06 pussyheaven kernel:  [c0102bed] sysenter_past_esp+0x56/0x79
Apr 10 22:22:06 pussyheaven kernel: Code: 89 c7 56 53 74 58 9c 5e fa 8d 90 00 
00 00 40 c1 ea 0c c1 e2 05 03 15 90 53 37 c0 8b 02 f6 c4 40 74 03 8b 52 0c 8b 
02 84 c0 78 08 0f 0b 53 02 a1 f0 29 c0 89 e0 8b 4a 18 25 00 e0 ff ff 8b 40 
10 
Apr 10 22:22:06 pussyheaven kernel: EIP: [c015734f] kfree+0x2e/0x65 SS:ESP 
0068:e4cd3e14
Apr 10 22:22:36 pussyheaven kernel:  6usb 2-1: USB disconnect, address 4


-- 
nameFlorian Kriener
[EMAIL PROTECTED]
sitehttp://leflo.de/


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



Bug#391731: purging of apache2-common breaks apache2.2

2006-10-08 Thread florian kriener
Package: apache2-common
Severity: normal


It is not possible to purge apache2-common (after upgrading to
apache2.2-common), because the post-rm scripts removes some files that
are requeried by apache2.2 (e.g. /etc/apache2/httpd.conf).

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


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



Bug#390958: inscrutable error message in grub-install

2006-10-03 Thread florian kriener
Package: grub
Version: 0.97-17
Severity: normal


grub-install is installed in /sbin, but if it doesn't exist in /usr/sbin it 
outputs:

Your /usr is broken; please fix it before calling this wrapper!

What is that supposed to mean?


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages grub depends on:
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries
ii  libncurses5  5.5-4   Shared libraries for terminal hand

grub recommends no packages.

-- no debconf information


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



Bug#348390: lirc: Irman driver stopped to work after upgrade

2006-02-05 Thread Florian Kriener
Hello,

I just wanted to add that the livedrive_midi driver doesn't work too.

btw: what's the sense of shipping lirc without drivers?


pgpmEUvYzoeCw.pgp
Description: PGP signature


Bug#348394: spamassassin seems to depend on IP/Country/Fast.pm but that is nowere to find

2006-01-16 Thread florian kriener
Package: spamassassin
Version: 3.1.0a-2
Severity: important


I just mentioned this line in my mail.log

spamd[21107]: Can't locate IP/Country/Fast.pm in @INC (@INC contains: lib 
../lib /usr/share/perl5 /etc/perl /usr/local/lib/perl/5.8.7 
/usr/local/share/perl/5.8.7 /usr/lib/perl5 /usr/lib/perl/5.8 
/usr/share/perl/5.8 /usr/local/lib/site_perl) at 
/usr/share/perl5/Mail/SpamAssassin/Plugin/RelayCountry.pm line 66, GEN10 line 
213.

apt-file search IP/Country/Fast.pm gives empty result.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages spamassassin depends on:
ii  libdigest-sha1-perl   2.10-1 NIST SHA-1 message digest algorith
ii  libhtml-parser-perl   3.48-1 A collection of modules that parse
ii  libnet-dns-perl   0.53-2 Perform DNS queries from a Perl sc
ii  libsocket6-perl   0.17-1 Perl extensions for IPv6
ii  perl  5.8.7-10   Larry Wall's Practical Extraction 

Versions of packages spamassassin recommends:
ii  libmail-spf-query-perl1.998-1query SPF (Sender Policy Framework
ii  perl [libmime-base64-perl]5.8.7-10   Larry Wall's Practical Extraction 
ii  spamc 3.1.0a-2   Client for SpamAssassin spam filte

-- debconf information:
  spamassassin/upgrade/2.40:
  spamassassin/upgrade/2.40w:
  spamassassin/upgrade/cancel: Continue
  spamassassin/upgrade/2.42: No
  spamassassin/upgrade/2.42m: No
  spamassassin/upgrade/2.42u: No


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



Bug#332242: quodlibet: The tag for the year is not available

2005-10-05 Thread florian kriener
Package: quodlibet
Version: 0.13.1-1
Severity: minor

I am very interresseted in the year tag, but it's not in Quod Libet.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages quodlibet depends on:
ii  gstreamer0.8-mad  0.8.11-1   MAD MPEG audio decoder plugin for 
ii  gstreamer0.8-vorbis   0.8.11-1   Vorbis plugin for GStreamer
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  python2.3.5-3An interactive high-level object-o
ii  python-gst0.8.2-1generic media-playing framework (P
ii  python-gtk2   2.6.3-1Python bindings for the GTK+ widge
ii  python-pymad  0.5.4-1Python wrapper to the MPEG Audio D
ii  python-pyvorbis   1.3-1  A Python interface to the Ogg Vorb
ii  python2.3-pymad [python-pymad 0.5.4-1Python wrapper to the MPEG Audio D

Versions of packages quodlibet recommends:
ii  libgstreamer-gconf0.8-0   0.8.11-1   GConf support for GStreamer
ii  python-gnome2-extras  2.10.0-4   Python bindings for the GNOME desk
ii  python2.3-gnome2  2.10.0-2   Python bindings for the GNOME desk
ii  quodlibet-ext 0.13.1-1   extensions for the Quod Libet audi

-- no debconf information


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



Bug#332244: quodlibet: Could you include a clear queue button

2005-10-05 Thread florian kriener
Package: quodlibet
Version: 0.13.1-1
Severity: wishlist

I sometimes do things to the Queue which i don't like afterwards. It would be 
nice to be able to clear the queue. or to be able to select more than one song.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages quodlibet depends on:
ii  gstreamer0.8-mad  0.8.11-1   MAD MPEG audio decoder plugin for 
ii  gstreamer0.8-vorbis   0.8.11-1   Vorbis plugin for GStreamer
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  python2.3.5-3An interactive high-level object-o
ii  python-gst0.8.2-1generic media-playing framework (P
ii  python-gtk2   2.6.3-1Python bindings for the GTK+ widge
ii  python-pymad  0.5.4-1Python wrapper to the MPEG Audio D
ii  python-pyvorbis   1.3-1  A Python interface to the Ogg Vorb
ii  python2.3-pymad [python-pymad 0.5.4-1Python wrapper to the MPEG Audio D

Versions of packages quodlibet recommends:
ii  libgstreamer-gconf0.8-0   0.8.11-1   GConf support for GStreamer
ii  python-gnome2-extras  2.10.0-4   Python bindings for the GNOME desk
ii  python2.3-gnome2  2.10.0-2   Python bindings for the GNOME desk
ii  quodlibet-ext 0.13.1-1   extensions for the Quod Libet audi

-- no debconf information


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



Bug#330106: gnome-pilot: Sync with evolution drops location field on thungsten e

2005-09-25 Thread florian kriener
Package: gnome-pilot
Version: 2.0.12-1.4
Severity: normal

I am using a Palm Tungsten E with Palm OS 5.2.1 and if i try to
syncronize with evolution the location field will be droped on the
Palm and if I use the location field in evolution it will not be
transfered to the palm.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages gnome-pilot depends on:
ii  gconf22.10.1-6   GNOME configuration database syste
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libbonobo2-0  2.10.1-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.10.1-1   The Bonobo UI library
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libesd-alsa0 [libesd0]0.2.36-1   Enlightened Sound Daemon (ALSA) - 
ii  libgconf2-4   2.10.1-6   GNOME configuration database syste
ii  libgcrypt11   1.2.1-4LGPL Crypto library - runtime libr
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.1-1The GLib library of C routines
ii  libgnome-keyring0 0.4.5-1GNOME keyring services library
ii  libgnome-pilot2   2.0.12-1.4 Support libraries for gnome-pilot
ii  libgnome2-0   2.10.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.10.2-2   A powerful object-oriented display
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgnutls11   1.0.16-13.1GNU TLS library - runtime library
ii  libgpg-error0 1.1-4  library for common error values an
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  libice6   6.8.2.dfsg.1-7 Inter-Client Exchange library
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libncurses5   5.4-9  Shared libraries for terminal hand
ii  liborbit2 1:2.12.2-3 libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-02.10.2-1   library for GNOME 2 panel applets
ii  libpango1.0-0 1.8.2-2Layout and rendering of internatio
ii  libpisock80.11.8-12  Library for communicating with a P
ii  libpisync00.11.8-12  Synchronization library for PalmOS
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libreadline4  4.3-17 GNU readline and history libraries
ii  libsm66.8.2.dfsg.1-7 X Window System Session Management
ii  libtasn1-20.2.13-1   Manage ASN.1 structures (runtime)
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  libxml2   2.6.22-1   GNOME XML library
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

Versions of packages gnome-pilot recommends:
ii  gnome-pilot-conduits  2.0.12-2   conduits for gnome-pilot

-- no debconf information


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



Bug#329216: samba seqfaulted and said i should send you this

2005-09-20 Thread Florian Kriener
Package: samba
Version: 3.0.14a-3
Severity: important

The Samba 'panic action' script, /usr/share/samba/panic-action,
was called for pid 14052 (/usr/sbin/nmbd).

Below is a backtrace for this process generated with gdb, which shows
the state of the program at the time the error occured.  You are
encouraged to submit this information as a bug report to Debian.  For
information about the procedure for submitting bug reports , please see
http://www.debian.org/Bugs/Reporting or the reportbug(1) manpage.

(no debugging symbols found)
Using host libthread_db library /lib/libthread_db.so.1.
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 16384 (LWP 14052)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
0x4020b808 in waitpid () from /lib/libc.so.6
#0  0x4020b808 in waitpid () from /lib/libc.so.6
#1  0x40293880 in ?? () from /lib/libc.so.6
#2  0x401a44c2 in strtold_l () from /lib/libc.so.6
#3  0x080d1b31 in smb_panic2 ()
#4  0x080d1aba in smb_panic ()
#5  0x080bdc38 in dbgtext ()
#6  0x4031e825 in __pthread_sighandler () from /lib/libpthread.so.0
#7  signal handler called
#8  0x08073955 in remove_response_record ()
#9  0x08071577 in retransmit_or_expire_response_records ()
#10 0x08063700 in unbecome_local_master_browser ()
#11 0x08063a76 in unbecome_local_master_browser ()
#12 0x0806c6fa in query_name_from_wins_server ()
#13 0x080713b4 in reply_netbios_packet ()
#14 0x0807143f in run_packet_queue ()
#15 0x080617fa in queue_dns_query ()
#16 0x08061e8a in main ()


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.27
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages samba depends on:
ii  debconf [debconf-2.0]  1.4.30.13 Debian configuration management sy
ii  libacl12.2.23-1  Access control list shared library
ii  libattr1   2.4.16-1  Extended attribute shared library
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libcomerr2 1.37-2sarge1  common error description library
ii  libcupsys2-gnutls101.1.23-10 Common UNIX Printing System(tm) - 
ii  libkrb53   1.3.6-2sarge2 MIT Kerberos runtime libraries
ii  libldap2   2.1.30-8  OpenLDAP libraries
ii  libpam-modules 0.76-22   Pluggable Authentication Modules f
ii  libpam-runtime 0.76-22   Runtime support for the PAM librar
ii  libpam0g   0.76-22   Pluggable Authentication Modules l
ii  libpopt0   1.7-5 lib for parsing cmdline parameters
ii  logrotate  3.7-5 Log rotation utility
ii  netbase4.21  Basic TCP/IP networking system
ii  samba-common   3.0.14a-3 Samba common files used by both th

-- debconf information:
  samba/nmbd_from_inetd:
* samba/run_mode: daemons
  samba/log_files_moved:
  samba/tdbsam: false
* samba/generate_smbpasswd: true

===File /etc/samba/smb.conf=
# Samba config file created using SWAT
# from 192.168.0.3 (192.168.0.3)
# Date: 2005/05/10 02:16:52

# Global parameters
[global]
unix charset = iso8859-15
display charset = iso8859-15
workgroup = HASO
server string = %h -- die linux buexxe
interfaces = eth0, eth1
bind interfaces only = Yes
map to guest = Bad User
password server = 
passdb backend = tdbsam, guest
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\sUNIX\spassword:* %n\n 
*Retype\snew\sUNIX\spassword:* %n\n .
syslog = 0
log file = /var/log/samba/log.%m
max log size = 1000
name resolve order = lmhosts wins host
time server = Yes
load printers = No
domain logons = Yes
os level = 255
preferred master = Yes
domain master = Yes
wins support = Yes
ldap ssl = no
message command = new_message.pl %f %s  rm %s 
remote announce = 192.168.2.255/HASO
remote browse sync = 192.168.2.255
panic action = /usr/share/samba/panic-action %d
invalid users = root
delete veto files = Yes
veto files = .DS_Store/Thumbs.db

[printers]
comment = All Printers
path = /tmp
create mask = 0700

Bug#328655: mutt: S/MIME signature verification fails on encrypted and signed messages

2005-09-18 Thread florian kriener
Hello,

On Mon, Sep 19, 2005 at 01:43:04AM +0200, Adeodato Simó wrote:
  Everytime I try to open a encrypted and signed message I get the
  following error:
 
  [-- OpenSSL output follows (current time: Fr 16 Sep 2005 17:38:55 CEST) --]
  Error reading S/MIME message
  18891:error:0D06B08E:asn1 encoding routines:ASN1_d2i_bio:not enough 
  data:a_d2i_fp.c:240:
  [-- End of OpenSSL output --]
 
  This error does not effect the display of the body of the message, it
  only lets mutt say S/MIME signature coud NOT be verired.
 
  I use the default smime_* commands from debians /etc/Muttrc.
 
   Can you do a quick test and check whether it still happens with this
   1.5.11 package?:
 
 
 http://people.debian.org/~adeodato/tmp/2005-09-19/mutt-1.5.11-pre/mutt_1.5.11-1~pre1_i386.deb


Yes it definitely does not work even with your pre version. I tried
different certificates and different email-addresses and it did not
work, the error is the same.

Thank you for forwarding this bug,
Florian Kriener.

-- 
BOFH excuse #396:

Mail server hit by UniSpammer.


smime.p7s
Description: S/MIME cryptographic signature


Bug#328655: mutt: S/MIME signature verification fails on encrypted and signed messages

2005-09-16 Thread florian kriener
Package: mutt
Version: 1.5.10-1
Severity: important


Everytime I try to open a encrypted and signed message I get the
following error:

[-- OpenSSL output follows (current time: Fr 16 Sep 2005 17:38:55 CEST) --]
Error reading S/MIME message
18891:error:0D06B08E:asn1 encoding routines:ASN1_d2i_bio:not enough 
data:a_d2i_fp.c:240:
[-- End of OpenSSL output --]

This error does not effect the display of the body of the message, it
only lets mutt say S/MIME signature coud NOT be verired.

I use the default smime_* commands from debians /etc/Muttrc.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages mutt depends on:
ii  libc62.3.5-6 GNU C Library: Shared libraries an
ii  libdb4.3 4.3.28-3Berkeley v4.3 Database Libraries [
ii  libgnutls11  1.0.16-13.1 GNU TLS library - runtime library
ii  libidn11 0.5.18-1GNU libidn library, implementation
ii  libncursesw5 5.4-9   Shared libraries for terminal hand
ii  libsasl2 2.1.19-1.6  Authentication abstraction library
ii  postfix [mail-transport-agen 2.2.4-1 A high-performance mail transport 

Versions of packages mutt recommends:
ii  locales   2.3.5-6GNU C Library: National Language (
ii  mime-support  3.35-1 MIME files 'mime.types'  'mailcap

-- no debconf information


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



Bug#293153: acknowledged by developer (Re: Bug#296166: apt-cache show libnjb2 does not give any response on my computer)

2005-03-05 Thread florian kriener
On Fri, Mar 04, 2005 at 04:18:13PM -0800, Debian Bug Tracking System wrote:
  i think the problem is that neutrino depends on libnjb2 but no libnjb2
  could be found.
 
 Correct.  apt cannot display the package data for packages that are not in
 its database.

yes, that is clear to me, but shouldn't apt say something like:
 W: Unable to locate package libnjb2
 E: No packages found
_because_ it's not in it's database.

in my opinion the current behavior is very confusing.


signature.asc
Description: Digital signature


Bug#294418: doodle: segfaults on one picture

2005-02-21 Thread florian kriener
On Wed, Feb 09, 2005 at 07:05:18PM +0100, Daniel Baumann wrote:
 florian kriener wrote:
 Package: doodle
 Version: 0.5.0-1
 Severity: important
 
 i scanned my harddrive for the first time and i got a segfault from doodle 
 on one picture. i attach it to this email.
 
 already solved with libextractor-0.4.1 and doodle-0.6.2. both are 
 already waiting in NEW to enter sarge.

just updated these packages for my sid distribution to these versions
but the error remains the same.


signature.asc
Description: Digital signature


Bug#296166: apt-cache show libnjb2 does not give any response on my computer

2005-02-20 Thread florian kriener
Package: apt
Version: 0.5.28.4
Severity: normal


first of all a few outputs:
[EMAIL PROTECTED]:~]% apt-cache show libnjb2
[EMAIL PROTECTED]:~]% apt-cache showpkg libnjb2
Package: libnjb2
Versions: 

Reverse Depends: 
  neutrino,libnjb2
Dependencies: 
Provides: 
Reverse Provides: 
[EMAIL PROTECTED]:~]% apt-cache policy libnjb2
libnjb2:
  Installed: (none)
  Candidate: (none)
  Version Table:
[EMAIL PROTECTED]:~]% grep libnjb2 /var/lib/dpkg/* -r
** gives output only in depend lines from available and available-old

i think the problem is that neutrino depends on libnjb2 but no libnjb2
could be found.

sorry for that short description, but there is nomore what i could say.


-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture i386;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Default-Release unstable;
APT::Get ;
APT::Get::Show-Upgraded true;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::userstatus status.user;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
DPkg::Post-Invoke ;
DPkg::Post-Invoke:: if [ -x /usr/bin/debsums ]; then /usr/bin/debsums 
--generate=nocheck -sp /var/cache/apt/archives; fi;
Acquire ;
Acquire::ftp ;
Acquire::ftp::Passive true;

-- (no /etc/apt/preferences present) --


-- /etc/apt/sources.list --

# the main Debian packages. 
deb http://ftp.de.debian.org/debian/ unstable main contrib non-free
#deb http://ftp2.de.debian.org/debian/ experimental main contrib non-free
deb-src http://ftp2.de.debian.org/debian/ unstable main contrib non-free

# the non-US Debian packages.
deb http://ftp.de.debian.org/debian-non-US/ unstable/non-US main contrib 
non-free
deb-src http://ftp2.de.debian.org/debian-non-US/ unstable/non-US main contrib 
non-free

#video related
deb ftp://ftp.nerim.net/debian-marillat/ unstable main
deb-src http://perso.wanadoo.fr/debian/ unstable main


#java
deb http://ftp.gwdg.de/pub/languages/java/linux/debian unstable non-free

#winex
#deb http://paradies.homelinux.net/debs ./

# xorg
#deb http://debian.linux-systeme.com unstable main
deb http://archive.ubuntu.com/ubuntu hoary main 
# Enlightenment 16.7
deb http://j.portalier.free.fr/debian testing main



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apt depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-9GCC support library
ii  libstdc++5  1:3.3.5-8The GNU Standard C++ Library v3

-- no debconf information


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



Bug#294632: jam: rebuilds on every invocation

2005-02-10 Thread florian kriener
Package: jam
Version: 2.5rel-1
Severity: important

i found, that jam rebuilds a good part of my source tree on every
invocation. i tryed to make a redux of the problem and got it to
work.

the redux is attached, it should build and never build again called
from TOP. called from src maybe too. but if you delete one object file
and run jam in src it rebuilds and never stops.

have fun...

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages jam depends on:
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an

-- no debconf information


redux.tar.gz
Description: Binary data


Bug#294418: doodle: segfaults on one picture

2005-02-09 Thread florian kriener
Package: doodle
Version: 0.5.0-1
Severity: important

i scanned my harddrive for the first time and i got a segfault from doodle on 
one picture. i attach it to this email.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages doodle depends on:
ii  adduser 3.59 Add and remove users and groups
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libextractor0   0.3.11-1 extract meta-data from files of an

-- no debconf information
attachment: arrow.png

Bug#293153: neutrino: is not installable

2005-02-01 Thread florian kriener
Package: neutrino
Severity: grave
Justification: renders package unusable

i cannot install neutrino, here is the ouput of apt:

The following packages have unmet dependencies:
  neutrino: Depends: libnjb2 but it is not installable


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)


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