issue with recent commit: fs/xfs: Fix XFS directory extent parsing

2024-01-16 Thread Giacomo Comes
Hi, I'm having some trouble booting from a XFS file system and the issue seems related to the code from commit: 07318ee7e11a00b9c1dea4c6b4edf62af35a511a fs/xfs: Fix XFS directory extent parsing I did a detailed bug report for openSUSE tumbleweed:

Re: [packman] New user 00sapo

2024-01-09 Thread Giacomo Comes
On Mon, Jan 08, 2024 at 09:29:02AM +0100, Federico Simonetta wrote: > Dear all, > I'm quite a new user in the openSUSE world, but a rather experienced user of > Linux. I tried many distros, starting with Slackware, passing via Debian, > Ubuntu, Mint, Manjaro, Arch (for a long while), Fedora, and

[packman] ipu6 camera packages

2023-12-26 Thread Giacomo Comes
, Giacomo Comes ipu6 camera support for openSUSE tumbleweed and leap IPU6 support requires kernel >= 6.3.1. With tumbleweed there is no problem. With Leap you need to upgrade your kernel: zypper ar https://download.opensuse.org/repositories/Kernel:/stable:/Backport/standard kernelbackp

Re: [packman] discord request

2023-12-20 Thread Giacomo Comes
The new modification with the wrapper script has been accepted in OBS. Enjoy Regards, Giacomo On Tue, Dec 19, 2023 at 08:01:37AM -0400, Giacomo Comes wrote: > That should work too. Let me try it and see what comes out. > > Cheers, > Giacomo > > On Tue, Dec 19, 2023 at 11:24:5

Re: [packman] discord request

2023-12-19 Thread Giacomo Comes
tart of discord and then > uses exec to run the actual discord binary? > > Regards, > Dominik > > Am 19.12.23 um 05:10 schrieb Giacomo Comes: > > Hi, > > as you may know, discord has the bad habit to disable the start > > of the program as soon as a new versio

[packman] discord request

2023-12-18 Thread Giacomo Comes
Hi, as you may know, discord has the bad habit to disable the start of the program as soon as a new version is available. This feature was quite annoying when discord was releasing updates every few months, but now then the releases happen weekly, it has become intolerable. Few months ago there

issue with debug trap

2023-12-15 Thread Giacomo Comes
: if ((0)); then : fi (without the else clause) does not cause a non zero return value. Is this the expected behavior (and if yes why)? Or is it a bug? Seen in bash 4.4 and 5.2. Giacomo Comes #!/bin/bash debugon () { trap 'if (($?)); then echo "$((LINENO-1)): $(sed -n "$((LINENO

Re: unreliable value of LINENO variable

2023-12-04 Thread Giacomo Comes
On Mon, Dec 04, 2023 at 12:21:11PM -0500, Chet Ramey wrote: > On 12/4/23 8:46 AM, Giacomo Comes wrote: > > I use often the value of LINEO in order > > to know where to look for issues in a script. > > Recently I discovered a bug. > > > > Please con

unreliable value of LINENO variable

2023-12-04 Thread Giacomo Comes
I use often the value of LINEO in order to know where to look for issues in a script. Recently I discovered a bug. Please consider the following 6 line script: #!/bin/bash if ((1)); then ( : ) ; echo 1 $LINENO fi echo 2 $LINENO

[cdesktopenv-devel] Various issues with cde 2.5.1

2023-02-13 Thread Giacomo Comes
Hi, I'm in the process of packaging CDE for opensuse. While doing that I have found some issues and I have some doubts that I would like to share with you. 1) CDE does not compile with gcc12. In many places it throws the error: error: control reaches end of non-void function

Re: [cdesktopenv-devel] [PATCH] fix MANDIR output from dtsearchpath

