Bug#1032221: cryptsetup: libgcc_s.so.1 must be installed for pthread_exit to work

2023-03-01 Thread Kai Weber
As a workaround I created a file /etc/initramfs-tools/hooks/libgcc:

. /usr/share/initramfs-tools/hook-functions
copy_file library /lib/x86_64-linux-gnu/libgcc_s.so.1 
/lib/x86_64-linux-gnu/libgcc_s.so.1

With this hook the lib is copied an I am able to provide a password at
login.



Bug#1032221: cryptsetup: libgcc_s.so.1 must be installed for pthread_exit to work

2023-03-01 Thread Kai Weber
Package: cryptsetup
Version: 2:2.6.1-1
Severity: grave
Justification: renders package unusable
X-Debbugs-Cc: kai.weber+deb...@glorybox.de

Dear Maintainer,

Today's upgrade triggered a rebuild of the initramfs. After a reboot I
can no longer login to my system. Using an older kernel worked. This ist
the error message:

Please unlock disk nvme0n1p3_crypt:
libgcc_s.so.1 must be installed for pthread_exit to work
Aborted
cryptsetup: ERROR: nvme0n1p3_crypt: cryptsetup failed, bad password or options?

Some investigations:

- update-initramfs does indeed not copy libpthread.so or libgcc_s.so
- none of the binaries copied during the update seem to depend on those 
libraries
- attached is the debug output I added to the copy_exec function
  (echo "$src $x" >> /tmp/dependencies.log)

Doing some research I found an older bug #950254 that helped me
debugging the issue


-- Package-specific info:
-- /proc/cmdline
BOOT_IMAGE=/vmlinuz-6.1.0-4-amd64 root=/dev/mapper/dummy--vg-root ro quiet

-- /etc/crypttab
nvme0n1p3_crypt UUID=e9aff144-a836-49d6-8640-01f4b7c3bb8b none luks,discard

-- /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# systemd generates mount units based on this file, see systemd.mount(5).
# Please run 'systemctl daemon-reload' after making changes here.
#
#
/dev/mapper/dummy--vg-root /   ext4errors=remount-ro 0   1
# /boot was on /dev/nvme0n1p2 during installation
UUID=0d9a09b3-abe6-4831-ad3a-166f68e6c77f /boot   ext2defaults  
  0   2
# /boot/efi was on /dev/nvme0n1p1 during installation
UUID=D114-FD63  /boot/efi   vfatumask=0077  0   1
/dev/mapper/dummy--vg-swap_1 noneswapsw  0   0

-- lsmod
Module  Size  Used by
snd_usb_audio 376832  1
snd_usbmidi_lib45056  1 snd_usb_audio
snd_rawmidi53248  1 snd_usbmidi_lib
xt_conntrack   16384  1
nft_chain_nat  16384  3
xt_MASQUERADE  20480  1
nf_nat 57344  2 nft_chain_nat,xt_MASQUERADE
nf_conntrack_netlink57344  0
nf_conntrack  188416  4 
xt_conntrack,nf_nat,nf_conntrack_netlink,xt_MASQUERADE
nf_defrag_ipv6 24576  1 nf_conntrack
nf_defrag_ipv4 16384  1 nf_conntrack
xfrm_user  53248  1
xfrm_algo  16384  1 xfrm_user
xt_addrtype16384  2
nft_compat 20480  4
nf_tables 286720  57 nft_compat,nft_chain_nat
libcrc32c  16384  3 nf_conntrack,nf_nat,nf_tables
nfnetlink  20480  4 nft_compat,nf_conntrack_netlink,nf_tables
br_netfilter   32768  0
bridge311296  1 br_netfilter
stp16384  1 bridge
llc16384  2 bridge,stp
typec_displayport  16384  1
ctr16384  2
ccm20480  6
uhid   20480  1
rfcomm 94208  4
cmac   16384  3
snd_seq_dummy  16384  0
snd_hrtimer16384  1
algif_hash 16384  1
snd_seq90112  7 snd_seq_dummy
algif_skcipher 16384  1
snd_seq_device 16384  2 snd_seq,snd_rawmidi
af_alg 36864  6 algif_hash,algif_skcipher
overlay   159744  0
qrtr   49152  4
bnep   28672  2
binfmt_misc24576  1
nls_ascii  16384  1
nls_cp437  20480  1
vfat   24576  1
fat90112  1 vfat
snd_sof_pci_intel_skl16384  0
snd_sof_intel_hda_common   188416  1 snd_sof_pci_intel_skl
soundwire_intel49152  1 snd_sof_intel_hda_common
soundwire_generic_allocation16384  1 soundwire_intel
snd_hda_codec_hdmi 81920  1
soundwire_cadence  40960  1 soundwire_intel
snd_sof_intel_hda  20480  1 snd_sof_intel_hda_common
snd_sof_pci24576  2 snd_sof_intel_hda_common,snd_sof_pci_intel_skl
snd_sof_xtensa_dsp 16384  1 snd_sof_intel_hda_common
iwlmvm385024  0
snd_sof   274432  2 snd_sof_pci,snd_sof_intel_hda_common
snd_ctl_led24576  0
intel_pmc_core_pltdrv16384  0
intel_pmc_core 53248  0
snd_hda_codec_realtek   172032  1
snd_sof_utils  20480  1 snd_sof
soundwire_bus 102400  3 
soundwire_intel,soundwire_generic_allocation,soundwire_cadence
x86_pkg_temp_thermal20480  0
intel_powerclamp   20480  0
snd_hda_codec_generic98304  1 snd_hda_codec_realtek
joydev 28672  0
coretemp   20480  0
mac80211 1171456  1 iwlmvm
snd_soc_skl   184320  0
btusb  65536  0
snd_soc_hdac_hda   24576  2 snd_sof_intel_hda_common,snd_soc_skl
mei_hdcp   24576  0
snd_hda_ext_core   40960  3 

Bug#1008776: intel-media-va-driver: Segmentation fault with gstreamer based applications

2022-04-06 Thread Kai Weber
* Sebastian Ramacher :

> That could be another case of the driver expecting to have a kernel
> available which in fact is disabled in the open source build. If
> 22.3.1+dfsg1-1 doesn't fix the issue for you, please let my know your
> CPU/GPU so that the issue can be reported upstream.

Unfortunately it does not solve the issue. Here are my CPU/GPU types:

CPU: Intel® Core™ i7-8550U CPU @ 1.80GHz × 8
GPU: Mesa Intel® UHD Graphics 620 (KBL GT2)



Bug#1008776: intel-media-va-driver: Segmentation fault with gstreamer based applications

2022-04-01 Thread Kai Weber
Package: intel-media-va-driver
Version: 22.3.0+dfsg1-1
Severity: grave
Justification: renders package unusable
X-Debbugs-Cc: kai.weber+deb...@glorybox.de

Dear Maintainer,

since a recent update (can not excalty determine the date) gstreamer based 
applications like totem or gst-play-1.0 itself segfault on video files.

Removing intel-media-va-driver resolves the issue.
Installing intel-media-va-driver-non-free resolves the issue.

Attached is a backtrace. I have no experience getting backtraces. This one was 
achieved after install the intel-media-va-driver-dbgsym package and running

$ export DEBUGINFOD_URLS="https://debuginfod.debian.net;
$ gdb --args gst-play-1.0 /home/kai/Downloads/pony.mp4 --videosink=glimagesink
Thread 14 "qtdemux0:sink" received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7fffb77fe640 (LWP 22147)]
0x7fffb5f906be in KernelDll_AllocateStates (pKernelBin=, 
uKernelSize=0, pFcPatchCache=0x0, 
uFcPatchCacheSize=, pDefaultRules=0x0, 
ModifyFunctionPointers=0x0)
at ./media_driver/agnostic/common/vp/kdll/hal_kerneldll.c:2791
Download failed: Invalid argument.  Continuing without source file 
./obj-x86_64-linux-gnu/media_driver/./media_driver/agnostic/common/vp/kdll/hal_kerneldll.c.
2791./media_driver/agnostic/common/vp/kdll/hal_kerneldll.c: No such file or 
directory.
(gdb) set logging file backtrace.log
(gdb) set logging on
Copying output to backtrace.log.
(gdb) bt
...
(gdb) set logging off
Done logging to backtrace.log.
(gdb) quit

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

Kernel: Linux 5.16.0-6-amd64 (SMP w/8 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages intel-media-va-driver depends on:
ii  libc6   2.33-7
ii  libgcc-s1   12-20220319-1
ii  libigdgmm12 22.1.2+ds1-1
ii  libstdc++6  12-20220319-1
ii  libva2 [libva-driver-abi-1.14]  2.14.0-1

intel-media-va-driver recommends no packages.

intel-media-va-driver suggests no packages.

-- no debconf information
#0  0x7fffb5f906be in KernelDll_AllocateStates (pKernelBin=, 
uKernelSize=0, pFcPatchCache=0x0, 
uFcPatchCacheSize=, pDefaultRules=0x0, 
ModifyFunctionPointers=0x0)
at ./media_driver/agnostic/common/vp/kdll/hal_kerneldll.c:2791
#1  0x7fffb5f82028 in VphalRenderer::Initialize (this=0x7fffa813d480, 
pSettings=0x7fffb77fae80, isApoEnabled=)
at ./media_driver/agnostic/common/vp/hal/vphal_renderer.cpp:1418
#2  0x7fffb5f67a89 in VphalState::Allocate (this=0x7fffa8123e50, 
pVpHalSettings=0x7fffb77fae80)
at ./media_driver/agnostic/common/vp/hal/vphal.cpp:201
#3  0x7fffb61848a2 in DdiVp_InitVpHal (pVpCtx=0x7fffa812add0) at 
./media_driver/linux/common/vp/ddi/media_libva_vp.c:1811
#4  0x7fffb6189460 in DdiVp_InitCtx (pVaDrvCtx=, 
pVpCtx=0x7fffa812add0)
at ./media_driver/linux/common/vp/ddi/media_libva_vp.c:1671
#5  0x7fffb618985e in DdiVp_CreateContext 
(pVaDrvCtx=pVaDrvCtx@entry=0x7fffa8081e20, vaConfigID=vaConfigID@entry=0, 
iWidth=iWidth@entry=0, iHeight=iHeight@entry=0, iFlag=iFlag@entry=0, 
vaSurfIDs=vaSurfIDs@entry=0x0, iNumSurfs=0, 
pVaCtxID=0x7fffb77fb1ac) at 
./media_driver/linux/common/vp/ddi/media_libva_vp.c:3291
#6  0x7fffb6147be2 in DdiMedia_PutImage (ctx=0x7fffa8081e20, surface=0, 
image=, src_x=0, src_y=0, src_width=64, 
src_height=64, dest_x=0, dest_y=0, dest_width=64, dest_height=64) at 
./media_driver/linux/common/ddi/media_libva.cpp:5535
#7  0x7fffd425521c in vaPutImage () from /lib/x86_64-linux-gnu/libva.so.2
#8  0x7fffd42def8d in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvaapi.so
#9  0x7fffd429d686 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvaapi.so
#10 0x7fffd42a480e in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvaapi.so
#11 0x777ac5cb in ?? () from /lib/x86_64-linux-gnu/libgstbase-1.0.so.0
#12 0x777b014d in ?? () from /lib/x86_64-linux-gnu/libgstbase-1.0.so.0
#13 0x77b912f0 in gst_pad_query () from 
/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
#14 0x77b91a1b in gst_pad_peer_query () from 
/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
#15 0x77bd14b8 in gst_pad_peer_query_caps () from 
/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
#16 0x777afe28 in ?? () from /lib/x86_64-linux-gnu/libgstbase-1.0.so.0
#17 0x77b912f0 in gst_pad_query () from 
/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
#18 0x77b91a1b in gst_pad_peer_query () from 
/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
#19 0x77bcb858 in ?? () from /lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
#20 

Bug#831495: totem does not start, Aborted.

2016-07-16 Thread Kai Weber
> They are in a separate archive:
> https://wiki.debian.org/AutomaticDebugPackages

totem works again.

I ran totem again in gdb, and the backtrace mentioned libavcodec.so.57.
libavcodec57 was upgraded on my machine last week

2016-07-12 19:59:08 upgrade libavcodec57:amd64 7:3.0.2-4 7:3.1.1-1
2016-07-13 08:26:22 upgrade libavcodec57:amd64 7:3.1.1-1 7:3.1.1-2

I could not downgrade to the version 3.0.2 easily because totem would be
removed by the downgrade. But with some trial and error I found totem
install gstreamer1.0-libav. I removed the package and reinstalled it and
now totem works!

This was the backtrace:

#0  0x760c11c8 in __GI_raise (sig=sig@entry=6) at 
../sysdeps/unix/sysv/linux/raise.c:54
resultvar = 0
pid = 15119
selftid = 15133
#1  0x760c264a in __GI_abort () at abort.c:89
save_stage = 2
act = {__sigaction_handler = {sa_handler = 0x20, sa_sigaction = 0x20}, 
sa_mask = {__val = {14073623472, 140736235985293, 142, 140736234748278, 
140735878064032, 8, 140736220803665,
  140735878062864, 5993174354767485440, 140736240040192, 
140735878064032, 140735878065216, 5993174354767485440, 1136, 140736239850576, 
140735878064032}}, sa_flags = -1610292464,
  sa_restorer = 0x7fffa004e000}
sigs = {__val = {32, 0 }}
#2  0x7fffb4fbaf5b in ?? () from /usr/lib/x86_64-linux-gnu/libavcodec.so.57
No symbol table info available.
#3  0x7fffb4fbb026 in avcodec_alloc_context3 () from 
/usr/lib/x86_64-linux-gnu/libavcodec.so.57
No symbol table info available.
#4  0x7fffb6962540 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#5  0x7fffb6958e53 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#6  0x7698d22d in g_type_class_ref () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#7  0x74f41da4 in gst_element_register () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#8  0x7fffb69595b3 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#9  0x7fffb694be20 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#10 0x74f63537 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#11 0x74f65425 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#12 0x74f6612c in gst_plugin_load_by_name () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#13 0x74f66a8d in gst_plugin_feature_load () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#14 0x74f4146e in gst_element_factory_create () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#15 0x7fffdab36398 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
No symbol table info available.
#16 0x7fffdab42202 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
No symbol table info available.
#17 0x7fffdab42ab2 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
No symbol table info available.
#18 0x7fffdab42cff in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
No symbol table info available.
#19 0x7696cfa5 in g_closure_invoke () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#20 0x7697efc1 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
---Type  to continue, or q  to quit---
No symbol table info available.
#21 0x76987d5c in g_signal_emit_valist () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#22 0x7698808f in g_signal_emit () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#23 0x769714d4 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#24 0x74f14d44 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#25 0x76973a79 in g_object_notify_by_pspec () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#26 0x74f52fbc in ?? () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#27 0x74f5e710 in gst_pad_push_event () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#28 0x7fffb6b80a1b in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioparsers.so
No symbol table info available.
#29 0x7fffb6b8128f in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioparsers.so
No symbol table info available.
#30 0x7fffef750963 in ?? () from 

Bug#831495: totem does not start, Aborted.

2016-07-16 Thread Kai Weber
❦ Michael Biebl :

> Can you install the totem-dbgsym and related packages to get a more
> useful backtrace.

It seems, totem-dbgsym is not available for amd64. I double checked
https://packages.debian.org/sid/totem-dbgsym

Do I have to build it by myself? How?

> Since we didn't have any recent updates of totem, I wonder if it's
> related to some other package upgrades, like gstreamer.

It's my guess as well, but I have no idea when it started exactly,
sometime last week July, 11th to 14th. I had no upgrade of gstreamer
last week. The candidate I had in mind was libglib but I just upgraded
to experimental version 2.49.2-2 and it did not solve the problem.

Thanks, Kai



Bug#831495: totem does not start, Aborted.

2016-07-16 Thread Kai Weber
Package: totem
Version: 3.20.1-3
Severity: grave
Justification: renders package unusable

When starting totem the program does not start but exits directly with
"Aborted". I can provide more information if required.

$ totem
Aborted

Running with gdb:

$ gdb totem
GNU gdb (Debian 7.11.1-2) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later

This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show
copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from totem...(no debugging symbols found)...done.
(gdb) run
Starting program: /usr/bin/totem 
[Thread debugging using libthread_db enabled]
Using host libthread_db library
"/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7fffe36c2700 (LWP 16361)]
[New Thread 0x7fffe2ec1700 (LWP 16362)]
[New Thread 0x7fffdb7a4700 (LWP 16363)]
[New Thread 0x7fffd9b25700 (LWP 16364)]
[New Thread 0x7fffc700 (LWP 16365)]
[New Thread 0x7fffc76d5700 (LWP 16366)]
[New Thread 0x7fffc6ed4700 (LWP 16367)]
[New Thread 0x7fffc5e1d700 (LWP 16369)]
[New Thread 0x7fffc4a45700 (LWP 16370)]
[New Thread 0x7fffb759d700 (LWP 16371)]

Thread 11 "multiqueue0:src" received signal SIGABRT, Aborted.
[Switching to Thread 0x7fffb759d700 (LWP 16371)]
0x760c21c8 in __GI_raise (sig=sig@entry=6) at
../sysdeps/unix/sysv/linux/raise.c:54
54  ../sysdeps/unix/sysv/linux/raise.c: No such file or directory.
(gdb) backtrace full
#0  0x760c21c8 in __GI_raise (sig=sig@entry=6) at 
../sysdeps/unix/sysv/linux/raise.c:54
resultvar = 0
pid = 16569
selftid = 16580
#1  0x760c364a in __GI_abort () at abort.c:89
save_stage = 2
act = {__sigaction_handler = {sa_handler = 0x20, sa_sigaction = 0x20}, 
sa_mask = {__val = {14073623472, 140736235985293, 142, 140736234748278, 
140735878070176, 8,
  140736220803665, 140735878069008, 16406223249348791808, 
140736240040192, 140735878070176, 140735878071360, 16406223249348791808, 1136, 
140736239850576,
  140735878070176}}, sa_flags = -1610286320, sa_restorer = 
0x7fffa004f800}
sigs = {__val = {32, 0 }}
#2  0x7fffb4fbaf5b in ?? () from /usr/lib/x86_64-linux-gnu/libavcodec.so.57
No symbol table info available.
#3  0x7fffb4fbb026 in avcodec_alloc_context3 () from 
/usr/lib/x86_64-linux-gnu/libavcodec.so.57
No symbol table info available.
#4  0x7fffb6962540 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#5  0x7fffb6958e53 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#6  0x7698e22d in g_type_class_ref () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#7  0x74f42da4 in gst_element_register () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#8  0x7fffb69595b3 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#9  0x7fffb694be20 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so
No symbol table info available.
#10 0x74f64537 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#11 0x74f66425 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#12 0x74f6712c in gst_plugin_load_by_name () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#13 0x74f67a8d in gst_plugin_feature_load () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#14 0x74f4246e in gst_element_factory_create () from 
/usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
No symbol table info available.
#15 0x7fffdab36398 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
No symbol table info available.
#16 0x7fffdab42202 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
---Type  to continue, or q  to quit---
No symbol table info available.
#17 0x7fffdab42ab2 in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
No symbol table info available.
#18 0x7fffdab42cff in ?? () from 
/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so
No symbol table info available.
#19 0x7696dfa5 in g_closure_invoke () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#20 0x7697ffc1 in ?? 

Bug#659235: cryptsetup: Fails to detect crypted devices on LVM

2012-02-09 Thread Kai Weber
Package: cryptsetup
Version: 2:1.4.1-1
Severity: critical
Justification: breaks the whole system

Since the upgrade from 1.3 to 1.4 my system no longer boots. Seems to be
a problem when trying to detect my root filesystem:

$ update-initramfs -u -v

Calling hook cryptroot
cryptsetup: WARNING: failed to find deps for vg--sda-root
cryptsetup: FAILURE: could not determine configuration for vg--sda-root


The result of the warning/failure is a missing cryptroot file in initrd.
Maybe a problem with the (strange) naming of my LVM volume group (vg-sda)?

I managed to restore this file manually by guessing the format from a working
Debian/testing system and booting from a rescue CD.

What information should I provide to help fixing the problem?

Regards, Kai


-- Package-specific info:
-- /proc/cmdline
BOOT_IMAGE=/vmlinuz-3.2.0-1-amd64 root=/dev/mapper/vg--sda-root ro quiet 
pcie_aspm=force threadirqs

-- /etc/crypttab
sda5_crypt UUID=0ce62641-9313-4589-881d-12192c15e7ed none luks

-- /etc/fstab
proc /proc   proc 
defaults 0  0
/dev/mapper/vg--sda-root /   ext4 
errors=remount-ro0  1
UUID=a1abc071-39dc-402e-bebf-12efdf007fe3/boot   ext2 
defaults 0  2
/dev/mapper/vg--sda-home /home   ext4 
defaults 0  2
/dev/mapper/vg--sda-tmp  /tmpext4 
defaults 0  2
/dev/mapper/vg--sda-var  /varext4 
defaults 0  2
/dev/mapper/vg--sda-swap noneswap 
sw   0  0
/dev/sr0 /media/cdrom0   udf,iso9660  
user,noauto  0  0
/dev/sdb1/media/usb0 auto 
rw,user,noauto   0  0
/dev/sdc1/media/usb1 auto 
rw,user,noauto   0  0

-- lsmod
Module  Size  Used by
vmnet  42882  13 
fuse   61981  2 
vsock  42822  0 
vmci   59875  1 vsock
vmmon  61571  0 
acpi_cpufreq   12935  1 
mperf  12453  1 acpi_cpufreq
cpufreq_stats  12866  0 
cpufreq_userspace  12576  0 
cpufreq_powersave  12454  0 
cpufreq_conservative13147  0 
ppdev  12763  0 
lp 17149  0 
bnep   17567  2 
rfcomm 33656  10 
ext2   59231  1 
coretemp   12898  0 
loop   22641  0 
snd_hda_codec_hdmi 30783  1 
snd_hda_codec_idt  53792  1 
snd_hda_intel  26345  2 
arc4   12458  2 
snd_hda_codec  77994  3 
snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel
snd_hwdep  13186  1 snd_hda_codec
snd_pcm_oss41081  0 
snd_mixer_oss  17916  1 snd_pcm_oss
snd_pcm63900  4 
snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_pcm_oss
uvcvideo   57744  0 
videodev   70889  1 uvcvideo
snd_seq_midi   12848  0 
iwlwifi   166703  0 
snd_rawmidi23060  1 snd_seq_midi
snd_seq_midi_event 13316  1 snd_seq_midi
snd_seq45093  2 snd_seq_midi,snd_seq_midi_event
snd_timer  22917  2 snd_pcm,snd_seq
snd_seq_device 13176  3 snd_seq_midi,snd_rawmidi,snd_seq
mac80211  192768  1 iwlwifi
snd52850  16 
snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
dell_laptop17120  0 
i2c_i801   16870  0 
media  18148  2 uvcvideo,videodev
iTCO_wdt   17081  0 
nvidia  12059418  45 
v4l2_compat_ioctl3216655  1 videodev
joydev 17266  0 
btusb  17502  2 
bluetooth 119406  23 bnep,rfcomm,btusb
cfg80211  137140  2 iwlwifi,mac80211
dell_wmi   12477  0 
soundcore  13065  1 snd
i2c_core   23876  3 videodev,i2c_i801,nvidia
rfkill 19012  5 dell_laptop,bluetooth,cfg80211
snd_page_alloc 13003  2 snd_hda_intel,snd_pcm
parport_pc 22364  1 
iTCO_vendor_support12704  1 iTCO_wdt
battery13109  0 
ac 12624  0 
sparse_keymap  12760  1 dell_wmi
evdev  17562  13 

Bug#649363: Desktop freezes when trying to display certain dialog windows

2011-11-21 Thread Kai Weber
Source: mutter
Followup-For: Bug #649363

In fallback mode the dialogs appear correctly.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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



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



Bug#648010: chromium: Crashes instantly after start Aw, snap!

2011-11-08 Thread Kai Weber
Package: chromium
Version: 15.0.874.106~r107270-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

after upgrade to the new chromium after start I always get the Chromium crash
page: Aw, Snap!

No URL can be opened, even internal ones like chrome://settings/

I am low on diskspace but try to get more informations via chromium-dbg.

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

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

Versions of packages chromium depends on:
ii  chromium-inspector  15.0.874.106~r107270-1 
ii  libasound2  1.0.24.1-4 
ii  libavcodec534:0.7.2-1+b1   
ii  libavformat53   4:0.7.2-1+b1   
ii  libavutil-extra-51  4:0.7.2.1+b1   
ii  libbz2-1.0  1.0.5-7
ii  libc6   2.13-21
ii  libcairo2   1.10.2-6.1 
ii  libcups21.5.0-10   
ii  libdbus-1-3 1.4.16-1   
ii  libdbus-glib-1-20.98-1 
ii  libevent-1.4-2  1.4.14b-stable-1   
ii  libexpat1   2.0.1-7.2  
ii  libflac81.2.1-6
ii  libfontconfig1  2.8.0-3
ii  libfreetype62.4.7-2
ii  libgcc1 1:4.6.2-4  
ii  libgconf2-4 2.32.4-1   
ii  libgcrypt11 1.5.0-3
ii  libgdk-pixbuf2.0-0  2.24.0-1   
ii  libglib2.0-02.28.8-1   
ii  libgtk2.0-0 2.24.7-1   
ii  libjpeg88c-2   
ii  libnspr4-0d 4.8.9-1
ii  libnss3-1d  3.13.1.with.ckbi.1.88-1
ii  libpango1.0-0   1.29.4-2   
ii  libpng12-0  1.2.46-3   
ii  libspeex1   1.2~rc1-1  
ii  libstdc++6  4.6.2-4
ii  libvpx0 0.9.7.p1-2 
ii  libwebp20.1.3-1
ii  libx11-62:1.4.4-2  
ii  libxext62:1.3.0-3  
ii  libxml2 2.7.8.dfsg-5   
ii  libxrender1 1:0.9.6-2  
ii  libxslt1.1  1.1.26-8   
ii  libxss1 1:1.2.1-2  
ii  xdg-utils   1.1.0~rc1-2
ii  zlib1g  1:1.2.3.4.dfsg-3   

chromium recommends no packages.

Versions of packages chromium suggests:
pn  chromium-l10n  none

-- no debconf information



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



Bug#568304: touchpad

2010-02-03 Thread Kai Weber
Package: gpointing-device-settings
Version: 1.5.0-1
Severity: normal

I can confirm this bug and behaviour. The touchpad does not work
anymore.

Output of synclient -l attached but seems to be ok.

