[Bug 930418] [NEW] Firmware needed by the kernel avp is not found

2012-02-10 Thread Nicolás Wolovick
Public bug reported:

When using OMX player (nvgstplayer), the kernel tries to load nvrm_avp.bin from 
/lib/firmware.
However this file is not found, since it is in /usr/lib/firmware.

Perhaps all files packaged in /usr/lib/firmware (nvrm_avp_1000.bin
nvrm_avp_0ff0.bin nvrm_avp_8e00.bin nvrm_avp_9e00.bin
nvrm_avp_be00.bin nvrm_avp.bin nvrm_avp_e000.bin
nvrm_avp_eff0.bin) should be moved to /lib/firmware.

** Affects: nvidia-graphics-drivers-tegra (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/930418

Title:
  Firmware needed by the kernel avp is not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-tegra/+bug/930418/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 888168] Re: Error linking GLES vertex shader breaks Cheese on ARM

2011-11-10 Thread Nicolás Wolovick
Just updated to oneiric-proposed, it upgraded libclutter-gst 1.4.2-1.1 and it 
segfaults the same.
gdb bt reports it happend executing libcogl.so.5.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/888168

Title:
  Error linking GLES vertex shader breaks Cheese on ARM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clutter-gst/+bug/888168/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 554983] Re: powertop: powertop.c:113: push_line_pid: Assertion `strlen(string) > 0' failed.

2010-06-23 Thread Nicolás Wolovick
Here is a coredump and some analysis with gdb


Core was generated by `./powertop'.
Program terminated with signal 6, Aborted.
#0  0x7f7f1f7f7a75 in *__GI_raise (sig=) at 
../nptl/sysdeps/unix/sysv/linux/raise.c:64
64  ../nptl/sysdeps/unix/sysv/linux/raise.c: No such file or directory.
in ../nptl/sysdeps/unix/sysv/linux/raise.c
(gdb) bt
#0  0x7f7f1f7f7a75 in *__GI_raise (sig=) at 
../nptl/sysdeps/unix/sysv/linux/raise.c:64
#1  0x7f7f1f7fb5c0 in *__GI_abort () at abort.c:92
#2  0x7f7f1f7f0941 in *__GI___assert_fail (assertion=0x40c111 
"strlen(string) > 0", file=, line=113, 
function=0x40d5a8 "push_line_pid") at assert.c:81
#3  0x00402b89 in push_line_pid (string=0x7fffdea8df80 "", 
cpu_count=, disk_count=, 
pid=0x7fffdea8ff80 "3552") at powertop.c:113
#4  0x0040a953 in parse_event (ptr=, verbose=0) at 
perf.c:230
#5  0x0040aaf6 in parse_data_dirty_buffer () at perf.c:270
#6  0x00405035 in main (argc=, argv=) at powertop.c:1089
(gdb) up
#1  0x7f7f1f7fb5c0 in *__GI_abort () at abort.c:92
92  abort.c: No such file or directory.
in abort.c
(gdb) up
#2  0x7f7f1f7f0941 in *__GI___assert_fail (assertion=0x40c111 
"strlen(string) > 0", file=, line=113, 
function=0x40d5a8 "push_line_pid") at assert.c:81
81  assert.c: No such file or directory.
in assert.c
(gdb) up
#3  0x00402b89 in push_line_pid (string=0x7fffdea8df80 "", 
cpu_count=, disk_count=, 
pid=0x7fffdea8ff80 "3552") at powertop.c:113
113 assert(strlen(string) > 0);
(gdb) up
#4  0x0040a953 in parse_event (ptr=, verbose=0) at 
perf.c:230
230 push_line_pid(line, 0, 1, pid);
(gdb) print line
$1 = "\000hromium-browse\000omium-browse' is writing to file 'History-journal' 
on /dev/sda7.\nThis prevents the disk from going to powersave 
mode.\000\000\000\227\004\201\037\177\177\000\000\260\342\250\336\377\177\000\000\243\005\201\037\177\177\000\000\002\000\000\000\000\000\000\000\070\000\000\000\061\000\000\000.\000\000\000\070\000\000\000\201\v\201\037\177\177\000\000
 113909 10502746\000\000\000\000\000\000\000\240"...
(gdb)

-- 
powertop: powertop.c:113: push_line_pid: Assertion `strlen(string) > 0' failed. 
https://bugs.launchpad.net/bugs/554983
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 554983] Re: powertop: powertop.c:113: push_line_pid: Assertion `strlen(string) > 0' failed.