2023-02-06 Thread Giacomo Comes
On Sat, Feb 04, 2023 at 01:29:26PM -0700, Jon Trulson wrote: > On 1/31/23 23:21, Giacomo Comes wrote: > > The value of MANDIR from dtsearchpath is missing the CDE man directory. > > Restore it. > > > > Hi, I've applied this, and the following patches: > > - m

[cdesktopenv-devel] [PATCH] rename ksh.1 as ksh-cde.1

2023-01-31 Thread Giacomo Comes
The ksh man page included in cde is different from the one available
with the OS since the two shell have different version.
Rename cde's ksh man page to ksh-cde. Also update the reference
in dtksh.1 from 'sh' to 'ksh-cde'

diff -Nraub 

[cdesktopenv-devel] [PATCH] fix DTKORNSHELL output for dtlp

2023-01-31 Thread Giacomo Comes
The shebang of dtlp is /usr/dt/bin/dtksh. If cde is configured with --prefix=/usr and an rpm is created, such rpm fails to install with the error: nothing provides /usr/dt/bin/dtksh Make the shebang of dtlp correspond to the true location of dtksh diff -Nraub

[cdesktopenv-devel] [PATCH] /usr/dt/bin is always needed

2023-01-31 Thread Giacomo Comes
If cde is configured with ./configure --prefix=/usr the binaries are located in /usr/bin. However /usr/dt/bin is hardcoded in so many places that if it doesn't exist cde does not even start. Create /usr/dt/bin link if necessary. diff -Nraub cde-2.5.1.ori/programs/Makefile.am

[cdesktopenv-devel] [PATCH] missing dtopen_* links

2023-01-31 Thread Giacomo Comes
dtopen_* links should be created in $(DESTDIR)$(bindir), the same place where dtopen is located diff -Nraub cde-2.5.1.ori/programs/dtopen/Makefile.am cde-2.5.1/programs/dtopen/Makefile.am --- cde-2.5.1.ori/programs/dtopen/Makefile.am 2022-10-01 13:18:27.0 -0400 +++

[cdesktopenv-devel] [PATCH] fix MANDIR output from dtsearchpath

2023-01-31 Thread Giacomo Comes
The value of MANDIR from dtsearchpath is missing the CDE man directory. Restore it. diff -Nraub cde-2.5.1.ori/doc/Makefile.am cde-2.5.1/doc/Makefile.am --- cde-2.5.1.ori/doc/Makefile.am 2022-10-01 13:18:27.0 -0400 +++ cde-2.5.1/doc/Makefile.am 2023-01-26 13:32:16.402454621 -0400 @@

[cdesktopenv-devel] dtlogin: Command Line Login not working

2023-01-23 Thread Giacomo Comes
Hi, in cde 2.5.0 in dtlogin the option: Command Line Login does not work anymore. The reason is that some code necessary for Command Line Login was removed with commit: 1eccd2e0425ee52d777c4749af0d7d43bbb28f34 dtlogin: make the language menu works Attached there is a patch that restore such code

Re: [packman] obs-studio erroneously provides libvulkan.so.1

2022-11-08 Thread Giacomo Comes
On Tue, Nov 08, 2022 at 08:58:17PM +0100, Hans-Peter Jansen wrote: > Hi, > looking for advise on how to deal with an unpleasant situation: > Look at the handbrake TW build right now:have choice for > libvulkan.so.1()(64bit) needed by libavutil56_70: libvulkan1 obs-studio, have > choice for

Re: [packman] libheif not available?

2022-08-12 Thread Giacomo Comes
On Fri, Aug 12, 2022 at 06:00:54PM +0200, Luigi Baldoni wrote: > Sent: Friday, August 12, 2022 at 5:55 PM > From: "Giacomo Comes" > > To: packman@links2linux.de > > Subject: [packman] libheif not available? > > > > Hi, > > in the essential repository

[packman] libheif not available?

2022-08-12 Thread Giacomo Comes
Hi, in the essential repository there is the libheif package (recently updated). If you look in http://ftp.uni-erlangen.de/packman/suse/openSUSE_Leap_15.4/Essentials/x86_64/ you will see the file: libheif1-1.12.0-pm154.5.1.x86_64.rpm However if I do: zypper in libheif1-1.12.0-pm154.5.1 I get:

[packman] gstreamer-plugins Leap 15.4

2022-06-03 Thread Giacomo Comes
Hi, I have noticed that the three gstreamer-plugins rpms available in packman for Leap 15.4 are at version 1.18.6 while the corresponding packages in the upcoming Leap 15.4 are at version 1.20.1. Since the 15.4 release is imminent, I would suggest to update the packman packages to the same version

[packman] Is aMule abandoned?

2022-05-16 Thread Giacomo Comes
Hallo, aMule needs a fix for the upcoming Leap 15.4 release. I have submitted a request a couple of months ago (https://pmbs.links2linux.org/request/show/5545) but no one accepted/rejected it. I also requested to become the maintainer for the aMule package

[packman] aMule fix

2022-04-04 Thread Giacomo Comes
Hi, I have sumbittes a request to fix the build for aMule on Leap 15.4 (https://pmbs.links2linux.org/request/show/5545). As the last time I submitted a similar request, no one seems to to be in charge for such package therefore I have requested also maintainership

[packman] kodi fix for Leap 15.4

2022-03-27 Thread Giacomo Comes
Hi, while trying to install kodi on Leap 15.4 beta I get this error message: Problem: nothing provides 'libplist.so.3()(64bit)' needed by the to be installed kodi-19.4-pm154.1.1.x86_64 kodi.spec uses BuildRequires: pkgconfig(libplist) for 15.4 but it should use BuildRequires:

Re: [packman] Software

2022-03-16 Thread Giacomo Comes
Did you try the release available in the openSUSE Education repository? Regards. Giacomo On Tue, Mar 15, 2022 at 10:19:43PM -0300, Levi wrote: > Hi, could you please add in your repositories the GNS3 program and keep it > updated for OpenSuse Leap along with all its dependencies, such as VPCS

Re: [packman] Enable openSUSE Leap 15.4 for the Multimedia project?

2022-03-11 Thread Giacomo Comes
On Wed, Mar 09, 2022 at 10:40:45PM +0100, Manfred Hollstein wrote: > On Wed, 09 Mar 2022, 22:38:41 +0100, Manfred Hollstein wrote: > > Hi Giacomo, > > > > On Wed, 09 Mar 2022, 21:59:27 +0100, Giacomo Comes wrote: > > > On Wed, Mar 09, 2022 at 07:26:50P

Re: [packman] Enable openSUSE Leap 15.4 for the Multimedia project?

2022-03-09 Thread Giacomo Comes
On Wed, Mar 09, 2022 at 07:26:50PM +0100, Stefan Seyfried wrote: > On 09.03.22 11:30, Manfred Hollstein wrote: > Hi there, > > On Wed, 02 Mar 2022, 14:42:54 +0100, Manfred Hollstein wrote: >> Hi there, I see Leap 15.4 is already enabled in the Essentials project. Now that >> Leap 15.4 Beta is

[389-users] [SOLVED] multi-supplier replication with certificate-based authentication

2022-03-08 Thread Giacomo Comes
the host accounts, update the replica entry on host2 after the temporary agreement has done its job, consider changing the system clock when you use the command dscreate. I wish to thank David and William for their help. I have never used 389-ds before and what they said helped me

[389-users] Re: multi-supplier replication with certificate-based authentication

2022-03-06 Thread Giacomo Comes
> [04/Mar/2022:09:13:15.022313670 -0500] conn=3 op=0 BIND dn="" method=sasl > > version=3 mech=EXTERNAL > > [04/Mar/2022:09:13:15.022446873 -0500] conn=3 op=0 RESULT err=0 tag=97 > > nentries=0 wtime=0.041625548 optime=0.000136346 etime=0.041760960 > > dn=&qu

Re: [packman] Conflicts (Suse Leap 15.3)

2022-03-04 Thread Giacomo Comes
On Fri, Mar 04, 2022 at 07:53:22AM +0100, Stefan Seyfried wrote: > (english below) > Hallo, > On 03.03.22 07:20, Dirk Schröder wrote:> kannte ich bisher mit dem Update > durch Zypper nicht.> Heute erschien eine ganze Liste davon. > Ist vor dem update ffmpeg-3 *und* ffmpeg-4 installiert? > "rpm

[389-users] multi-supplier replication with certificate-based authentication

2022-03-03 Thread Giacomo Comes
nd_and_check_pwp - agmt="cn=agreement" (host2:636): Replication bind with SIMPLE auth resumed Clearly there is something wrong with the client certificate setup, but I could not figure out what. Any help is appreciated. Giacomo Comes #!/bin/bash install 389-ds if ! type

Re: [packman] youtube-dl replacement

2022-01-04 Thread Giacomo Comes
On Tue, Jan 04, 2022 at 05:02:49PM +0100, Manfred Hollstein wrote: > On Tue, 04 Jan 2022, 16:52:24 +0100, Giacomo Comes wrote: > > On Tue, Jan 04, 2022 at 04:28:48PM +0100, Manfred Hollstein wrote: > > > On Tue, 04 Jan 2022, 16:19:32 +0100, Mathias Homann wrote: > > &g

Re: [packman] youtube-dl replacement

2022-01-04 Thread Giacomo Comes
On Tue, Jan 04, 2022 at 04:28:48PM +0100, Manfred Hollstein wrote: > On Tue, 04 Jan 2022, 16:19:32 +0100, Mathias Homann wrote: > > Am 04.01.2022 um 15:03 schrieb Eric Schirra: > > > Am Dienstag, 4. Januar 2022, 13:59:10 CET schrieb Mathias Homann: > > > > Am Montag, 20. Dezember 2021, 08:36:28

Re: [packman] digests SIGNATURES NOT OK

2021-12-12 Thread Giacomo Comes
On Sun, Dec 12, 2021 at 11:55:33AM +0100, Carlos E. R. wrote: > On 12/12/2021 11.04, Stefan Seyfried wrote: > >On 12.12.21 09:20, Marc Schiffbauer wrote: > >>Hi Giacomo, > >> > >>we should really create a new gpg key for the repo. > >> > >>@Stefan: What do you think? > > > >Another Stefan here,

Re: [packman] Account activation

2021-11-21 Thread Giacomo Comes
On Sun, Nov 14, 2021 at 09:24:34AM +0100, Stefan Botter wrote: > Hi Giacomo, > > Am Samstag, den 13.11.2021, 14:57 -0400 schrieb Giacomo Comes: > > my name is Giacomo. I have created a new account (gcomes.pmbs) and I > > ask for its activation. > > My first task is to

[packman] Account activation

2021-11-13 Thread Giacomo Comes
Hi, my name is Giacomo. I have created a new account (gcomes.pmbs) and I ask for its activation. My first task is to fix the longstanding memory issue of aMule. Cheers. Giacomo ___ Packman mailing list Packman@links2linux.de

Re: [packman] Freezing aMule

2021-11-08 Thread Giacomo Comes
Hi, the fix for the memory problem with amule 2.3.3 is to require boost (>=1.75) during the build process. This can be done for tumbleweed and Leap 15.3. I don't have time at the moment, but in two/three weeks I can take care of the issue if it has not been fixed in the meantime. Giacomo On

[packman] digests SIGNATURES NOT OK

2021-10-24 Thread Giacomo Comes
Hi, On Leap 15.3 if I run: rpm -K the output is usually: digests signatures OK However if I do that with any rpm from the packman repository the output is: digests SIGNATURES NOT OK This was not happening before but it started recently after the package rpm was updated to version

Re: [packman] packman & leap 15.3 = only -debug

2021-04-28 Thread Giacomo Comes
About one week ago (22 of April) the Multimedia rpm did appear on the mirrors. They were available for less than one day and after that they were gone again. Giacomo On Wed, Apr 28, 2021 at 02:55:18PM +0200, Olaf Hering wrote: > Am Tue, 27 Apr 2021 10:07:59 +0200 > schrieb Jiri Slaby : > > > Is

Re: [packman] gpac tumbleweed issue

2021-03-28 Thread Giacomo Comes
On Sun, Mar 28, 2021 at 05:10:18PM +0200, Luigi Baldoni wrote: > Sent: Sunday, March 28, 2021 at 5:02 PMFrom: "Giacomo Comes" > >> Hi,> the package gpac is build against openjpeg> and > requires libopenjpeg1 in order to be installed.> However on tumbleweed si

[packman] gpac tumbleweed issue

2021-03-28 Thread Giacomo Comes
Hi, the package gpac is build against openjpeg and requires libopenjpeg1 in order to be installed. However on tumbleweed since February 2021 the packages openjpeg is not available anymore. It is possible to build gpac against openjpeg2 by changing: -BuildRequires: pkgconfig(libopenjpeg)

Re: [packman] Packmann OpenSuSE Leap repository still down

2021-03-27 Thread Giacomo Comes
On Sat, Mar 27, 2021 at 09:02:44PM +0100, Manfred Hollstein wrote: > On Sat, 27 Mar 2021, 20:27:41 +0100, Luigi Baldoni wrote: > > Sent: Saturday, March 27, 2021 at 7:37 PM > > From: "Manfred Hollstein" > > > > > > Hi there, > > > > >

Re: [packman] Packmann OpenSuSE Leap repository still down

2021-03-27 Thread Giacomo Comes
Hi, in order to make a service to everybody, I checked the current status of the packman mirrors listed in http://packman.links2linux.org/mirrors httpftp rsync packman.inode.atdowndowndown mirrors.hust.edu.cn up NA

Re: [chrony-users] help with bindacqaddress

2020-05-26 Thread Giacomo Comes
On Tue, May 26, 2020 at 09:42:03AM +0200, Miroslav Lichvar wrote: > On Mon, May 25, 2020 at 11:24:41AM -0400, Giacomo Comes wrote: > > with chrony the equivalent command should be: > > bindacqaddress > > and while this works with a network interface with static > > ip

[chrony-users] help with bindacqaddress

2020-05-25 Thread Giacomo Comes
Hi, I'm in the process to migrate my systems to from ntpd to chrony I have a case where such migration does not seem straightforward. Here it is: On a machine a have a normal network interface (eth0) plus a VPN interface (tun0) I want the time client to contact the servers only using the network

Re: [Intel-gfx] kernel 5.6: baytrail hdmi audio not working

2020-04-02 Thread Giacomo Comes
On Thu, Apr 02, 2020 at 04:52:03PM +0300, Ville Syrjälä wrote: > On Wed, Apr 01, 2020 at 06:53:17PM -0400, Giacomo Comes wrote: > > Hi, > > on my Intel Compute Stick STCK1 (baytrail hdmi audio) > > sound is not working with the kernel 5.6 > > > > I have bisected

[Intel-gfx] kernel 5.6: baytrail hdmi audio not working

2020-04-01 Thread Giacomo Comes
Hi, on my Intel Compute Stick STCK1 (baytrail hdmi audio) sound is not working with the kernel 5.6 I have bisected the kernel and I found the commit that introduced the issue: commit 58d124ea2739e1440ddd743d46c470fe724aca9a Author: Maarten Lankhorst Date: Thu Oct 31 12:26:04 2019 +0100

[packman] kodi.binary-addons 18.2 32-bit

2019-06-08 Thread Giacomo Comes
I have noticed that since the release of kodi 18, the binary-addons for 32-bit are missing. In order to build them add this change to the spec file: @@ -211,6 +211,9 @@ -DVERBOSE=ON \ %endif -DCMAKE_C_COMPILER=gcc-8 \ +%ifarch %{ix86} +-DCMAKE_C_FLAGS=-mavx \ +%endif

[ccache] Fortran support issue

2016-10-11 Thread Giacomo Comes
Hi, I have been using in the past the program f90cache to cache fortran compiling jobs. Now that ccache 3.3 has support for Fortran 77 I have done some tests to see if I can replace f90cache with ccache. So far all the fortran programs I'm used to compile works with ccache except one. The source

Re: [Intel-gfx] cerryview sd card problem

2016-09-29 Thread Giacomo Comes
On Thu, Sep 29, 2016 at 09:46:40AM +0300, Adrian Hunter wrote: > On 29/09/16 09:30, Westerberg, Mika wrote: > > On Wed, Sep 28, 2016 at 05:50:00PM -0400, Giacomo Comes wrote: > >> On Mon, Sep 26, 2016 at 12:52:11PM +0300, Westerberg, Mika wrote: > >>> On Mon, Sep 26,

Re: [Intel-gfx] cerryview sd card problem

2016-09-28 Thread Giacomo Comes
On Mon, Sep 26, 2016 at 12:52:11PM +0300, Westerberg, Mika wrote: > On Mon, Sep 26, 2016 at 11:57:04AM +0300, Jani Nikula wrote: > > On Wed, 21 Sep 2016, Giacomo Comes <co...@naic.edu> wrote: > > > Hi, > > > I hope this is the appropriate place to ask what foll

[Intel-gfx] cerryview sd card problem

2016-09-24 Thread Giacomo Comes
Hi, I hope this is the appropriate place to ask what follows. If not please point me to the right place. I have a couple of cerryview systems (Acer Aspire R11 and Intel compute stick STK1AW32SC) on which I run linux (openSUSE 42.1) with a 4.7 kernel. I have a problem though with the sd card

[cdesktopenv-devel] [PATCH] call fclose(infile) after print_progress()

2016-06-07 Thread Giacomo Comes
>From dd0568de429e134871893855f650af4bfeda1f00 Mon Sep 17 00:00:00 2001 From: Giacomo Comes <co...@naic.edu> Date: Tue, 7 Jun 2016 10:31:28 -0400 Subject: [PATCH] call fclose(infile) after print_progress() The function print_progress uses the pointer infile. If fclose is call

[Intel-gfx] [PATCH] Skip intel_crt_init for Dell XPS 8700

2014-04-03 Thread Giacomo Comes
The Dell XPS 8700 has a onboard Display port and HDMI port and no VGA port. The call intel_crt_init freeze the machine, so skip such call. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=73559 Signed-off-by: Giacomo Comes comes at naic.edu diff -Nraub a/drivers/gpu/drm/i915/intel_crt.c b

Re: [Intel-gfx] Dell XPS 8700 kms not working

2014-01-16 Thread Giacomo Comes
On Mon, Jan 13, 2014 at 11:39:01AM -0400, Giacomo Comes wrote: On Mon, Jan 13, 2014 at 11:53:18AM -0200, Paulo Zanoni wrote: 2014/1/12 Daniel Vetter dan...@ffwll.ch: On Sun, Jan 12, 2014 at 9:23 PM, Giacomo Comes co...@naic.edu wrote: This is the dmesg output using drm-intel-next-2014-01

Re: [Intel-gfx] Dell XPS 8700 kms not working

2014-01-13 Thread Giacomo Comes
On Mon, Jan 13, 2014 at 11:53:18AM -0200, Paulo Zanoni wrote: 2014/1/12 Daniel Vetter dan...@ffwll.ch: On Sun, Jan 12, 2014 at 9:23 PM, Giacomo Comes co...@naic.edu wrote: This is the dmesg output using drm-intel-next-2014-01-10 I booted without loading the i915 module, started netconsole

Re: [Intel-gfx] Dell XPS 8700 kms not working

2014-01-12 Thread Giacomo Comes
On Wed, Jan 08, 2014 at 09:06:23PM -0400, Giacomo Comes wrote: On Wed, Jan 08, 2014 at 12:06:18PM +0200, Jani Nikula wrote: On Wed, 08 Jan 2014, Giacomo Comes co...@naic.edu wrote: Hi, kms does not work om my Dell XPS 8700 I have installed openSUSE 13.1 (kernel 3.11.6) and the only way

Re: [Intel-gfx] Dell XPS 8700 kms not working

2014-01-08 Thread Giacomo Comes
On Wed, Jan 08, 2014 at 12:06:18PM +0200, Jani Nikula wrote: On Wed, 08 Jan 2014, Giacomo Comes co...@naic.edu wrote: Hi, kms does not work om my Dell XPS 8700 I have installed openSUSE 13.1 (kernel 3.11.6) and the only way to use the system is to pass the kernel option nomodeset. If I

[Intel-gfx] Dell XPS 8700 kms not working

2014-01-07 Thread Giacomo Comes
Hi, kms does not work om my Dell XPS 8700 I have installed openSUSE 13.1 (kernel 3.11.6) and the only way to use the system is to pass the kernel option nomodeset. If I boot the machine without nomodeset after the kernel and initrd are loaded the monitor goes in powersave mode and after 10-15

[ccache] Bug compiling package freetype

2013-03-18 Thread Giacomo Comes
Hi, I have found a bug in ccache as it fails to compile the package freetype. I have tested the bug on CentOS 5 and 6 and openSUSE 12.2 with ccache 3.1.9. This is how to reproduce the bug: download freetype 2.4.11, untar and run ./configure. run make compilation is succesful. Redo everything but

Re: [ccache] Bug compiling package freetype

2013-03-18 Thread Giacomo Comes
will encounter the same problem. Giacomo On 18 March 2013 10:30, Giacomo Comes co...@naic.edu wrote: Hi, I have found a bug in ccache as it fails to compile the package freetype. I have tested the bug on CentOS 5 and 6 and openSUSE 12.2 with ccache 3.1.9. This is how to reproduce the bug

[Intel-gfx] xf86-video-intel-2.20.0: Option 'XvMC' does not work

2012-09-22 Thread Giacomo Comes
Hi, I have a laptop with the Pineview GM chipset. With the intel driver 2.20.0 I cannot enable anymore XvMC. Normally I add in the device Section: Option XvMC on and up to driver ver 2.19.0 in the X log file I find: (**) intel(0): Option XvMC on (**) intel(0): Intel XvMC decoder enabled

Re: [Intel-gfx] Trouble with dell latitude E6420

2012-07-02 Thread Giacomo Comes
On Mon, Jul 02, 2012 at 10:18:43AM +0200, Takashi Iwai wrote: At Thu, 28 Jun 2012 14:23:04 -0400, Giacomo Comes wrote: On Thu, Jun 28, 2012 at 07:52:18AM +0200, Takashi Iwai wrote: At Tue, 26 Jun 2012 15:08:32 -0400, Giacomo Comes wrote: I have a dell latitude E6420

[Libva] vainfo error

2012-04-22 Thread Giacomo Comes
but i965_drv_video.so instead. What am I doing wrong? Giacomo Comes ___ Libva mailing list Libva@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libva

udisks and encrypted partition

2011-05-03 Thread Giacomo Comes
Hi, I have a problem with udisks and I'm not sure if this is the appopriate place to ask for help. If it isn't, please tell me where I should ask. I'm using openSUSE 11.4. If I mount an external usb disk with the command: udisks --mount /dev/sdb1 it works. But if the partition is a luks