Regards, Kai

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (800, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages gpointing-device-settings depends on:
ii  gconf22.28.0-1   GNOME configuration database syste
ii  libatk1.0-0   1.28.0-1   The ATK accessibility toolkit
ii  libc6 2.10.2-5   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.16-2   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.84-1 simple interprocess messaging syst
ii  libfontconfig12.8.0-2generic font configuration library
ii  libfreetype6  2.3.11-1   FreeType 2 font engine, shared lib
ii  libgconf2-4   2.28.0-1   GNOME configuration database syste
ii  libglib2.0-0  2.22.4-1   The GLib library of C routines
ii  libgpds0  1.5.0-1library for configuration of point
ii  libgtk2.0-0   2.18.6-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.26.2-1   Layout and rendering of internatio
ii  libxi62:1.3-2X11 Input extension library

gpointing-device-settings recommends no packages.

gpointing-device-settings suggests no packages.

-- no debconf information
Parameter settings:
LeftEdge= 1752
RightEdge   = 5192
TopEdge = 1620
BottomEdge  = 4236
FingerLow   = 24
FingerHigh  = 29
FingerPress = 255
MaxTapTime  = 180
MaxTapMove  = 221
MaxDoubleTapTime= 180
SingleTapTimeout= 180
ClickTime   = 100
FastTaps= 0
EmulateMidButtonTime= 75
EmulateTwoFingerMinZ= 280
EmulateTwoFingerMinW= 7
VertScrollDelta = 100
HorizScrollDelta= 100
VertEdgeScroll  = 1
HorizEdgeScroll = 1
CornerCoasting  = 0
VertTwoFingerScroll = 0
HorizTwoFingerScroll= 0
MinSpeed= 0
MaxSpeed= 0
AccelFactor = 4.48416e-44
TrackstickSpeed = 4.62428e-44
EdgeMotionMinZ  = 29
EdgeMotionMaxZ  = 159
EdgeMotionMinSpeed  = 1
EdgeMotionMaxSpeed  = 401
EdgeMotionUseAlways = 0
UpDownScrolling = 1
LeftRightScrolling  = 1
UpDownScrollRepeat  = 1
LeftRightScrollRepeat   = 1
ScrollButtonRepeat  = 100
TouchpadOff = 0
GuestMouseOff   = 0
LockedDrags = 0
LockedDragTimeout   = 5000
RTCornerButton  = 0
RBCornerButton  = 0
LTCornerButton  = 0
LBCornerButton  = 0
TapButton1  = 0
TapButton2  = 0
TapButton3  = 0
ClickFinger1= -48
ClickFinger2= 0
ClickFinger3= -68
CircularScrolling   = 0
CircScrollDelta = 0.1
CircScrollTrigger   = 0
CircularPad = 0
PalmDetect  = 0
PalmMinWidth= 10
PalmMinZ= 199
CoastingSpeed   = 0
PressureMotionMinZ  = 29
PressureMotionMaxZ  = 159
PressureMotionMinFactor = 1
PressureMotionMaxFactor = 1
GrabEventDevice = 1
TapAndDragGesture   = 1
AreaLeftEdge= 0
AreaRightEdge   = 0
AreaTopEdge = 0
AreaBottomEdge  = 0


Bug#557252: Synaptics module not loaded by X anymore

2009-11-20 Thread Kai Weber
Package: xserver-xorg-input-synaptics
Version: 1.2.0-1
Severity: critical

The fix for #524130 causes to not load the synaptics module for X
anymore. So I can not use the touchpad anymore. I removed the offending
lines from the .fdi file and the driver is loaded again.

As far as I understand from reading the spec, you can not negate a match
in .fdi files. So we have to find another fix for #524130.

Regards, Kai

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Aug  3 23:59 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1868064 Oct 13 11:43 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (rev 0c)

/etc/X11/xorg.conf does not exist.

Xorg X server log files on system:
-rw-r--r-- 1 root root 24927 Aug 11 22:07 /var/log/Xorg.20.log
-rw-r--r-- 1 root root 46193 Nov 20 18:56 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.5
Release Date: 2009-10-11
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.30-2-amd64 x86_64 Debian
Current Operating System: Linux dummy 2.6.31.6-t61 #1 SMP PREEMPT Tue Nov 10 
19:44:56 CET 2009 x86_64
Build Date: 13 October 2009  09:39:10AM
xorg-server 2:1.6.5-1 (jcris...@debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Fri Nov 20 18:55:57 2009
(II) Loader magic: 0x3b40
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2a02:17aa:20b5 Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller rev 12, Mem @ 0xf810/1048576, 
0xe000/268435456, I/O @ 0x1800/8
(==) Using default built-in configuration (39 lines)
(==) --- Start of built-in configuration ---
Section Device
Identifier  Builtin Default intel Device 0
Driver  intel
EndSection
Section Screen
Identifier  Builtin Default intel Screen 0
Device  Builtin Default intel Device 0
EndSection
Section Device
Identifier  Builtin Default i810 Device 0
Driver  i810
EndSection
Section Screen
Identifier  Builtin Default i810 Screen 0
Device  Builtin Default i810 Device 0
EndSection
Section Device
Identifier  Builtin Default vesa Device 0
Driver  vesa
EndSection
Section Screen
Identifier  Builtin Default vesa Screen 0
Device  Builtin Default vesa Device 0
EndSection
Section Device
Identifier  Builtin Default fbdev Device 0
Driver  fbdev
EndSection
Section Screen
Identifier  Builtin Default fbdev Screen 0
Device  Builtin Default fbdev Device 0
EndSection
Section ServerLayout
Identifier  Builtin Default Layout
Screen  Builtin Default intel Screen 0
Screen  Builtin Default i810 Screen 0
Screen  Builtin Default vesa Screen 0
Screen  Builtin Default fbdev Screen 0
EndSection
(==) --- End of built-in configuration ---
(==) ServerLayout Builtin Default Layout
(**) |--Screen Builtin Default intel Screen 0 (0)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default intel Device 0
(==) No monitor specified for screen Builtin Default intel Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default i810 Screen 0 (1)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default i810 Device 0
(==) No monitor specified for screen Builtin Default i810 Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default vesa Screen 0 (2)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default vesa Device 0
(==) No monitor specified for screen Builtin Default vesa Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default fbdev Screen 0 (3)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default fbdev Device 0
(==) No monitor specified for screen Builtin Default fbdev Screen 0.
Using a default monitor configuration.
(==) Automatically adding devices
(==) 

Bug#556251: Syntax error near unexpected token

2009-11-14 Thread Kai Weber
Package: bash-completion
Version: 1:1.1-2
Severity: grave

Following bug with the new version renders the package unuseable:

bash: /etc/bash_completion: line 967: syntax error near unexpected token
`{'
bash: /etc/bash_completion: line 967: `else if ($1 !~ /:/  $1
~ /^'$cur'/) { print $1 }}' ) )'

Regards, Kai

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (800, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages bash-completion depends on:
ii  bash  4.0-7  The GNU Bourne Again SHell

bash-completion recommends no packages.

bash-completion suggests no packages.

-- no debconf information



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



Bug#521898: gstreamer0.10-plugins-bad: Renders totem unusable as well

2009-04-02 Thread Kai Weber

Sebastian Dröge wrote:


could you get a backtrace with
GST_REGISTRY_FORK=no gdb --args gst-inspect-0.10 ladspa
run
bt full

For this please also install the debug packages of libc, glib,
gstreamer, gst-plugins-base and gst-plugins-bad.


This is what I did:

$ rm ~/.gstreamer-0.10/registry.x86_64.bin
$ GST_REGISTRY_FORK=no gdb --args gst-inspect-0.10 ladspa
...
(gdb) run
Starting program: /usr/bin/gst-inspect-0.10 ladspa
[Thread debugging using libthread_db enabled]
[New Thread 0x7f21beb0c6f0 (LWP 12032)]

(gst-inspect-0.10:12032): libgnomevfs-WARNING **: Cannot load module 
`/usr/lib/gnome-vfs-2.0/modules/libmapping.so' 
(/usr/lib/gnome-vfs-2.0/modules/libmapping.so: cannot open shared object 
file: No such file or directory)


(gst-inspect-0.10:12032): libgnomevfs-WARNING **: Cannot load module 
`/usr/lib/gnome-vfs-2.0/modules/libmapping.so' 
(/usr/lib/gnome-vfs-2.0/modules/libmapping.so: cannot open shared object 
file: No such file or directory)


(gst-inspect-0.10:12032): GLib-GObject-WARNING **: cannot register 
existing type `GstValve'


(gst-inspect-0.10:12032): GLib-CRITICAL **: g_once_init_leave: assertion 
`initialization_value != 0' failed


(gst-inspect-0.10:12032): GStreamer-CRITICAL **: gst_element_register: 
assertion `g_type_is_a (type, GST_TYPE_ELEMENT)' failed


(gst-inspect-0.10:12032): GLib-GObject-WARNING **: cannot register 
existing type `GstRTPMux'


(gst-inspect-0.10:12032): GStreamer-CRITICAL **: gst_element_register: 
assertion `g_type_is_a (type, GST_TYPE_ELEMENT)' failed

No such element or plugin 'ladspa'

Program exited with code 0377.
(gdb) bt full
No stack.
(gdb)

$ totem

ERROR: Caught a segmentation fault while loading plugin file:
/usr/lib/gstreamer-0.10/libgstladspa.so

Please either:
- remove it and restart.
- run with --gst-disable-segtrap and debug.
Error re-scanning registry , child terminated by signal
Run 'totem --help' to see a full list of available command line options.
$ empathy

ERROR: Caught a segmentation fault while loading plugin file:
/usr/lib/gstreamer-0.10/libgstladspa.so

Please either:
- remove it and restart.
- run with --gst-disable-segtrap and debug.
Could not initialize GStreamer: Error re-scanning registry , child 
terminated by signal





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



Bug#521898: gstreamer0.10-plugins-bad: Renders totem unusable as well

2009-04-02 Thread Kai Weber



$ totem

ERROR: Caught a segmentation fault while loading plugin file:
/usr/lib/gstreamer-0.10/libgstladspa.so


BTW, moving /usr/lib/gstreamer-0.10/libgstladspa.so out of the way 
solves the problem.


Regards, Kai



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



Bug#521898: gstreamer0.10-plugins-bad: Renders totem unusable as well

2009-03-31 Thread Kai Weber
Package: gstreamer0.10-plugins-bad
Version: 0.10.11-2
Severity: normal


The error affects totem-gstreamer as well.

$ totem

ERROR: Caught a segmentation fault while loading plugin file:
/usr/lib/gstreamer-0.10/libgstladspa.so

Please either:
- remove it and restart.
- run with --gst-disable-segtrap and debug.
Error re-scanning registry , child terminated by signal
Run 'totem --help' to see a full list of available command line options.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (800, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages gstreamer0.10-plugins-bad depends on:
ii  gstreamer0.10-plugins-base  0.10.22-4GStreamer plugins from the base 
ii  libasound2  1.0.19-1 shared library for ALSA applicatio
ii  libass1 0.9.5-2  library for SSA/ASS subtitles rend
ii  libbz2-1.0  1.0.5-1  high-quality block-sorting file co
ii  libc6   2.9-6GNU C Library: Shared libraries
ii  libcdaudio1 0.99.12p2-7  library for controlling a CD-ROM w
ii  libcelt00.4.0-1  The CELT codec runtime library
ii  libdc1394-222.1.0-2  high level programming interface f
ii  libdca0 0.0.5-2  decoding library for DTS Coherent 
ii  libdirectfb-1.2-0   1.2.7-2  direct frame buffer graphics - sha
ii  libdvdnav4  4.1.3-3  DVD navigation library
ii  libdvdread4 4.1.3-4  library for reading DVDs
ii  libexempi3  2.1.0-3  library to parse XMP metadata (Lib
ii  libexif12   0.6.16-2.1   library to parse EXIF files
ii  libfaad02.6.1-3.1freeware Advanced Audio Decoder - 
ii  libgcc1 1:4.3.3-5GCC support library
ii  libglib2.0-02.20.0-2 The GLib library of C routines
ii  libgmyth0   1:0.7.1-1GObject based library for accessin
ii  libgsm1 1.0.12-1 Shared libraries for GSM speech co
ii  libgstreamer-plugins-base0. 0.10.22-4GStreamer libraries from the base
ii  libgstreamer0.10-0  0.10.22-2Core GStreamer libraries and eleme
ii  libiptcdata01.0.3-1  Library to parse IPTC metadata
ii  libjack00.116.1-4JACK Audio Connection Kit (librari
ii  libjasper1  1.900.1-5.1  The JasPer JPEG-2000 runtime libra
ii  liblrdf00.4.0-1.1a library to manipulate RDF files 
ii  libmms0 0.4-2MMS stream protocol library - shar
ii  libmodplug0c2   1:0.8.4-3shared libraries for mod music bas
ii  libmpcdec3  1:1.2.2-2.1  Musepack (MPC) format library
ii  libmusicbrainz4c2a  2.1.5-2  Second generation incarnation of t
ii  libneon27-gnutls0.28.2-6.1   An HTTP and WebDAV client library 
ii  libofa0 0.9.3-3  Library for acoustic fingerprintin
ii  liboil0.3   0.3.15-1 Library of Optimized Inner Loops
ii  libsndfile1 1.0.19-2 Library for reading/writing audio 
ii  libsoundtouch1c21.3.1-2  sound stretching library
ii  libssl0.9.8 0.9.8g-15SSL shared libraries
ii  libstdc++6  4.3.3-5  The GNU Standard C++ Library v3
ii  libwildmidi00.2.2-2  software MIDI player library
ii  libx11-62:1.2-1  X11 client-side library
ii  libxml2 2.7.3.dfsg-1 GNOME XML library

gstreamer0.10-plugins-bad recommends no packages.

gstreamer0.10-plugins-bad suggests no packages.

-- no debconf information



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



Bug#451791: xserver-xorg-video-intel: XAA on GM965 - no video player working

2008-09-01 Thread Kai Weber
Package: xserver-xorg-video-intel
Followup-For: Bug #451791


 xserver-xorg-video-intel (2:2.3.2-2+lenny3) unstable; urgency=low

  [ Brice Goglin ]
  * Add 02_xaa_by_default_on_i965.diff to switch back to XAA on
i965 by default to avoid many rendering problems, closes: #451791.

With this patch, all my video players (totem, vlc, mplayer, xine) stopped 
working with error messages like that:

The error was 'BadAlloc' (insufficient resources for operation)

I found some reports on Fedora and Ubuntu with similiar problems. Switching 
manually back to EXA fixed the problem. BTW, I never had problems with font 
rendering.

https://bugs.launchpad.net/fedora/+bug/111257
https://bugs.freedesktop.org/show_bug.cgi?id=10912#c33

Regards, Kai

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13  7. Feb 2008  /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1901104 26. Aug 20:25 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (rev 0c)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2505  1. Sep 23:16 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules xorg
Option  XkbModel thinkpad60
Option  XkbLayout de
Option  XkbVariant nodeadkeys
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  Emulate3Buttons   true
# trackpoint scrolling
Option  EmulateWheel  on
Option  EmulateWheelButton2
Option  YAxisMapping  4 5
Option  XAxisMapping  6 7   
EndSection

Section InputDevice
Identifier Synaptics Touchpad
Driver synaptics
Option SendCoreEvents true
Option Device /dev/psaux
Option Protocol auto-dev
Option LeftEdge 1900
Option RightEdge 5000
Option TopEdge 1400
Option BottomEdge 4500
Option FingerLow 25
Option FingerHigh 35
Option MaxTapTime 180
Option MaxTapMove 220
Option ClickTime 0
Option VertEdgeScroll 1
Option VertScrollDelta 45
Option HorizEdgeScroll 1
Option HorizScrollDelta 45
Option MinSpeed 0.08
Option MaxSpeed 0.60
Option AccelFactor 0.003
Option EdgeMotionMinSpeed 200
Option EdgeMotionMaxSpeed 200
Option TapButton1 1
Option TapButton2 3
Option TapButton3 2
Option SHMConfig on
EndSection

Section Device
Identifier  Configured Video Device
 Option AccelMethod exa
EndSection

Section Monitor
Identifier  Configured Monitor
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection

Section ServerLayout
Identifier Default Layout
Screen Default Screen
InputDevice Generic Keyboard
InputDevice Configured Mouse CorePointer
InputDevice Synaptics Touchpad
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 35882 16. Feb 2008  /var/log/Xorg.20.log
-rw-r--r-- 1 root root 40951  1. Sep 23:17 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-5)
Current Operating System: Linux dummy 2.6.26-1-amd64 #1 SMP Thu Aug 28 11:13:42 
UTC 2008 x86_64
Build Date: 26 August 2008  06:07:42PM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: 

Bug#471317: Can confirm amd64 and glib breakage

2008-03-18 Thread Kai Weber
Just wanted to add that I can confirm the bug on amd64. A downgrade to
libglib 2.16.1-1 fixes the problem, too.

Regards
Kai



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



Bug#457753: loadcpufreq does nothing by default, cpufrequtils unusable

2007-12-25 Thread Kai Weber
Package: cpufrequtils
Version: 002-6
Severity: grave
Justification: renders package unusable


The script init.d/loadcpufreq is disabled by default, so no modules for
cpu frequency scaling are loaded. This makes init.d/cpufrequtils fail
as well.

If I read REDAME.Debian correctly this is not the desired behaviour.
loadcpufreq should be enabled by default and if someone wishes to
override this he should create a file /etc/default/loadcpufreq like
the provided example.

I guess in the loadcpufreq script a default ENABLED=true is missing.

Regards, Kai

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

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

Versions of packages cpufrequtils depends on:
ii  debconf [debconf-2.0] 1.5.17 Debian configuration management sy
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libcpufreq0   002-6  shared library to deal with the cp
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip

cpufrequtils recommends no packages.

-- debconf information:
  cpufrequtils/enable: true



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