2010-06-19 Thread Nicolás Wolovick
I have the following pattern.

-O0, -O3: no failing assert
-O1, -O2: failing assert

But no apparent reason since -O3 is a superset of -O2

gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
diff /tmp/O2-opts /tmp/O3-opts | grep enabled

>   -fgcse-after-reload [enabled]
>   -finline-functions  [enabled]
>   -fipa-cp-clone  [enabled]
>   -fpredictive-commoning  [enabled]
>   -ftree-vectorize[enabled]
>   -funswitch-loops[enabled]

-- 
powertop: powertop.c:113: push_line_pid: Assertion `strlen(string) > 0' failed. 
https://bugs.launchpad.net/bugs/554983
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 554983] Re: powertop: powertop.c:113: push_line_pid: Assertion `strlen(string) > 0' failed.

2010-06-16 Thread Nicolás Wolovick
I could not reproduce the situation that triggers the assert.
I have cloned the git repo

git clone  git://git.moblin.org/powertop

And it is the same, always in the root account.
I have generated a coredump, but optimizations prevent to read some values.
Extrangely enough, putting in the Makefile no optimizations, seems to avoid 
such random failing assertion.

CFLAGS?=-O0 -g ${WARNFLAGS}

Does anyone can confirm this behaviour?

-- 
powertop: powertop.c:113: push_line_pid: Assertion `strlen(string) > 0' failed. 
https://bugs.launchpad.net/bugs/554983
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 190227] Re: ia32 apps look for libs on the wrong place

2009-07-08 Thread Nicolás Wolovick
On Wed, Jul 8, 2009 at 10:29 AM, Martin Karpinski
wrote:

> Thanks Nico! Your workaround worked.
>
> Never underestimate the power of getlibs ;)
>
> Now, am I to undestand that, at least in my case, the error message
>
> Gtk-Message: Failed to load module "gail":
> /usr/lib/gtk-2.0/modules/libgail.so: wrong ELF class: ELFCLASS64
>
> was caused by libgail being a 32bit library and not compatible with
> amd64 architecture?
>

Yeap.
As far as I know, amd64 architecture switches on-the-fly to i386, but once
you are there all the execution should remain 32 bits.
That is why some 32 bit applications can run perfectly on amd64, just stuff
everything on the ELF executable, including all dynamic libraries and you
are done.
If you want to stay modular and use the dynamic linking process, you should
feed all the 32 bits libs the app will ever need.
It seems libgail.so is not part (yet?) of the ia32-libs, though.


Best, Nico


>
> --
> ia32 apps look for libs on the wrong place
> https://bugs.launchpad.net/bugs/190227
> You received this bug notification because you are a direct subscriber
> of the bug.
>

-- 
ia32 apps look for libs on the wrong place
https://bugs.launchpad.net/bugs/190227
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 190227] Re: ia32 apps look for libs on the wrong place

2009-06-26 Thread Nicolás Wolovick
Workaround for Jaunty amd64

Get and install http://taurinocerveza.com/scripts/getlibs-all.deb
Then: sudo getlibs -l libgail.so

It also solved my chromium-browser problem.


Best, Nico

-- 
ia32 apps look for libs on the wrong place
https://bugs.launchpad.net/bugs/190227
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 138472] Re: Ion3 lasts less than 10 seconds in Gusty Gibbon

2007-09-13 Thread Nicolás Wolovick
A similar bug was reported and solved in Debian.
Perhaps ion3 should be upgraded.

Debian Bug report logs - #430815
ion3: Segfaults at startup
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430815

-- 
Ion3 lasts less than 10 seconds in Gusty Gibbon
https://bugs.launchpad.net/bugs/138472
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 138472] Re: Ion3 lasts less than 10 seconds in Gusty Gibbon

2007-09-12 Thread Nicolás Wolovick
(more information)

Platform Ubuntu 7.10/amd64

It seems a segmentation fault in Ion3.
I attach gdb backtrace and valgrind reports.

Kind regards, Nicolás

** Attachment added: "Coredump backtrace analysis with gdb."
   http://launchpadlibrarian.net/9263861/ion3.coredump.bt

-- 
Ion3 lasts less than 10 seconds in Gusty Gibbon
https://bugs.launchpad.net/bugs/138472
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 138472] Re: Ion3 lasts less than 10 seconds in Gusty Gibbon

2007-09-12 Thread Nicolás Wolovick
Here is the Valgrind report.

** Attachment added: "Ion3 segfault executing inside valgrind"
   http://launchpadlibrarian.net/9264500/ion3.valgrind

-- 
Ion3 lasts less than 10 seconds in Gusty Gibbon
https://bugs.launchpad.net/bugs/138472
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 71772] Re: /proc/cpuinfo reports wrong frequeny for AMD Athlon XP 3000+

2007-09-09 Thread Nicolás Wolovick
My problems where completely solved using linux-image-2.6.22-9-generic
from Gusty Gibbon.

I have an Athlon 1600+, and now frecuency scaling works smoothly.

-- 
/proc/cpuinfo reports wrong frequeny for AMD Athlon XP 3000+
https://bugs.launchpad.net/bugs/71772
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 138472] Ion3 lasts less than 10 seconds in Gusty Gibbon

2007-09-09 Thread Nicolás Wolovick
Public bug reported:

Binary package hint: ion3

Using Gusty Gibbon 7.10 fully updated, when choosing Ion3 as session in gdm, 
the session last less that 10 seconds.
Here the relevant logs.

/var/log/messages:
Sep  9 17:41:29 negra kernel: [   46.527810] ion3[6017]: segfault at 
0118 rip 0042ebc7 rsp 7fffd7c860f8 error 4

~/.xsession-error:
(process:6098): Gtk-WARNING **: This process is currently running setuid or 
setgid.
This is not a supported use of GTK+. You must create a helper
program instead. For further details, see:

http://www.gtk.org/setuid.html

Refusing to initialize GTK+.

(process:6102): Gtk-WARNING **: This process is currently running setuid or 
setgid.
This is not a supported use of GTK+. You must create a helper
program instead. For further details, see:

http://www.gtk.org/setuid.html

Refusing to initialize GTK+.
/etc/gdm/Xsession: Beginning session setup...
/etc/X11/Xsession.d/40guidance-displayconfig_restore: 11: 
/usr/bin/displayconfig-restore: not found

** Affects: ion3 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Ion3 lasts less than 10 seconds in Gusty Gibbon
https://bugs.launchpad.net/bugs/138472
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 94484] Database /etc/hddtemp.db out of date

2007-04-08 Thread Nicolás Wolovick
Public bug reported:

Binary package hint: hddtemp

The hard disk database is out-of-date w.r.t.
http://www.guzu.net/linux/hddtemp.db

** Affects: hddtemp (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Database /etc/hddtemp.db out of date
https://launchpad.net/bugs/94484

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 71772] Re: /proc/cpuinfo reports wrong frequeny for AMD Athlon XP 3000+

2007-03-21 Thread Nicolás Wolovick

Looking for a cpufreq problem, namely in /sys/devices/system/cpu/cpu0/cpufreq I 
have:

 - scaling_max_freq < cpuinfo_max_freq
 - scaling_max_freq is not in the list of available frequencies

$> cat scaling_available_frequencies 
1391439 1192662 1060144 927626 662590
$> cat scaling_governor cpuinfo_max_freq scaling_max_freq cpuinfo_cur_freq 
performance
1391439
105
927626

The bug 
https://launchpad.net/ubuntu/+source/linux-source-2.6.15/+bug/36014 points 
here, and I found that after a 

$> cat /proc/cpuinfo
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 6
model   : 8
model name  : mobile AMD Athlon(tm) XP 1600+
stepping: 0
cpu MHz : 662.590
cache size  : 256 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 1
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat 
pse36 mmx fxsr sse syscall mp mmxext 3dnowext 3dnow up ts fid vid
bogomips: 1325.90
clflush size: 32

I got the information on the current speed not in the maximum speed.

In previous Linux Distros, namely FC5 running 2.6.19, there was no
problem at all with cpufreq or whatsoever, and I could get the most of
my Athlon XP 1600+, ie 1391439 Hz.

-- 
/proc/cpuinfo reports wrong frequeny for AMD Athlon XP 3000+
https://launchpad.net/bugs/71772

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 82806] Re: With compiz running in feisty, text doesn't display in Run Application dialog

2007-03-21 Thread Nicolás Wolovick
The same disappearing text for terminal and other "text" fields all over Gnome 
when compiz (Desktop Effects) are enabled
The card is Device "ATI Technologies Inc Radeon Mobility U1", on a HP Pavilion 
ze4125.

-- 
With compiz running in feisty, text doesn't display in Run Application dialog
https://launchpad.net/bugs/82806

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs