xserver-xorg-video-ati: Changes to 'upstream-unstable'
src/atombios_crtc.c |4 - src/legacy_crtc.c| 48 - src/legacy_output.c | 11 ++-- src/r600_state.h |6 +- src/radeon.h |3 - src/radeon_accel.c |9 +++- src/radeon_atombios.c| 46 src/radeon_commonfuncs.c | 40 +- src/radeon_crtc.c| 13 +++-- src/radeon_cursor.c | 70 --- src/radeon_dri.c |9 ++-- src/radeon_driver.c | 68 +- src/radeon_exa_render.c | 16 --- src/radeon_output.c | 86 +-- src/radeon_probe.h |1 src/radeon_reg.h | 38 + src/radeon_textured_videofuncs.c | 22 - src/radeon_version.h |1 18 files changed, 264 insertions(+), 227 deletions(-) New commits: commit 248b435ae63d7122971a8021f8aa8e0963d8a850 Author: Alex Deucher Date: Fri May 8 12:55:26 2009 -0400 R3xx/R4xx tex vid: increase the guardband limit for rendering with a tri limit goes from 2880 to 4021 now that we've switched to 1/12 subpixel mode. This allows us to render with a clipped tri at higher resolutions preventing diagonal tearing. diff --git a/src/radeon_textured_videofuncs.c b/src/radeon_textured_videofuncs.c index a88d0ab..9f7cd4c 100644 --- a/src/radeon_textured_videofuncs.c +++ b/src/radeon_textured_videofuncs.c @@ -2014,7 +2014,7 @@ FUNC_NAME(RADEONDisplayTexturedVideo)(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv * We render a single, large triangle and use the scissor * functionality to restrict it to the desired rectangle. * Due to guardband limits on r3xx/r4xx, we can only use - * the single triangle up to 2880 pixels; above that we + * the single triangle up to 4021 pixels; above that we * render as a quad. */ @@ -2041,7 +2041,7 @@ FUNC_NAME(RADEONDisplayTexturedVideo)(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv #endif if (IS_R300_3D || IS_R500_3D) { - if (IS_R300_3D && ((dstw+dsth) > 2880)) + if (IS_R300_3D && ((dstw+dsth) > 4021)) use_quad = TRUE; /* * Set up the scissor area to that of the output size. commit cd03bc17ccb30f1598af61c455b623c14ea42e6b Author: Alex Deucher Date: Fri May 8 12:54:00 2009 -0400 r3xx-r5xx: switch to 1/12 subpixel precision - based on similar patch in Jerome's cs ddx tree - also fix clipping offsets - should eventually allow for 4k render targets - mesa driver uses 1/12 mode, this avoids changing the subpixel mode when switching between ddx and mesa diff --git a/src/radeon_accel.c b/src/radeon_accel.c index 70347fe..f90b386 100644 --- a/src/radeon_accel.c +++ b/src/radeon_accel.c @@ -493,7 +493,7 @@ void RADEONEngineInit(ScrnInfoPtr pScrn) "num quad-pipes is %d\n", info->accel_state->num_gb_pipes); if (IS_R300_3D || IS_R500_3D) { - uint32_t gb_tile_config = (R300_ENABLE_TILING | R300_TILE_SIZE_16 | R300_SUBPIXEL_1_16); + uint32_t gb_tile_config = (R300_ENABLE_TILING | R300_TILE_SIZE_16); switch(info->accel_state->num_gb_pipes) { case 2: gb_tile_config |= R300_PIPE_COUNT_R300; break; diff --git a/src/radeon_commonfuncs.c b/src/radeon_commonfuncs.c index a9bc7d2..13b6533 100644 --- a/src/radeon_commonfuncs.c +++ b/src/radeon_commonfuncs.c @@ -69,7 +69,7 @@ static void FUNC_NAME(RADEONInit3DEngine)(ScrnInfoPtr pScrn) OUT_ACCEL_REG(RADEON_WAIT_UNTIL, RADEON_WAIT_2D_IDLECLEAN | RADEON_WAIT_3D_IDLECLEAN); FINISH_ACCEL(); - gb_tile_config = (R300_ENABLE_TILING | R300_TILE_SIZE_16 | R300_SUBPIXEL_1_16); + gb_tile_config = (R300_ENABLE_TILING | R300_TILE_SIZE_16); switch(info->accel_state->num_gb_pipes) { case 2: gb_tile_config |= R300_PIPE_COUNT_R300; break; @@ -105,21 +105,21 @@ static void FUNC_NAME(RADEONInit3DEngine)(ScrnInfoPtr pScrn) OUT_ACCEL_REG(R300_GB_AA_CONFIG, 0); OUT_ACCEL_REG(R300_RB3D_DSTCACHE_CTLSTAT, R300_DC_FLUSH_3D | R300_DC_FREE_3D); OUT_ACCEL_REG(R300_RB3D_ZCACHE_CTLSTAT, R300_ZC_FLUSH | R300_ZC_FREE); - OUT_ACCEL_REG(R300_GB_MSPOS0, ((8 << R300_MS_X0_SHIFT) | - (8 << R300_MS_Y0_SHIFT) | - (8 << R300_MS_X1_SHIFT) | - (8 << R300_MS_Y1_SHIFT) | - (8 << R300_MS_X2_SHIFT) | - (8 << R300_MS_Y2_SHIFT) | - (8 << R300_MSBD0_Y_SHIFT) | - (7 << R300_MSBD0_X_SHIFT))); - OUT_ACCEL_REG(R300_GB_MSPOS1, ((8 << R300_MS_X3_SHIFT) | -
xserver-xorg-video-ati: Changes to 'debian-unstable'
ChangeLog| 248 +++ debian/changelog |5 src/atombios_crtc.c |4 src/legacy_crtc.c| 48 ++- src/legacy_output.c | 11 - src/r600_state.h |6 src/radeon.h |3 src/radeon_accel.c |9 + src/radeon_atombios.c| 46 --- src/radeon_commonfuncs.c | 40 +++--- src/radeon_crtc.c| 13 +- src/radeon_cursor.c | 70 +++ src/radeon_dri.c |9 - src/radeon_driver.c | 68 +- src/radeon_exa_render.c | 16 +- src/radeon_output.c | 86 ++--- src/radeon_probe.h |1 src/radeon_reg.h | 38 +++-- src/radeon_textured_videofuncs.c | 22 +-- src/radeon_version.h |1 20 files changed, 515 insertions(+), 229 deletions(-) New commits: commit 9ac2b8b802923eac33301424e8f00571c765cb82 Author: Brice Goglin Date: Wed May 13 09:08:38 2009 +0200 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index bb06548..30569f7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-video-ati (1:6.12.2-2) UNRELEASED; urgency=low +xserver-xorg-video-ati (1:6.12.2-2) unstable; urgency=low [ Brice Goglin ] * Pull upstream commits from 6.12-branch up to 248b435a. @@ -11,7 +11,7 @@ xserver-xorg-video-ati (1:6.12.2-2) UNRELEASED; urgency=low * Remove 01_gen_pci_ids.diff patch as the server just uses a built-in table to choose drivers now - -- Brice Goglin Wed, 13 May 2009 09:04:39 +0200 + -- Brice Goglin Wed, 13 May 2009 09:08:21 +0200 xserver-xorg-video-ati (1:6.12.2-1) unstable; urgency=low commit 43a8b64a6fa3638b131b07fa9406196077cbee94 Author: Brice Goglin Date: Wed May 13 09:08:04 2009 +0200 Pull from upstream stable branch diff --git a/ChangeLog b/ChangeLog index 483babc..8d3fa79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,251 @@ +commit 248b435ae63d7122971a8021f8aa8e0963d8a850 +Author: Alex Deucher +Date: Fri May 8 12:55:26 2009 -0400 + +R3xx/R4xx tex vid: increase the guardband limit for rendering with a tri + +limit goes from 2880 to 4021 now that we've switched to 1/12 subpixel mode. + +This allows us to render with a clipped tri at higher resolutions preventing +diagonal tearing. + +commit cd03bc17ccb30f1598af61c455b623c14ea42e6b +Author: Alex Deucher +Date: Fri May 8 12:54:00 2009 -0400 + +r3xx-r5xx: switch to 1/12 subpixel precision + +- based on similar patch in Jerome's cs ddx tree +- also fix clipping offsets +- should eventually allow for 4k render targets +- mesa driver uses 1/12 mode, this avoids changing the + subpixel mode when switching between ddx and mesa + +commit 26472556fcbbf13e2e4ac2355d587651d6c8f662 +Author: Alex Deucher +Date: Fri May 8 12:37:47 2009 -0400 + +R3xx-R5xx: don't set TX_OFFSET_RS in RS_INST_COUNT + +Isn't necessary and seems to cause problems for RS690 users + +commit 96667eebd8c7949873d63454746129d270bb36e5 +Author: Alex Deucher +Date: Sun May 3 13:09:39 2009 -0400 + +RS690: gpio/connector fixes + +Fixes bug 21521 + +commit faa782c7a56de99900c9b3f54714f010ce73dcf3 +Author: Alex Deucher +Date: Thu Apr 16 11:58:19 2009 -0400 + +RS690/RS740: fix connector enumeration in some cases + +Should fix Masta-G's issue reported on IRC. + +commit f2c0fa5e3d96f1bcc916e1a36268bdc7acd4cda7 +Author: Alex Deucher +Date: Wed May 6 12:24:35 2009 -0400 + +AVIVO: set default cursor mode in cursor init + +Should fix bug 21557 + +commit b6cd47ec007af2022af180f537a7ba01244b2c88 +Author: Alex Deucher +Date: Fri May 8 12:21:33 2009 -0400 + +AVIVO: fix cursor corruption bands for real + +Don't have to leave both cursors enabled, just have to use +the same mode for both cursors whether or not they are enabled. + +commit cb8081a8e70b3354037f8ca99380288fe2eb9828 +Author: Alex Deucher +Date: Mon May 4 12:57:36 2009 -0400 + +AVIVO: move cusor offscreen when disabling + +Adapted from Yang's patch. Setting size to zero is +actually a 1x1 cursor. + +commit 0e49efbe8c271c26cec4dfca063c73755dc2d25f +Author: Alex Deucher +Date: Sun May 3 18:52:00 2009 -0400 + +r2xx-r4xx: fix typo in last i2c fix and clarify hw i2c pin sel + +commit 421085949e195596000e37ea6693489db7c075b5 +Author: Alex Deucher +Date: Wed Apr 29 12:38:15 2009 -0400 + +radeon: fix several dpms issues + +- atom dpms was unblanking for standby/suspend +- return if r600+ in radeon_crtc_modeset_ioctl() +- remove seprate standby/suspend handling in legacy + crtc dpms. we turn the outputs off, so turn the + crtcs off too. +- disable the crtcs in legacy crtc dpms +- move radeon_crtc_modeset
xserver-xorg-video-ati: Changes to 'refs/tags/xserver-xorg-video-ati-1_6.12.2-2'
Tag 'xserver-xorg-video-ati-1_6.12.2-2' created by Brice Goglin at 2009-05-13 07:18 + Tagging upload of xserver-xorg-video-ati 1:6.12.2-2 to unstable. Changes since xserver-xorg-video-ati-1_6.12.2-1: Alex Deucher (26): R6xx/R7xx: set proper 3D client driver name for r600 radeon: chip family typo R6xx/R7xx: cleanup macro radeon: remove old crtc size heuristics radeon: fix tmds_pll randr property Revert "DCE3/3.2: cleanup dpms after previous changes" Remove old messages Endian fixes for object table RS690: add quirk for acer board AVIVO: fix for cursor corruption issue r2xx/r3xx/r4xx: further i2c fixups AVIVO: make sure cursor width isn't negative RV410: SE variants only have 1 quad pipe AVIVO: fix cursor corruption/flickering issues R6xx/r7xx: fix CURSOR_SWAPPING_* macros AVIVO: better fix for cursor flickering/corruption issues radeon: fix several dpms issues r2xx-r4xx: fix typo in last i2c fix and clarify hw i2c pin sel AVIVO: move cusor offscreen when disabling AVIVO: fix cursor corruption bands for real AVIVO: set default cursor mode in cursor init RS690/RS740: fix connector enumeration in some cases RS690: gpio/connector fixes R3xx-R5xx: don't set TX_OFFSET_RS in RS_INST_COUNT r3xx-r5xx: switch to 1/12 subpixel precision R3xx/R4xx tex vid: increase the guardband limit for rendering with a tri Brice Goglin (5): radeon Suggests: firmware-linux Move -dbg package to section debug Merge branch '6.12-branch' of git://anongit.freedesktop.org/git/xorg/driver/xf86-video-ati into debian-unstable Pull from upstream stable branch Prepare changelog for upload Dave Airlie (2): radeon: fix DDC on rv410 VGA ports for non-atom use. radeon: tweak ddc fix for all r300s. David Nusinow (4): Add a note in NEWS.Debian about firmware-linux Remove 01_gen_pci_ids.diff patch Don't try to install now-absent PCI ID text file Update NEWS entry to mention 2d and Xvideo Michel Dänzer (1): Clear the framebuffer before initializing modes. --- ChangeLog| 248 +++ debian/NEWS | 11 + debian/changelog | 15 + debian/control |3 debian/patches/01_gen_pci_ids.diff | 21 -- debian/patches/series|1 debian/xserver-xorg-video-radeon.install |1 src/atombios_crtc.c |4 src/legacy_crtc.c| 48 ++ src/legacy_output.c | 11 - src/r600_state.h |6 src/radeon.h |3 src/radeon_accel.c |9 + src/radeon_atombios.c| 46 +++-- src/radeon_commonfuncs.c | 40 ++--- src/radeon_crtc.c| 13 + src/radeon_cursor.c | 70 +--- src/radeon_dri.c |9 - src/radeon_driver.c | 68 +--- src/radeon_exa_render.c | 16 +- src/radeon_output.c | 86 -- src/radeon_probe.h |1 src/radeon_reg.h | 38 ++-- src/radeon_textured_videofuncs.c | 22 +- src/radeon_version.h |1 25 files changed, 541 insertions(+), 250 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processing of xserver-xorg-video-ati_6.12.2-2_i386.changes
xserver-xorg-video-ati_6.12.2-2_i386.changes uploaded successfully to localhost along with the files: xserver-xorg-video-ati_6.12.2-2.dsc xserver-xorg-video-ati_6.12.2-2.diff.gz xserver-xorg-video-ati_6.12.2-2_i386.deb xserver-xorg-video-ati-dbg_6.12.2-2_i386.deb xserver-xorg-video-radeon_6.12.2-2_i386.deb xserver-xorg-video-radeon-dbg_6.12.2-2_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-video-ati_6.12.2-2_i386.changes REJECTED
Rejected: md5sum for /srv/ftp.debian.org/ftp/pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.12.2.orig.tar.gz doesn't match xserver-xorg-video-ati_6.12.2-2.dsc. Rejected: size for /srv/ftp.debian.org/ftp/pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.12.2.orig.tar.gz doesn't match xserver-xorg-video-ati_6.12.2-2.dsc. Rejected: 'dpkg-source -x' failed for xserver-xorg-video-ati_6.12.2-2.dsc [return code: 2304]. [dpkg-source output:] dpkg-source: error: File ./xserver-xorg-video-ati_6.12.2.orig.tar.gz has size 1134864 instead of expected 1142410 === Please feel free to respond to this email if you don't understand why your files were rejected, or if you upload new files which address our concerns. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processing of xserver-xorg-video-ati_6.12.2-2_i386.changes
xserver-xorg-video-ati_6.12.2-2_i386.changes uploaded successfully to localhost along with the files: xserver-xorg-video-ati_6.12.2-2.dsc xserver-xorg-video-ati_6.12.2-2.diff.gz xserver-xorg-video-ati_6.12.2-2_i386.deb xserver-xorg-video-ati-dbg_6.12.2-2_i386.deb xserver-xorg-video-radeon_6.12.2-2_i386.deb xserver-xorg-video-radeon-dbg_6.12.2-2_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1
On Wed, 2009-05-13 at 10:28 +0200, Jacek Politowski wrote: > On Wed, May 13, 2009 at 08:25:08AM +0200, Michel Dänzer wrote: > >On Wed, 2009-05-13 at 02:09 +0200, Jacek Politowski wrote: > > >> Going upwards, from working to buggy revision, I treated FTBFS > >> (failing to build from source) commits as "bad" for git bisect. Going > >> from buggy revision downwards - to working one - I treated FTBFS > >> commits as "good" for git bisect. > > >It's better not to mark such commits as good or bad at all. Either use > >git bisect skip or switch to a nearby commit that can be used to verify > >the problem being bisected manually. > > Maybe it's better, but with git bisect skip I'd still be in testing > session - I tried that. I also tried skipping more (N - for N={1..4}) > revisions with git reset --hard HEAD~N, but it was also pointless > then. The point is that if you say git bisect good/bad for a commit where you couldn't verify the problem you're bisecting, the result of the bisect run may be incorrect. > Judging from compilation errors, I made an assumption that it was > always the same error causing compilation failure for me. Now I have > narrowed down the list of possible commits to 46 and can start with > narrower boundaries - manageable even with git bisect skip (to > proove/contradict that all the commits in between are failing to > build). Also note that if you know the fix for a build problem and you're confident it doesn't affect the problem you're bisecting, it's legitimate to manually apply the build fix. -- Earthling Michel Dänzer |http://www.vmware.com Libre software enthusiast | Debian, X and DRI developer -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1
On Wed, May 13, 2009 at 08:25:08AM +0200, Michel Dänzer wrote: >On Wed, 2009-05-13 at 02:09 +0200, Jacek Politowski wrote: >> Going upwards, from working to buggy revision, I treated FTBFS >> (failing to build from source) commits as "bad" for git bisect. Going >> from buggy revision downwards - to working one - I treated FTBFS >> commits as "good" for git bisect. >It's better not to mark such commits as good or bad at all. Either use >git bisect skip or switch to a nearby commit that can be used to verify >the problem being bisected manually. Maybe it's better, but with git bisect skip I'd still be in testing session - I tried that. I also tried skipping more (N - for N={1..4}) revisions with git reset --hard HEAD~N, but it was also pointless then. Judging from compilation errors, I made an assumption that it was always the same error causing compilation failure for me. Now I have narrowed down the list of possible commits to 46 and can start with narrower boundaries - manageable even with git bisect skip (to proove/contradict that all the commits in between are failing to build). And I'll try that on next possible occasion - possibly even today. -- Jacek Politowski -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Re: Bug#527920: please break circular dependency
* David Nusinow [090512 00:18]: > Dude... you already reported this bug in #523630, which I've tagged > pending because it's already fixed in git and will be in the next > upload. Please don't pester us with this again. Hm, perhaps I should not mistype subjects of bug reports in a way that I do no find them when looking if already reported... Hochachtungsvoll, Bernhard R. Link -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-video-ati_6.12.2-2_i386.changes ACCEPTED
Accepted: xserver-xorg-video-ati-dbg_6.12.2-2_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati-dbg_6.12.2-2_i386.deb xserver-xorg-video-ati_6.12.2-2.diff.gz to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.12.2-2.diff.gz xserver-xorg-video-ati_6.12.2-2.dsc to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.12.2-2.dsc xserver-xorg-video-ati_6.12.2-2_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.12.2-2_i386.deb xserver-xorg-video-radeon-dbg_6.12.2-2_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon-dbg_6.12.2-2_i386.deb xserver-xorg-video-radeon_6.12.2-2_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_6.12.2-2_i386.deb Override entries for your package: xserver-xorg-video-ati-dbg_6.12.2-2_i386.deb - extra debug xserver-xorg-video-ati_6.12.2-2.dsc - source x11 xserver-xorg-video-ati_6.12.2-2_i386.deb - optional x11 xserver-xorg-video-radeon-dbg_6.12.2-2_i386.deb - extra debug xserver-xorg-video-radeon_6.12.2-2_i386.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528311: xserver-xorg-video-savage: "[drm] Could not set DRM device bus ID." when applications tries to use drm
Nope, thats the only one running poi...@garfield:~$ sudo lsof /dev/dri/card0 COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME Xorg10117 root memCHR 226,0 9838 /dev/dri/card0 poi...@garfield:~$ ps -ef | grep X root 10117 10037 4 11:45 tty2 00:00:02 X poizan 10134 10037 0 11:46 pts/100:00:00 grep X - Kasper 2009/5/13 Michel Dänzer : > On Tue, 2009-05-12 at 17:27 +0200, Kasper F. Brandt wrote: >> Only Xorg: >> poi...@garfield:~$ sudo lsof /dev/dri/card0 >> COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME >> Xorg 25465 root mem CHR 226,0 9838 /dev/dri/card0 > > So the problem only happens in a second X server? That's expected, only > one X server can enable the DRI traditionally. Current Linux kernels > have support for multiple X servers with DRI enabled, but the X driver > needs to be modified to support it as well. > > > -- > Earthling Michel Dänzer | http://www.vmware.com > Libre software enthusiast | Debian, X and DRI developer > -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1
On Wed, May 13, 2009 at 10:34:39AM +0200, Michel Dänzer wrote: >The point is that if you say git bisect good/bad for a commit where you >couldn't verify the problem you're bisecting, the result of the bisect >run may be incorrect. I know that. But even when such assumption leads to incorrect results, I can always do a replay changing guessed good/bad answer. This will lead ultimately to "close enough" result, just like it did in my example. >Also note that if you know the fix for a build problem and you're >confident it doesn't affect the problem you're bisecting, it's >legitimate to manually apply the build fix. I also know that. However I'm just a regular user. Don't expect me to be able to fix compilation error of xorg video driver... Especially to fix it in a way that I'm confident won't break anything else. I started git bisect between revisions a6561f2ec673b38907f7181235386f32e60c32ba and da021c36bbdf3bca31ee50ebe01cdb9495c09b36, but I really don't think it's getting anywhere. I've attached an exemplary log of 'make' invocation (the same error for every tested build). Being able to fix this build problem, I'd be able to do further git bisect on driver repository. -- Jacek Politowski Script started on śro, 13 maj 2009, 12:49:12 j...@unstable-builder:~/workspace/radeon/upstream/gitrepo/xf86-video-ati$ make make all-recursive make[1]: Wejście do katalogu `/home/jpol/workspace/radeon/upstream/gitrepo/xf86-video-ati' Making all in src make[2]: Wejście do katalogu `/home/jpol/workspace/radeon/upstream/gitrepo/xf86-video-ati/src' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I./AtomBios/includes -Wall -I/usr/include/xorg -I/usr/include/pixman-1 -I/usr/include/drm -I/usr/include/X11/dri-DDISABLE_EASF -DENABLE_ALL_SERVICE_FUNCTIONS -DATOM_BIOS -DATOM_BIOS_PARSER -DDRIVER_PARSER -g -O2 -MT radeon_accel.lo -MD -MP -MF .deps/radeon_accel.Tpo -c -o radeon_accel.lo radeon_accel.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I./AtomBios/includes -Wall -I/usr/include/xorg -I/usr/include/pixman-1 -I/usr/include/drm -I/usr/include/X11/dri -DDISABLE_EASF -DENABLE_ALL_SERVICE_FUNCTIONS -DATOM_BIOS -DATOM_BIOS_PARSER -DDRIVER_PARSER -g -O2 -MT radeon_accel.lo -MD -MP -MF .deps/radeon_accel.Tpo -c radeon_accel.c -fPIC -DPIC -o .libs/radeon_accel.o In file included from radeon_accel.c:86: radeon_drm.h:584: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:610: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:627: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:635: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:644: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:648: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:689: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:701: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_drm.h:718: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘*’ token radeon_accel.c: In function ‘RADEONEngineInit’: radeon_accel.c:379: error: ‘drm_radeon_getparam_t’ has no member named ‘value’ make[2]: *** [radeon_accel.lo] Błąd 1 make[2]: Opuszczenie katalogu `/home/jpol/workspace/radeon/upstream/gitrepo/xf86-video-ati/src' make[1]: *** [all-recursive] Błąd 1 make[1]: Opuszczenie katalogu `/home/jpol/workspace/radeon/upstream/gitrepo/xf86-video-ati' make: *** [all] Błąd 2 j...@unstable-builder:~/workspace/radeon/upstream/gitrepo/xf86-video-ati$ exit Script done on śro, 13 maj 2009, 12:49:16 # bad: [da021c36bbdf3bca31ee50ebe01cdb9495c09b36] radeon_drm.h: remove kernel defines # good: [a6561f2ec673b38907f7181235386f32e60c32ba] Move DRI to a separate struct git bisect start 'da021c36bbdf3bca31ee50ebe01cdb9495c09b36' 'a6561f2ec673b38907f7181235386f32e60c32ba' # skip: [4a9e8d9fe24278b56aef51677fd35289d01584a7] set grey levels correctly for temporal dithering git bisect skip 4a9e8d9fe24278b56aef51677fd35289d01584a7 # skip: [dc795ba66a8c0eb2c3fdb86bd42dfc17e0aa3b6e] Fixups from last DFP/LCD refactor git bisect skip dc795ba66a8c0eb2c3fdb86bd42dfc17e0aa3b6e # skip: [5708624d1151877dd66a462d4a75fed6774604a7] Turn coherent mode off by default on DVI git bisect skip 5708624d1151877dd66a462d4a75fed6774604a7 # skip: [d744dc013cf5ca3141c0fdf55e36d713fe9f53ba] Fix connector table mapping for lvtma/kaleidoscope/uniphy. git bisect skip d744dc013cf5ca3141c0fdf55e36d713fe9f53ba
Bug#528311: xserver-xorg-video-savage: "[drm] Could not set DRM device bus ID." when applications tries to use drm
On Wed, 2009-05-13 at 11:52 +0200, Kasper F. Brandt wrote: > Nope, thats the only one running > > poi...@garfield:~$ sudo lsof /dev/dri/card0 > COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME > Xorg10117 root memCHR 226,0 9838 /dev/dri/card0 > poi...@garfield:~$ ps -ef | grep X > root 10117 10037 4 11:45 tty2 00:00:02 X Looking closer at the X log file, apparently DRI initialization works the first time but fails afterwards. So maybe the savage driver doesn't properly de-initialize the DRI on a server reset. Does the problem go away after restarting the X server? (If you're using a display manager, just logging out and back in may not be enough) -- Earthling Michel Dänzer |http://www.vmware.com Libre software enthusiast | Debian, X and DRI developer -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-video-suncg3: Changes to 'upstream-unstable'
.cvsignore | 19 --- .gitignore | 20 README | 20 configure.ac |2 +- man/Makefile.am |1 - man/suncg3.man |2 +- src/cg3_driver.c |8 +++- 7 files changed, 45 insertions(+), 27 deletions(-) New commits: commit 45f3d1f8aa8c3ad9ca2486935f2888343b6d1732 Author: Julien Cristau Date: Mon May 4 14:38:04 2009 +0200 Bump to 1.1.1 diff --git a/configure.ac b/configure.ac index 3db869d..c4c43af 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-suncg3], -1.1.0, +1.1.1, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-suncg3) commit 7e2f6255d9ab74859a7a90b0ac88d2a43a743cbd Author: Alan Coopersmith Date: Fri Jan 30 21:04:18 2009 -0800 Add README with pointers to mailing list, bugzilla & git repos diff --git a/README b/README new file mode 100644 index 000..b806f8c --- /dev/null +++ b/README @@ -0,0 +1,20 @@ +xf86-video-suncg3 - CG3 video driver for the Xorg X server + +Please submit bugs & patches to the Xorg bugzilla: + +https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +All questions regarding this software should be directed at the +Xorg mailing list: + +http://lists.freedesktop.org/mailman/listinfo/xorg + +The master development code repository can be found at: + +git://anongit.freedesktop.org/git/xorg/driver/xf86-video-suncg3 + +http://cgit.freedesktop.org/xorg/driver/xf86-video-suncg3 + +For more information on the git code manager, see: + +http://wiki.x.org/wiki/GitPage commit ab1cdb9d393dcf57c983ba7504a7749a9438ace7 Author: Alan Coopersmith Date: Fri Jan 9 16:35:21 2009 -0800 Remove xorgconfig & xorgcfg from See Also list in man page diff --git a/man/suncg3.man b/man/suncg3.man index a4f6bb0..2cabe9e 100644 --- a/man/suncg3.man +++ b/man/suncg3.man @@ -25,6 +25,6 @@ Please refer to __xconfigfile__(__filemansuffix__) for general configuration details. This section only covers configuration details specific to this driver. .SH "SEE ALSO" -__xservername__(1), __xconfigfile__(__filemansuffix__), xorgconfig(1), Xserver(1), X(__miscmansuffix__) +__xservername__(1), __xconfigfile__(__filemansuffix__), Xserver(1), X(__miscmansuffix__) .SH AUTHORS Authors include: Jakub Jelinek commit 01ce02338e2a1aff9dae3b0e23799378c3321ac0 Author: Adam Jackson Date: Tue Aug 19 10:24:32 2008 -0400 Uninclude xf86Version.h diff --git a/src/cg3_driver.c b/src/cg3_driver.c index 9b1b187..571e1f4 100644 --- a/src/cg3_driver.c +++ b/src/cg3_driver.c @@ -20,7 +20,6 @@ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suncg3/cg3_driver.c,v 1.4 2001/05/16 06:48:10 keithp Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -29,7 +28,6 @@ #define PSZ 8 #include "xf86.h" #include "xf86_OSproc.h" -#include "xf86Version.h" #include "mipointer.h" #include "mibstore.h" #include "micmap.h" commit 5ac8e89e493aedeeafe7e06a5dd03493995af034 Author: Matthieu Herrb Date: Sat Mar 8 23:56:30 2008 +0100 Makefile.am: nuke RCS Id diff --git a/man/Makefile.am b/man/Makefile.am index bf7ec17..f0eb29b 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,4 +1,3 @@ -# $Id$ # # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # commit 68e06fd13a9026b9b679ae32a76a33813a8b0ee9 Author: Brice Goglin Date: Tue Aug 7 13:48:28 2007 +0200 Define CG3_*_VERSION using PACKAGE_VERSION* diff --git a/src/cg3_driver.c b/src/cg3_driver.c index 0aa3fba..9b1b187 100644 --- a/src/cg3_driver.c +++ b/src/cg3_driver.c @@ -64,9 +64,9 @@ void CG3Sync(ScrnInfoPtr pScrn); #define CG3_VERSION 4000 #define CG3_NAME "SUNCG3" #define CG3_DRIVER_NAME "suncg3" -#define CG3_MAJOR_VERSION 1 -#define CG3_MINOR_VERSION 1 -#define CG3_PATCHLEVEL 0 +#define CG3_MAJOR_VERSION PACKAGE_VERSION_MAJOR +#define CG3_MINOR_VERSION PACKAGE_VERSION_MINOR +#define CG3_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL /* * This contains the functions needed by the server after loading the driver commit 5a3ad382ab98e126320fa93d3b11d4249a9cf0cd Author: Alan Coopersmith Date: Thu Mar 1 11:01:01 2007 -0800 renamed: .cvsignore -> .gitignore diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index fb1befd..000 --- a/.cvsignore +++ /dev/null @@ -1,19 +0,0 @@ -Makefile -Makefile.in -*.la -*.lo -aclocal.m4 -autom4te.cache -config.guess -config.h -config.h.in -config.log -config.status -config.sub -configure -depcomp -install-sh -libtool -ltmain.sh -missing -stamp-h1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 000..2df4a8d --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +Makefile +Makefile.in +*.la +*.lo +aclocal.m4 +autom4te.cache +config.guess +conf
xserver-xorg-video-suncg3: Changes to 'debian-unstable'
.cvsignore | 19 .gitignore | 20 ChangeLog| 42 Makefile.in | 653 - README | 20 aclocal.m4 | 7951 -- config.guess | 1516 -- config.h.in | 66 config.sub | 1622 -- configure|22031 --- configure.ac |2 debian/changelog |8 debian/control | 12 debian/rules | 17 debian/xsfbs/repack.sh | 32 debian/xsfbs/xsfbs-autoreconf.mk | 150 debian/xsfbs/xsfbs.mk| 104 debian/xsfbs/xsfbs.sh| 405 depcomp | 530 install-sh | 323 ltmain.sh| 6871 man/Makefile.am |1 man/Makefile.in | 419 man/suncg3.man |6 missing | 360 src/Makefile.in | 505 src/cg3_driver.c |8 27 files changed, 351 insertions(+), 43342 deletions(-) New commits: commit b8c7d0b137fcb5836a27b7516b3129dc64b5c15c Author: Julien Cristau Date: Wed May 13 15:22:39 2009 +0200 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index aa9df0d..2d53f0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,10 @@ -xserver-xorg-video-suncg3 (1:1.1.1-1) UNRELEASED; urgency=low +xserver-xorg-video-suncg3 (1:1.1.1-1) unstable; urgency=low * New upstream release. * Allow parallel builds. * Run autoreconf on build. - -- Julien Cristau Wed, 13 May 2009 15:19:48 +0200 + -- Julien Cristau Wed, 13 May 2009 15:22:26 +0200 xserver-xorg-video-suncg3 (1:1.1.0-3) unstable; urgency=low commit 2a0683a3dc7e49ce09d29c68e1b29fa575658e97 Author: Julien Cristau Date: Wed May 13 15:22:21 2009 +0200 Update changelogs diff --git a/ChangeLog b/ChangeLog index 107098b..af94563 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,45 @@ +commit 45f3d1f8aa8c3ad9ca2486935f2888343b6d1732 +Author: Julien Cristau +Date: Mon May 4 14:38:04 2009 +0200 + +Bump to 1.1.1 + +commit 7e2f6255d9ab74859a7a90b0ac88d2a43a743cbd +Author: Alan Coopersmith +Date: Fri Jan 30 21:04:18 2009 -0800 + +Add README with pointers to mailing list, bugzilla & git repos + +commit ab1cdb9d393dcf57c983ba7504a7749a9438ace7 +Author: Alan Coopersmith +Date: Fri Jan 9 16:35:21 2009 -0800 + +Remove xorgconfig & xorgcfg from See Also list in man page + +commit 01ce02338e2a1aff9dae3b0e23799378c3321ac0 +Author: Adam Jackson +Date: Tue Aug 19 10:24:32 2008 -0400 + +Uninclude xf86Version.h + +commit 5ac8e89e493aedeeafe7e06a5dd03493995af034 +Author: Matthieu Herrb +Date: Sat Mar 8 23:56:30 2008 +0100 + +Makefile.am: nuke RCS Id + +commit 68e06fd13a9026b9b679ae32a76a33813a8b0ee9 +Author: Brice Goglin +Date: Tue Aug 7 13:48:28 2007 +0200 + +Define CG3_*_VERSION using PACKAGE_VERSION* + +commit 5a3ad382ab98e126320fa93d3b11d4249a9cf0cd +Author: Alan Coopersmith +Date: Thu Mar 1 11:01:01 2007 -0800 + +renamed: .cvsignore -> .gitignore + commit ba46a263cca120175d5a669f8bec56508560dd03 Author: Alan Coopersmith Date: Thu Mar 1 11:00:30 2007 -0800 diff --git a/debian/changelog b/debian/changelog index f741667..aa9df0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ -xserver-xorg-video-suncg3 (1:1.1.0-4) UNRELEASED; urgency=low +xserver-xorg-video-suncg3 (1:1.1.1-1) UNRELEASED; urgency=low + * New upstream release. * Allow parallel builds. * Run autoreconf on build. commit 445765ffd4020ec57acc39c8a3543148b76aa67c Author: Julien Cristau Date: Wed May 13 15:21:01 2009 +0200 Delete generated files diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index bd3d980..000 --- a/Makefile.in +++ /dev/null @@ -1,653 +0,0 @@ -# Makefile.in generated by automake 1.9.6 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -...@set_make@ - -# Copyright 2005 Adam Jackson. -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# on the
xserver-xorg-video-suncg3: Changes to 'refs/tags/xserver-xorg-video-suncg3-1_1.1.1-1'
Tag 'xserver-xorg-video-suncg3-1_1.1.1-1' created by Julien Cristau at 2009-05-13 13:30 + Tagging upload of xserver-xorg-video-suncg3 1:1.1.1-1 to unstable. Changes since xserver-xorg-video-suncg3-1_1.1.0-3: Adam Jackson (1): Uninclude xf86Version.h Alan Coopersmith (4): Replace references to XFree86/XF86Config in man page renamed: .cvsignore -> .gitignore Remove xorgconfig & xorgcfg from See Also list in man page Add README with pointers to mailing list, bugzilla & git repos Brice Goglin (2): Define CG3_*_VERSION using PACKAGE_VERSION* Update xsfbs/quilt patching rules to be compatible with the David Nusinow (1): Kill the manifest code. Julien Cristau (20): xsfbs.mk: make 'serverabi' depend on 'install' Remove xsfbs-autoreconf.mk Remove the .pc directory properly xsfbs.sh: add remove_conffile_lookup xsfbs.sh: use 'local' now that policy allows it xsfbs.mk: fix the prepare target for parallel make xsfbs.mk: more parallel make fixing xsfbs.mk: update the list of releases, and drop some unused code xsfbs.mk: make 'log' a separate target xsfbs: add a repack script for uscan xsfbs.sh: kill {,de}register_x_lib_dir_with_ld_so xsfbs: repack.sh needs to be executable Bump to 1.1.1 Merge branch 'debian-unstable' of git.debian.org:/git/pkg-xorg/xsfbs into debian-unstable debian/control: wrap build-deps debian/rules update Delete generated files Merge tag 'xf86-video-suncg3-1.1.1' into debian-unstable Update changelogs Prepare changelog for upload Matthieu Herrb (1): Makefile.am: nuke RCS Id --- .cvsignore | 19 .gitignore | 20 ChangeLog| 42 Makefile.in | 653 - README | 20 aclocal.m4 | 7951 -- config.guess | 1516 -- config.h.in | 66 config.sub | 1622 -- configure|22031 --- configure.ac |2 debian/changelog |8 debian/control | 12 debian/rules | 17 debian/xsfbs/repack.sh | 32 debian/xsfbs/xsfbs-autoreconf.mk | 150 debian/xsfbs/xsfbs.mk| 104 debian/xsfbs/xsfbs.sh| 405 depcomp | 530 install-sh | 323 ltmain.sh| 6871 man/Makefile.am |1 man/Makefile.in | 419 man/suncg3.man |6 missing | 360 src/Makefile.in | 505 src/cg3_driver.c |8 27 files changed, 351 insertions(+), 43342 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processing of xserver-xorg-video-suncg3_1.1.1-1_sparc.changes
xserver-xorg-video-suncg3_1.1.1-1_sparc.changes uploaded successfully to localhost along with the files: xserver-xorg-video-suncg3_1.1.1-1.dsc xserver-xorg-video-suncg3_1.1.1.orig.tar.gz xserver-xorg-video-suncg3_1.1.1-1.diff.gz xserver-xorg-video-suncg3_1.1.1-1_sparc.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-video-suncg3_1.1.1-1_sparc.changes ACCEPTED
Accepted: xserver-xorg-video-suncg3_1.1.1-1.diff.gz to pool/main/x/xserver-xorg-video-suncg3/xserver-xorg-video-suncg3_1.1.1-1.diff.gz xserver-xorg-video-suncg3_1.1.1-1.dsc to pool/main/x/xserver-xorg-video-suncg3/xserver-xorg-video-suncg3_1.1.1-1.dsc xserver-xorg-video-suncg3_1.1.1-1_sparc.deb to pool/main/x/xserver-xorg-video-suncg3/xserver-xorg-video-suncg3_1.1.1-1_sparc.deb xserver-xorg-video-suncg3_1.1.1.orig.tar.gz to pool/main/x/xserver-xorg-video-suncg3/xserver-xorg-video-suncg3_1.1.1.orig.tar.gz Override entries for your package: xserver-xorg-video-suncg3_1.1.1-1.dsc - source x11 xserver-xorg-video-suncg3_1.1.1-1_sparc.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-video-suncg6: Changes to 'upstream-unstable'
.cvsignore | 19 --- .gitignore | 20 README | 20 configure.ac |2 +- man/Makefile.am |1 - man/suncg6.man |2 +- src/cg6_driver.c | 10 -- 7 files changed, 46 insertions(+), 28 deletions(-) New commits: commit 4a5689b7213b4cfcf42e95a8f2cb65bb037e2b02 Author: Julien Cristau Date: Mon May 4 15:06:17 2009 +0200 Bump to 1.1.1 diff --git a/configure.ac b/configure.ac index 313342e..cd964cf 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-suncg6], -1.1.0, +1.1.1, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-suncg6) commit ab0df8b5e67af4a5364272f70a6c97bf4e85a95f Author: Alan Coopersmith Date: Fri Jan 30 21:04:19 2009 -0800 Add README with pointers to mailing list, bugzilla & git repos diff --git a/README b/README new file mode 100644 index 000..5abd8fa --- /dev/null +++ b/README @@ -0,0 +1,20 @@ +xf86-video-suncg6 - GX/Turbo GX video driver for the Xorg X server + +Please submit bugs & patches to the Xorg bugzilla: + +https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +All questions regarding this software should be directed at the +Xorg mailing list: + +http://lists.freedesktop.org/mailman/listinfo/xorg + +The master development code repository can be found at: + +git://anongit.freedesktop.org/git/xorg/driver/xf86-video-suncg6 + +http://cgit.freedesktop.org/xorg/driver/xf86-video-suncg6 + +For more information on the git code manager, see: + +http://wiki.x.org/wiki/GitPage commit 0ea4c5d25763c805877557914b0c95b8c6fc8f40 Author: David Nusinow Date: Sun Nov 25 22:46:38 2007 -0500 Request 8bpp depth from the server We only support 8bpp so might as well ask for it rather than demand that the user configure this in their xorg.conf. X.Org bug#13394 (http://bugs.freedesktop.org/show_bug.cgi?id=13394) Signed-off-by: Julien Cristau diff --git a/src/cg6_driver.c b/src/cg6_driver.c index 2ad85bb..57eae62 100644 --- a/src/cg6_driver.c +++ b/src/cg6_driver.c @@ -332,7 +332,7 @@ CG6PreInit(ScrnInfoPtr pScrn, int flags) deal with depth */ -if (!xf86SetDepthBpp(pScrn, 0, 0, 0, NoDepth24Support)) { +if (!xf86SetDepthBpp(pScrn, 8, 0, 0, NoDepth24Support)) { return FALSE; } else { /* Check that the returned depth is one we support */ commit 1d463282b8e5befe6ab5fdd8f6688bc2a7743e43 Author: Alan Coopersmith Date: Fri Jan 9 16:35:42 2009 -0800 Remove xorgconfig & xorgcfg from See Also list in man page diff --git a/man/suncg6.man b/man/suncg6.man index 6ec4409..1ebc84b 100644 --- a/man/suncg6.man +++ b/man/suncg6.man @@ -25,6 +25,6 @@ Please refer to __xconfigfile__(__filemansuffix__) for general configuration details. This section only covers configuration details specific to this driver. .SH "SEE ALSO" -__xservername__(1), __xconfigfile__(__filemansuffix__), xorgconfig(1), Xserver(1), X(__miscmansuffix__) +__xservername__(1), __xconfigfile__(__filemansuffix__), Xserver(1), X(__miscmansuffix__) .SH AUTHORS Authors include: Jakub Jelinek commit 95890614d0218d57de314cd88eaa46f45ebf0b66 Author: Adam Jackson Date: Tue Aug 19 10:24:59 2008 -0400 Uninclude xf86Version.h diff --git a/src/cg6_driver.c b/src/cg6_driver.c index 378def7..2ad85bb 100644 --- a/src/cg6_driver.c +++ b/src/cg6_driver.c @@ -20,7 +20,6 @@ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suncg6/cg6_driver.c,v 1.7 2002/12/06 16:44:38 tsi Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -30,7 +29,6 @@ #include "xf86.h" #include "xf86_OSproc.h" -#include "xf86Version.h" #include "mipointer.h" #include "mibstore.h" #include "micmap.h" commit b7cc50246ef1d36be47394a5b9d54f9bfc9b6398 Author: Matthieu Herrb Date: Sat Mar 8 23:57:07 2008 +0100 Makefile.am: nuke RCS Id diff --git a/man/Makefile.am b/man/Makefile.am index bf7ec17..f0eb29b 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,4 +1,3 @@ -# $Id$ # # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # commit accee0d1ce864d1a6200c93fa4ef6c942fe43feb Author: Brice Goglin Date: Tue Aug 7 13:50:00 2007 +0200 Define CG6_*_VERSION using PACKAGE_VERSION* diff --git a/src/cg6_driver.c b/src/cg6_driver.c index baad7c3..378def7 100644 --- a/src/cg6_driver.c +++ b/src/cg6_driver.c @@ -65,9 +65,9 @@ void CG6Sync(ScrnInfoPtr pScrn); #define CG6_VERSION 4000 #define CG6_NAME "SUNCG6" #define CG6_DRIVER_NAME "suncg6" -#define CG6_MAJOR_VERSION 1 -#define CG6_MINOR_VERSION 1 -#define CG6_PATCHLEVEL 0 +#define CG6_MAJOR_VERSION PACKAGE_VERSION_MAJOR +#define CG6_MINOR_VERSION PACKAGE
xserver-xorg-video-suncg6: Changes to 'debian-unstable'
.cvsignore | 19 .gitignore | 20 ChangeLog | 55 Makefile.in | 653 README | 20 aclocal.m4 | 7951 config.guess| 1516 config.h.in | 66 config.sub | 1622 configure |22031 configure.ac|2 debian/changelog| 10 debian/control | 12 debian/patches/0001-Request-8bpp-depth-from-the-server.diff | 25 debian/patches/series |1 debian/rules| 21 debian/xsfbs/repack.sh | 32 debian/xsfbs/xsfbs-autoreconf.mk| 150 debian/xsfbs/xsfbs.mk | 146 debian/xsfbs/xsfbs.sh | 412 depcomp | 530 install-sh | 323 ltmain.sh | 6871 --- man/Makefile.am |1 man/Makefile.in | 419 man/suncg6.man |2 missing | 360 src/Makefile.in | 508 src/cg6_driver.c| 10 29 files changed, 381 insertions(+), 43407 deletions(-) New commits: commit b613163033d79c1b8f646fb02aca02101880b0a6 Author: Julien Cristau Date: Wed May 13 15:51:49 2009 +0200 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index ae0f9cd..6d13d8b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-video-suncg6 (1:1.1.1-1) UNRELEASED; urgency=low +xserver-xorg-video-suncg6 (1:1.1.1-1) unstable; urgency=low * New upstream release. + remove 0001-Request-8bpp-depth-from-the-server.diff applied upstream @@ -6,7 +6,7 @@ xserver-xorg-video-suncg6 (1:1.1.1-1) UNRELEASED; urgency=low * Allow parallel builds. * Get rid of quilt build-dep and debian/rules patching. - -- Julien Cristau Wed, 13 May 2009 15:43:40 +0200 + -- Julien Cristau Wed, 13 May 2009 15:51:46 +0200 xserver-xorg-video-suncg6 (1:1.1.0-5) unstable; urgency=medium commit e7cba7527f7aa8bfe7ed1623321919621ced651f Author: Julien Cristau Date: Wed May 13 15:51:14 2009 +0200 Delete generated files diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index bd3d980..000 --- a/Makefile.in +++ /dev/null @@ -1,653 +0,0 @@ -# Makefile.in generated by automake 1.9.6 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -...@set_make@ - -# Copyright 2005 Adam Jackson. -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# on the rights to use, copy, modify, merge, publish, distribute, sub -# license, and/or sell copies of the Software, and to permit persons to whom -# the Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice (including the next -# paragraph) shall be included in all copies or substantial portions of the -# Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL -# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALING
Bug#523946: xserver-xorg-input-synaptics: VertScrolling stops working after update to version 1.1.0
clone 523946 -1 forwarded -1 http://bugs.freedesktop.org/show_bug.cgi?id=21001 thanks On Mon, May 11, 2009 at 09:11:01PM +0200, Mirko Weber wrote: ... > also I don't think that the upstream bug is my problem. The first use after > reboot is fine, but then the touchpad stops scrolling. > > Thanks, > mirko On Tue, May 12, 2009 at 11:34:52PM +0200, José Sánchez Moreno wrote: > Hi > > I have exactly the same problem with this package. Ok, this is definitaly a different issue than the one reported initially. It has been reported upstream here: http://bugs.freedesktop.org/show_bug.cgi?id=21001 Could you both see if you can help pinpointing the cause of the problem together with upstream? Thanks -- mattia :wq! -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-video-suncg6: Changes to 'refs/tags/xserver-xorg-video-suncg6-1_1.1.1-1'
Tag 'xserver-xorg-video-suncg6-1_1.1.1-1' created by Julien Cristau at 2009-05-13 13:52 + Tagging upload of xserver-xorg-video-suncg6 1:1.1.1-1 to unstable. Changes since xserver-xorg-video-suncg6-1_1.1.0-5: Adam Jackson (1): Uninclude xf86Version.h Alan Coopersmith (3): renamed: .cvsignore -> .gitignore Remove xorgconfig & xorgcfg from See Also list in man page Add README with pointers to mailing list, bugzilla & git repos Brice Goglin (6): Fix displaying of patches applied by quilt. Minor fixes in the patching system. Fix "display the output of quilt push/pop". Define CG6_*_VERSION using PACKAGE_VERSION* Do not call laptop-detect, let the only user call it directly Update xsfbs/quilt patching rules to be compatible with the David Nusinow (3): Remove make-orig-tar-gz target Kill the manifest code. Request 8bpp depth from the server Julien Cristau (21): xsfbs.mk: make 'serverabi' depend on 'install' Remove xsfbs-autoreconf.mk Remove the .pc directory properly xsfbs.sh: add remove_conffile_lookup xsfbs.sh: use 'local' now that policy allows it xsfbs.mk: fix the prepare target for parallel make xsfbs.mk: more parallel make fixing xsfbs.mk: update the list of releases, and drop some unused code xsfbs.mk: make 'log' a separate target xsfbs: add a repack script for uscan xsfbs.sh: kill {,de}register_x_lib_dir_with_ld_so xsfbs: repack.sh needs to be executable Bump to 1.1.1 Merge branch 'debian-unstable' of git.debian.org:/git/pkg-xorg/xsfbs into debian-unstable debian/control: wrap Build-Depends debian/rules updates Merge tag 'xf86-video-suncg6-1.1.1' into debian-unstable update changelogs Remove patch applied upstream Delete generated files Prepare changelog for upload Matthieu Herrb (1): Makefile.am: nuke RCS Id --- .cvsignore | 19 .gitignore | 20 ChangeLog | 55 Makefile.in | 653 README | 20 aclocal.m4 | 7951 config.guess| 1516 config.h.in | 66 config.sub | 1622 configure |22031 configure.ac|2 debian/changelog| 10 debian/control | 12 debian/patches/0001-Request-8bpp-depth-from-the-server.diff | 25 debian/patches/series |1 debian/rules| 21 debian/xsfbs/repack.sh | 32 debian/xsfbs/xsfbs-autoreconf.mk| 150 debian/xsfbs/xsfbs.mk | 146 debian/xsfbs/xsfbs.sh | 412 depcomp | 530 install-sh | 323 ltmain.sh | 6871 --- man/Makefile.am |1 man/Makefile.in | 419 man/suncg6.man |2 missing | 360 src/Makefile.in | 508 src/cg6_driver.c| 10 29 files changed, 381 insertions(+), 43407 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528311: xserver-xorg-video-savage: "[drm] Could not set DRM device bus ID." when applications tries to use drm
Actually it looks like it's working the first time somethings uses DRI, but then fails afterwards: poi...@garfield:~$ sudo X & [1] 12054 poi...@garfield:~$ 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-10.lenny1) Current Operating System: Linux garfield.tagmedia.dk 2.6.26-2-openvz-686 #1 SMP Thu Mar 26 03:55:11 UTC 2009 i686 Build Date: 15 March 2009 03:18:10PM 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: "/var/log/Xorg.0.log", Time: Wed May 13 15:29:06 2009 (==) Using config file: "/etc/X11/xorg.conf" (II) Module "ddc" already built-in (II) Module "i2c" already built-in [111] 640 x 480, 60Hz, 75Hz, 85Hz, 100Hz, 160Hz [114] 800 x 600, 60Hz, 75Hz, 85Hz [117] 1024 x 768, 60Hz, 70Hz, 75Hz, 85Hz, 100Hz, 130Hz [11a] 1280 x 1024, 60Hz, 75Hz, 85Hz, 100Hz [122] 1600 x 1200, 60Hz (II) Module "ramdac" already built-in [config/hal] couldn't initialise context: (null) ((null)) poi...@garfield:~$ glxinfo -display :0 | grep direct direct rendering: Yes poi...@garfield:~$ FreeFontPath: FPE "/usr/share/fonts/X11/misc" refcount is 2, should be 1; fixing. (EE) [drm] Could not set DRM device bus ID. (EE) SAVAGE(0): [drm] DRIScreenInit failed. Disabling DRI. (EE) SAVAGE(0): DRI isn't enabled [config/hal] couldn't initialise context: (null) ((null)) poi...@garfield:~$ glxinfo -display :0 | grep direct direct rendering: No (If you want to find out why, try setting LIBGL_DEBUG=verbose) OpenGL renderer string: Mesa GLX Indirect poi...@garfield:~$ FreeFontPath: FPE "/usr/share/fonts/X11/misc" refcount is 2, should be 1; fixing. (EE) [drm] Could not set DRM device bus ID. (EE) SAVAGE(0): [drm] DRIScreenInit failed. Disabling DRI. (EE) SAVAGE(0): DRI isn't enabled [config/hal] couldn't initialise context: (null) ((null)) - Kasper 2009/5/13 Michel Dänzer : > On Wed, 2009-05-13 at 11:52 +0200, Kasper F. Brandt wrote: >> Nope, thats the only one running >> >> poi...@garfield:~$ sudo lsof /dev/dri/card0 >> COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME >> Xorg 10117 root mem CHR 226,0 9838 /dev/dri/card0 >> poi...@garfield:~$ ps -ef | grep X >> root 10117 10037 4 11:45 tty2 00:00:02 X > > Looking closer at the X log file, apparently DRI initialization works > the first time but fails afterwards. So maybe the savage driver doesn't > properly de-initialize the DRI on a server reset. Does the problem go > away after restarting the X server? (If you're using a display manager, > just logging out and back in may not be enough) > > > -- > Earthling Michel Dänzer | http://www.vmware.com > Libre software enthusiast | Debian, X and DRI developer > -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processing of xserver-xorg-video-suncg6_1.1.1-1_sparc.changes
xserver-xorg-video-suncg6_1.1.1-1_sparc.changes uploaded successfully to localhost along with the files: xserver-xorg-video-suncg6_1.1.1-1.dsc xserver-xorg-video-suncg6_1.1.1.orig.tar.gz xserver-xorg-video-suncg6_1.1.1-1.diff.gz xserver-xorg-video-suncg6_1.1.1-1_sparc.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processed: Re: Bug#523946: xserver-xorg-input-synaptics: VertScrolling stops working after update to version 1.1.0
Processing commands for cont...@bugs.debian.org: > clone 523946 -1 Bug#523946: [xserver-xorg-input-synaptics] VertScrolling stops working after update to version 1.1.0 Bug 523946 cloned as bug 528538. > forwarded -1 http://bugs.freedesktop.org/show_bug.cgi?id=21001 Bug#528538: [xserver-xorg-input-synaptics] VertScrolling stops working after update to version 1.1.0 Noted your statement that Bug has been forwarded to http://bugs.freedesktop.org/show_bug.cgi?id=21001. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528540: RM: xserver-xorg-video-sunbw2 -- ROM; abandoned upstream
Package: ftp.debian.org Severity: normal Hi, latest xorg-server dropped monochrome (xf1bpp) support which is needed by the sunbw2 driver. Please remove it from unstable. Cheers, julien -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-citron: Changes to 'refs/tags/xserver-xorg-input-citron-1_2.2.2-1'
Tag 'xserver-xorg-input-citron-1_2.2.2-1' created by Julien Cristau at 2009-05-13 14:39 + Tagging upload of xserver-xorg-input-citron 1:2.2.2-1 to unstable. Changes since xserver-xorg-input-citron-1_2.2.1-2: Alan Coopersmith (4): Remove xorgconfig & xorgcfg from See Also list in man page Add README with pointers to mailing list, bugzilla & git repos Delete duplicate EXTRA_DIST line from Makefile Version 2.2.2 Brice Goglin (1): Update xsfbs/quilt patching rules to be compatible with the David Nusinow (2): Remove make-orig-tar-gz target Kill the manifest code. Julien Cristau (20): xsfbs.mk: make 'serverabi' depend on 'install' Remove xsfbs-autoreconf.mk Remove the .pc directory properly xsfbs.sh: add remove_conffile_lookup xsfbs.sh: use 'local' now that policy allows it xsfbs.mk: fix the prepare target for parallel make xsfbs.mk: more parallel make fixing xsfbs.mk: update the list of releases, and drop some unused code xsfbs.mk: make 'log' a separate target xsfbs: add a repack script for uscan xsfbs.sh: kill {,de}register_x_lib_dir_with_ld_so xsfbs: repack.sh needs to be executable Merge branch 'debian-unstable' of git.debian.org:/git/pkg-xorg/xsfbs into debian-unstable debian/control: wrap build-depends debian/rules updates Delete generated files Remove myself from Uploaders. Merge tag 'xf86-input-citron-2.2.2' into debian-unstable Update changelogs Prepare changelog for upload Paulo Cesar Pereira de Andrade (2): Don't call xf86SoundKbdBell and xf86XInputSetSendCoreEvents Janitor: correct make distcheck. Peter Hutterer (2): Check for XINPUT ABI 3. Fix build, XF86_VERSION_CURRENT doesn't exist anymore. --- .gitignore |2 ChangeLog| 56 Makefile.am |6 Makefile.in | 672 - README | 19 aclocal.m4 | 8175 -- config.guess | 1516 -- config.h.in | 66 config.sub | 1626 -- configure|22334 --- configure.ac | 17 debian/changelog |9 debian/control | 13 debian/rules | 17 debian/xsfbs/repack.sh | 32 debian/xsfbs/xsfbs-autoreconf.mk | 150 debian/xsfbs/xsfbs.mk| 127 debian/xsfbs/xsfbs.sh| 405 depcomp | 584 - install-sh | 507 ltmain.sh| 6938 man/Makefile.in | 423 man/citron.man |2 missing | 367 src/Makefile.am |2 src/Makefile.in | 512 src/citron.c | 13 27 files changed, 368 insertions(+), 44222 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-citron: Changes to 'upstream-unstable'
.cvsignore | 19 - .gitignore | 26 +++ ChangeLog | 61 Makefile.am | 10 + README | 19 + configure.ac| 19 ++--- man/citron.man |2 - src/Makefile.am |2 + src/citron.c| 23 ++--- 9 files changed, 85 insertions(+), 96 deletions(-) New commits: commit 7c202dd28ae9c6fffd7ae958a21463ae69c51a8a Author: Alan Coopersmith Date: Tue Apr 28 17:51:32 2009 -0700 Version 2.2.2 Signed-off-by: Alan Coopersmith diff --git a/configure.ac b/configure.ac index 7aaf638..748ebbd 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-input-citron], -2.2.1, +2.2.2, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-input-citron) commit d411ee98f95c62bb63cab88a5fa97be6e4fb057e Author: Alan Coopersmith Date: Tue Apr 28 17:50:51 2009 -0700 Delete duplicate EXTRA_DIST line from Makefile Signed-off-by: Alan Coopersmith diff --git a/Makefile.am b/Makefile.am index b607f62..1817e61 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,7 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = src man -EXTRA_DIST = ChangeLog + EXTRA_DIST = ChangeLog MAINTAINERCLEANFILES = ChangeLog commit 32dbc726871bf7e3a7535d788f169f8e11c981fd Author: Paulo Cesar Pereira de Andrade Date: Mon Feb 2 18:32:11 2009 -0200 Janitor: correct make distcheck. diff --git a/.gitignore b/.gitignore index d6882bf..03555bf 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ stamp-h1 .deps .libs man/citron.? +xf86-input-citron-*.tar.* +tags diff --git a/Makefile.am b/Makefile.am index 42f8b54..b607f62 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,11 +20,13 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = src man - -CLEANFILES = ChangeLog EXTRA_DIST = ChangeLog +EXTRA_DIST = ChangeLog +MAINTAINERCLEANFILES = ChangeLog .PHONY: ChangeLog ChangeLog: - (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + $(CHANGELOG_CMD) + +dist-hook: ChangeLog diff --git a/configure.ac b/configure.ac index b96b34a..7aaf638 100644 --- a/configure.ac +++ b/configure.ac @@ -32,15 +32,16 @@ AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE -DRIVER_NAME=citron -AC_SUBST([DRIVER_NAME]) - +# Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG +m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.2) AM_CONFIG_HEADER([config.h]) # Checks for programs. AC_DISABLE_STATIC AC_PROG_LIBTOOL AC_PROG_CC +XORG_CWARNFLAGS AH_TOP([#include "xorg-server.h"]) @@ -77,16 +78,18 @@ XORG_DRIVER_CHECK_EXT(XINPUT, [inputproto >= 1.4.1]) # Checks for pkg-config packages PKG_CHECK_MODULES(XORG, [xorg-server >= 1.0.99.901] xproto $REQUIRED_MODULES) sdkdir=$(pkg-config --variable=sdkdir xorg-server) - -CFLAGS="$CFLAGS $XORG_CFLAGS "' -I$(top_srcdir)/src' -AC_SUBST([CFLAGS]) +XORG_CFLAGS="$CWARNFLAGS $XORG_CFLAGS" # Checks for libraries. # Checks for header files. AC_HEADER_STDC +DRIVER_NAME=citron +AC_SUBST([DRIVER_NAME]) + XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION +XORG_CHANGELOG AC_OUTPUT([Makefile src/Makefile man/Makefile]) diff --git a/src/Makefile.am b/src/Makefile.am index 5ff68eb..920ef23 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -24,6 +24,8 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. +AM_CFLAGS = $(XORG_CFLAGS) + @driver_n...@_drv_la_ltlibraries = @driver_n...@_drv.la @driver_n...@_drv_la_ldflags = -module -avoid-version @driver_n...@_drv_ladir = @inputdir@ commit 6f479966a1f5f9ab376a0b6144548e5f3da76b12 Author: Alan Coopersmith Date: Fri Jan 30 20:17:02 2009 -0800 Add README with pointers to mailing list, bugzilla & git repos diff --git a/README b/README new file mode 100644 index 000..aeb61cf --- /dev/null +++ b/README @@ -0,0 +1,19 @@ + +Please submit bugs & patches to the Xorg bugzilla: + +https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +All questions regarding this software should be directed at the +Xorg mailing list: + +http://lists.freedesktop.org/mailman/listinfo/xorg + +The master development code repository can be found at: + +git://anongit.freedesktop.org/git/xorg/driver/xf86-input-citron + +http://cgit.freedesktop.org/xorg/driver/xf86-input-citron + +For more information on the git code manager, see: + +http://wiki.x.org/wiki/GitPage commit 52b092a77ef19c77bf40cd6896c0d1e54d5f5f62 Author: Alan Coopersmi
xserver-xorg-input-citron: Changes to 'debian-unstable'
.gitignore |2 ChangeLog| 56 Makefile.am |6 Makefile.in | 672 - README | 19 aclocal.m4 | 8175 -- config.guess | 1516 -- config.h.in | 66 config.sub | 1626 -- configure|22334 --- configure.ac | 17 debian/changelog |9 debian/control | 13 debian/rules | 17 debian/xsfbs/repack.sh | 32 debian/xsfbs/xsfbs-autoreconf.mk | 150 debian/xsfbs/xsfbs.mk| 127 debian/xsfbs/xsfbs.sh| 405 depcomp | 584 - install-sh | 507 ltmain.sh| 6938 man/Makefile.in | 423 man/citron.man |2 missing | 367 src/Makefile.am |2 src/Makefile.in | 512 src/citron.c | 13 27 files changed, 368 insertions(+), 44222 deletions(-) New commits: commit c03d581f44e7139e8289d96985aa0fd0cb37ad7f Author: Julien Cristau Date: Wed May 13 16:28:32 2009 +0200 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index 8a2353c..fe16557 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,11 @@ -xserver-xorg-input-citron (1:2.2.2-1) UNRELEASED; urgency=low +xserver-xorg-input-citron (1:2.2.2-1) unstable; urgency=low * New upstream release. * Run autoreconf at build time. * Allow parallel builds. * Remove myself from Uploaders. - -- Julien Cristau Wed, 13 May 2009 16:21:59 +0200 + -- Julien Cristau Wed, 13 May 2009 16:28:20 +0200 xserver-xorg-input-citron (1:2.2.1-2) unstable; urgency=low commit 7868987627ac5a3bab456a5fb68f97b1075face5 Author: Julien Cristau Date: Wed May 13 16:26:30 2009 +0200 Update changelogs diff --git a/ChangeLog b/ChangeLog index 951d5e0..7ac2003 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,59 @@ +commit 7c202dd28ae9c6fffd7ae958a21463ae69c51a8a +Author: Alan Coopersmith +Date: Tue Apr 28 17:51:32 2009 -0700 + +Version 2.2.2 + +Signed-off-by: Alan Coopersmith + +commit d411ee98f95c62bb63cab88a5fa97be6e4fb057e +Author: Alan Coopersmith +Date: Tue Apr 28 17:50:51 2009 -0700 + +Delete duplicate EXTRA_DIST line from Makefile + +Signed-off-by: Alan Coopersmith + +commit 32dbc726871bf7e3a7535d788f169f8e11c981fd +Author: Paulo Cesar Pereira de Andrade +Date: Mon Feb 2 18:32:11 2009 -0200 + +Janitor: correct make distcheck. + +commit 6f479966a1f5f9ab376a0b6144548e5f3da76b12 +Author: Alan Coopersmith +Date: Fri Jan 30 20:17:02 2009 -0800 + +Add README with pointers to mailing list, bugzilla & git repos + +commit 52b092a77ef19c77bf40cd6896c0d1e54d5f5f62 +Author: Alan Coopersmith +Date: Fri Jan 9 16:11:02 2009 -0800 + +Remove xorgconfig & xorgcfg from See Also list in man page + +commit 0297c49fd3743e15900a05169ba36e6a0fb438c0 +Author: Peter Hutterer +Date: Thu Aug 14 14:55:59 2008 +0930 + +Fix build, XF86_VERSION_CURRENT doesn't exist anymore. + +commit 591674bee43061f1169ebeede653fb6d98147724 +Author: Peter Hutterer +Date: Mon May 26 22:03:52 2008 +0930 + +Check for XINPUT ABI 3. + +commit a59ffb3cdc9d68a0ad21f04831e4255ad0e985d8 +Author: Paulo Cesar Pereira de Andrade +Date: Mon Feb 4 01:10:27 2008 -0200 + +Don't call xf86SoundKbdBell and xf86XInputSetSendCoreEvents + +Only call those functions if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0. + +Signed-off-by: Peter Hutterer + commit 9a4d7854273a34c1a32f46fb52f2f8c3a227cd12 Author: Tilman Sauerbeck Date: Sun Sep 9 17:09:45 2007 +0200 diff --git a/debian/changelog b/debian/changelog index c5e6874..8a2353c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ -xserver-xorg-input-citron (1:2.2.1-3) UNRELEASED; urgency=low +xserver-xorg-input-citron (1:2.2.2-1) UNRELEASED; urgency=low + * New upstream release. * Run autoreconf at build time. * Allow parallel builds. * Remove myself from Uploaders. commit eb7f3e27d5517b2e30ca46f02b4255d80397d8a7 Author: Julien Cristau Date: Wed May 13 16:23:59 2009 +0200 Remove myself from Uploaders. diff --git a/debian/changelog b/debian/changelog index 52fa441..c5e6874 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ xserver-xorg-input-citron (1:2.2.1-3) UNRELEASED; urgency=low * Run autoreconf at build time. * Allow parallel builds. + * Remove myself from Uploaders. -- Julien Cristau Wed, 13 May 2009 16:21:59 +0200 diff --git a/debian/control b/debian/control index 35e1aec..38fcffb 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: xserver-xorg-
Processing of xserver-xorg-input-citron_2.2.2-1_i386.changes
xserver-xorg-input-citron_2.2.2-1_i386.changes uploaded successfully to localhost along with the files: xserver-xorg-input-citron_2.2.2-1.dsc xserver-xorg-input-citron_2.2.2.orig.tar.gz xserver-xorg-input-citron_2.2.2-1.diff.gz xserver-xorg-input-citron_2.2.2-1_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#527660: marked as done (xserver-xorg-input-citron: FTBFS: ../../src/citron.c:308: error: 'XF86_VERSION_CURRENT' undeclared here (not in a function))
Your message dated Wed, 13 May 2009 16:41:22 +0200 with message-id <20090513144122.gm17...@patate.is-a-geek.org> and subject line Re: Bug#527660: xserver-xorg-input-citron: FTBFS: ../../src/citron.c:308: error: 'XF86_VERSION_CURRENT' undeclared here (not in a function) has caused the Debian Bug report #527660, regarding xserver-xorg-input-citron: FTBFS: ../../src/citron.c:308: error: 'XF86_VERSION_CURRENT' undeclared here (not in a function) to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 527660: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527660 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-citron Version: 1:2.2.1-2 Severity: serious User: debian...@lists.debian.org Usertags: qa-ftbfs-20090508 qa-ftbfs Justification: FTBFS on amd64 Hi, During a rebuild of all packages in sid, your package failed to build on amd64. Relevant part: > gcc -DHAVE_CONFIG_H -I. -I.. -I../../src -Wall -g -O2 -I/usr/include/xorg > -I/usr/include/pixman-1 -I../../src -MT citron.lo -MD -MP -MF > .deps/citron.Tpo -c ../../src/citron.c -fPIC -DPIC -o .libs/citron.o > ../../src/citron.c:308: error: 'XF86_VERSION_CURRENT' undeclared here (not in > a function) > ../../src/citron.c: In function 'xf86CitronPrint': > ../../src/citron.c:669: warning: format '%08lX' expects type 'long unsigned > int', but argument 4 has type 'Mask' > ../../src/citron.c: In function 'cit_StartTimer': > ../../src/citron.c:789: warning: cast from pointer to integer of different > size > ../../src/citron.c: In function 'cit_CloseTimer': > ../../src/citron.c:800: warning: cast from pointer to integer of different > size > ../../src/citron.c: In function 'cit_SuperVisionTimer': > ../../src/citron.c:821: warning: format '%ld' expects type 'long int', but > argument 3 has type 'CARD32' > ../../src/citron.c: In function 'CitronPreInit': > ../../src/citron.c:879: warning: format '%d' expects type 'int', but argument > 3 has type 'long unsigned int' > ../../src/citron.c: In function 'DeviceInit': > ../../src/citron.c:1372: warning: passing argument 3 of > 'InitValuatorClassDeviceStruct' makes integer from pointer without a cast > ../../src/citron.c:1372: error: too many arguments to function > 'InitValuatorClassDeviceStruct' > ../../src/citron.c: In function 'SwitchMode': > ../../src/citron.c:2063: warning: implicit declaration of function > 'xf86XInputSetSendCoreEvents' > ../../src/citron.c: In function 'cit_Beep': > ../../src/citron.c:2490: warning: implicit declaration of function > 'xf86SoundKbdBell' > make[3]: *** [citron.lo] Error 1 The full build log is available from: http://people.debian.org/~lucas/logs/2009/05/08/xserver-xorg-input-citron_1:2.2.1-2_lsid64.buildlog A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! About the archive rebuild: The rebuild was done on about 50 AMD64 nodes of the Grid'5000 platform, using a clean chroot. Internet was not accessible from the build systems. -- | Lucas Nussbaum | lu...@lucas-nussbaum.net http://www.lucas-nussbaum.net/ | | jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F | --- End Message --- --- Begin Message --- Version: 1:2.2.2-1 Forgot to close the bug in changelog. Cheers, Julien --- End Message ---
Processing of xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.changes
xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.changes uploaded successfully to localhost along with the files: xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processing of xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.changes
xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.changes uploaded successfully to ftp.upload.debian.org along with the files: xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'debian-unstable'
debian/NEWS | 62 ++ debian/changelog | 12 - debian/control |2 debian/examples/prehal-defaults.fdi | 13 -- debian/patches/01-synaptics-dont-grab-if-not-on-current-VT.patch |6 debian/patches/02-mention-tapping-in-manpage-notes.patch | 16 ++ debian/patches/series|1 debian/xserver-xorg-input-synaptics.README.Debian| 13 +- debian/xserver-xorg-input-synaptics.docs |1 9 files changed, 53 insertions(+), 73 deletions(-) New commits: commit bfcc8ea7e23ca148e41767c9a2091a9083916219 Author: Mattia Dongili Date: Wed May 13 22:53:52 2009 +0900 Upload to unstable Signed-off-by: Mattia Dongili diff --git a/debian/changelog b/debian/changelog index 74072bb..75258a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-input-synaptics (1.1.1~git20090510-1) unreleased; urgency=low +xserver-xorg-input-synaptics (1.1.1~git20090510-1) unstable; urgency=low [ David Nusinow ] * Add NEWS.Debian entry about enabling tapping again (closes: #497523) commit 3c5b7c902c6414520a6aa576ef01cfd9b5d91d32 Author: Mattia Dongili Date: Wed May 13 00:27:59 2009 +0900 Amend NEWS entry about tapping configuration Be more concise and point users to available resources to configure the touchpad but still provide an immediate workaround. Additionally explain how defaults are assigned in the manpage. Signed-off-by: Mattia Dongili diff --git a/debian/NEWS b/debian/NEWS index a0a5c92..d8150a7 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,50 +1,20 @@ xserver-xorg-input-synaptics (1.1.1~git20090510-1) unstable; urgency=low - * Tapping has been disabled by default on many touchpads by upstream. If -you want to re-enable it, you can do so explicitly by adding the -following to your xorg.conf: - - Section "InputDevice" - Identifier "synaptics" - Driver "synaptics" - Option "TapButton1" "1" - Option "TapButton2" "2" - Option "TapButton3" "3" - EndSection - -You may only require one or two TapButton options for your own -configuration. For more details see synaptics(4) and - http://who-t.blogspot.com/2009/04/synaptics-11-and-what-your-touchpad-can.html - -Another option is to configure it through hal. An exemple hal policy file is -available : /usr/share/hal/fdi/policy/20thirdparty/11-x11-synaptics.fdi -In order to re-enable tapping, you can put the following contents in -/etc/hal/fdi/policy/11-x11-synaptics.fdi : - - - - - - -1 -2 -3 - - - - - -For the changes to be taken into account, restart hal : - -# /etc/init.d/hal restart - - * On a more general note, the defaults have changed in this version. To -restore the defaults to the old ones, just drop -/usr/share/doc/xserver-xorg-input-synaptics/examples/prehal-defaults.fdi -into -/etc/hal/fdi/policy/11-x11-synaptics.fdi + * Tapping has been disabled by default on many touchpads by upstream, see +the "NOTES" section in the synaptics(4) manpage for a short overview +about how defaults are calculated. +If you want to re-enable it, you can do so from within the X +environment by running the following commands in a terminal: + +$ synclient TapButton1=1 +$ synclient TapButton2=2 +$ synclient TapButton3=3 + +Note that the configuration will not be permanently modified, to do +so assign the above option values in your xorg.conf or custom fdi file +(see the synaptics(4) manpage or the documents in +/usr/share/doc/xserver-xorg-input-synaptics for additional details). +Another alternative is to use desktop environment specific tools +like gpointing-device-settings or touchfreeze. -- David Nusinow Sat, 11 Apr 2009 16:23:11 -0400 diff --git a/debian/patches/02-mention-tapping-in-manpage-notes.patch b/debian/patches/02-mention-tapping-in-manpage-notes.patch new file mode 100644 index 000..3bc96d7 --- /dev/null +++ b/debian/patches/02-mention-tapping-in-manpage-notes.patch @@ -0,0 +1,16 @@ +Mention how to enable tapping in the driver manpage + +Index: xserver-xorg-input-synaptics/man/synaptics.man +=== +--- xserver-xorg-input-synaptics.orig/man/synaptics.man2009-05-13 00:14:36.753651106 +0900 xserver-xorg-input-synaptics/man/synaptics.man 2009-05-13 00:27:28.785651827 +0900 +@@ -813,6 +813,9 @@ + vertical scrolling is enabled, horizontal two-finger scrol
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-0.15.1'
Tag 'xf86-input-synaptics-0.15.1' created by Christoph Brill at 2008-09-07 09:40 + xf86-input-synaptics-0.15.1 Changes since xf86-input-synaptics-0.15.0: Adel Gadllah (1): Re-enable TapButtons and CornerButtons to work by default. Christian Schmitt (1): Add support for Apple touchpads to the fdi file Christoph Brill (6): Add .fdi file from gentoo (also used by pld) Fix "make distcheck" Use config.h if available Update man page to contain a paragraph about fdi files Add a note on how to pass options to the driver using the fdi file Bump to 0.15.1 Fedor P. Goncharov (1): Add autodetection of right scroll wheel region with very large X coordinate Henrik Rydberg (4): Add bcm5974 to fdi/11-x11-synaptics.fdi Fix the "No such device" problem when reloading a driver Disentangle two-finger tap and two-finger scrolling Tighter default for MaxTapMove Matthieu Herrb (2): Fix build if we don't enable BUILD_EVENTCOMM. syndaemon: fix BSD-specific build issues (signal related) Mattia Dongili (1): Add 02-scandir-dev-input.patch from Debian Peter Hutterer (6): Move synaptics.h into include/, create synapticsstr.h for private structs. Shut up compiler warning, HandleClickWithFingers should be a void. Fill up version info correctly. Add support for device properties. Compile fixes. Fix build with non-property enabled servers. William Grant (1): Fix two off-by-one errors in the property handling code --- Makefile.am|2 configure.ac |6 fdi/11-x11-synaptics.fdi | 24 + fdi/Makefile.am| 21 + include/Makefile.am| 21 + include/synaptics-properties.h | 142 ++ include/synaptics.h| 156 +++ man/synaptics.man | 15 + src/Makefile.am|7 src/eventcomm.c| 93 +++--- src/properties.c | 550 + src/synaptics.c| 71 - src/synaptics.h| 279 src/synapticsstr.h | 142 ++ tools/Makefile.am |3 tools/syndaemon.c |9 16 files changed, 1194 insertions(+), 347 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-0.15.2'
Tag 'xf86-input-synaptics-0.15.2' created by Christoph Brill at 2008-09-10 18:57 + xf86-input-synaptics-0.15.2 Changes since xf86-input-synaptics-0.15.1: Christoph Brill (1): Bump to 0.15.2 Henrik Rydberg (3): Add sensible fdi default for bcm5974 Optional: Set corner buttons to off by default Do not use stale option list pointers Peter Hutterer (5): Don't crash when neither Path nor Device are given. Don't lose button up event if timeout is cancelled in the same ReadInput cycle Pre-probe the device (eventcomm only). Improve edge autodetection and accel. Claim that we are a XI_TOUCHPAD, not a mouse. --- configure.ac |2 fdi/11-x11-synaptics.fdi | 34 src/alpscomm.c |3 - src/eventcomm.c | 43 --- src/ps2comm.c|3 - src/psmcomm.c|3 - src/synaptics.c | 133 --- src/synapticsstr.h |5 + src/synproto.h |1 9 files changed, 184 insertions(+), 43 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-0.99.2'
Tag 'xf86-input-synaptics-0.99.2' created by Peter Hutterer at 2008-12-04 05:45 + xf86-input-synaptics 0.99.2 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkk3bocACgkQ3RuwF+7s5c4wwACeIGLgj86I6ePdPuAqQqelvpqR 4tYAn1aRiUG3fcIOdYaZOPVELlEqGjjT =/16t -END PGP SIGNATURE- Changes since xf86-input-synaptics-0.99.1: Batchty (2): Ignore moves during tap processing if no finger is down. Stop two-finger scrolling if no finger is present. Fedor P. Goncharov (Fredy) (1): change type of FastTaps option to bool Magnus Kessler (1): Export synapticsModuleData Peter Hutterer (3): fdi: make use of hal's contains_outof matcher to reduce duplication. fdi: only match on input.touchpad, not on various product names. synaptics 1.0 RC 2 --- configure.ac |2 +- fdi/11-x11-synaptics.fdi | 21 + src/synaptics.c | 12 3 files changed, 14 insertions(+), 21 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-1.0.99.2'
Tag 'xf86-input-synaptics-1.0.99.2' created by Peter Hutterer at 2009-02-27 03:18 + synaptics 1.0.99.2 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkmnW5wACgkQ4jt+cLRn8L/oKwCgnFke8kV8la1be/nYPWArZ5TW du0An09cViaBDQ6V/QF8QRK+C2XwGbSu =K9Vd -END PGP SIGNATURE- Changes since xf86-input-synaptics-1.0.99.1: Peter Hutterer (3): synclient: Fix build errors - BOOL isn't always available. synclient: define XATOM_FLOAT if missing from xserver-properties. Bump to 1.0.99.2 --- configure.ac |2 +- tools/synclient.c | 10 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-0.99.1'
Tag 'xf86-input-synaptics-0.99.1' created by Peter Hutterer at 2008-11-14 00:50 + xf86-input-synaptics 0.99.1 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkkcy2wACgkQ3RuwF+7s5c47BgCgkWEskDZOPk1eqruDT/EIDpya /pkAoIgzmE/SHSfY3N8p/4iWSLKchQ+k =eKmD -END PGP SIGNATURE- Changes since xf86-input-synaptics-0.15.2: Andre Herms (1): [syndaemon] use Xrecord extension in syndaemon to avoid polling. Christoph Brill (3): Init x/y valuators with the axis range - if we have any. Revert "[syndaemon] switch over to input properties" Revert "[syndaemon] use Xrecord extension in syndaemon to avoid polling." Dmitry Torokhov (1): Add support for touchpads (such as Elantech) that do not report pressure Henrik Rydberg (11): Introduce SynapticsUnInit Decompose SynapticsPreInit Autoscale also the MaxTapMove parameter ReadDevDimensions on opened device Allow arbitrary ABS ranges Revert "Add sensible fdi default for bcm5974" Improved defaults based on capability detection and auto scaling Corrections based on dimension analysis properties: handle checkonly flag. Provide default button emulation also for touchscreens Only respect MaxTapMove when appropriate Magnus Kessler (9): Remove repeater functionality. Clean up control-flow Re-introduce message about unsupported touchpad. Remove unused defines and includes Only include mipointer.h if supporting ancient XInput ABI version [sparse] Fix warnings about using plain integer as NULL pointer [sparse] Fix warnings about non-ANSI function declarations Update .gitignore, ignore pkgconfig .pc files Convert last remaining ErrorF to xf86Msg Peter Hutterer (8): Adjust to new property API. Install synaptics-properties.h in xorg include path, install xorg-synaptics.pc. man: typo fix. man: Document multifinger-scrolling defaults. man: another typo fix. Install header files in xserver's sdk dir. Remove ALPS special options treatment. synaptics 1.0 RC 1 William Grant (2): Return correctly on successful property setting [syndaemon] switch over to input properties --- .gitignore |1 INSTALL |2 Makefile.am |4 configure.ac |6 fdi/11-x11-synaptics.fdi | 34 --- include/Makefile.am |2 man/synaptics.man| 21 +- src/alpscomm.c |2 src/eventcomm.c | 136 +-- src/properties.c | 132 +- src/ps2comm.c|2 src/psmcomm.c|2 src/synaptics.c | 415 ++- src/synapticsstr.h |8 src/synproto.h |2 tools/synclient.c|6 tools/syndaemon.c| 12 - xorg-synaptics.pc.in |6 18 files changed, 426 insertions(+), 367 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-1.0.0'
Tag 'xf86-input-synaptics-1.0.0' created by Peter Hutterer at 2009-02-01 23:45 + xf86-input-synaptics 1.0.0 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkmGNB4ACgkQ4jt+cLRn8L9GIACfbmGfCuDah7sbg4pPJ+qUKOHm wsgAnR1GXPWvNEiyRg71LRvBMxmL2SNB =fHMH -END PGP SIGNATURE- Changes since xf86-input-synaptics-0.99.3: Alan Coopersmith (1): Remove xorgconfig & xorgcfg from See Also list in man page Christoph Brill (1): FDI: Add few examples suggested by Christian Schmitt Peter Hutterer (2): properties: implement float properties. synaptics 1.0 --- configure.ac |2 fdi/11-x11-synaptics.fdi | 22 +- include/synaptics-properties.h |8 +-- man/synaptics.man |2 src/properties.c | 87 +++-- 5 files changed, 102 insertions(+), 19 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-0.99.3'
Tag 'xf86-input-synaptics-0.99.3' created by Peter Hutterer at 2008-12-14 23:40 + xf86-input-synaptics 0.99.3 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAklFmXIACgkQ4jt+cLRn8L8enQCggNSVxM3stb27rCI/Whp+DDuY wusAnjVRFu0jECEuhVNa/+G3KMM+JDkr =dWr7 -END PGP SIGNATURE- Changes since xf86-input-synaptics-0.99.2: Benjamin Close (2): Fix typo preventing psmcomm from being enabled on BSD platforms Use the correct header so psmcomm.h builds again Fedor P. Goncharov (Fredy) (1): Auto-adjust right_edge for touchpads with hardware scroll area. Peter Hutterer (2): Fix compilation issue (opts undeclared) for XINPUT ABI 0. (#18988) synaptics 1.0 RC3 --- configure.ac |4 ++-- man/synaptics.man | 11 +++ src/psmcomm.h |2 +- src/synaptics.c | 38 +++--- 4 files changed, 25 insertions(+), 30 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-1.1.0'
Tag 'xf86-input-synaptics-1.1.0' created by Peter Hutterer at 2009-03-09 01:58 + synaptics 1.1.0 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkm0d7kACgkQ4jt+cLRn8L9HRACgmDJ8twCzkRwXhprAyeK33zhk HaYAn3r8kN8dt5Hr6gc/4X60cb1FDbcs =BjUs -END PGP SIGNATURE- Changes since xf86-input-synaptics-1.0.99.4: Peter Hutterer (3): man: device properties are now supported, should be stated as such. man: remove some pointless ( and ) around "float" options. synaptics 1.1.0 --- configure.ac |2 man/synaptics.man | 317 ++ 2 files changed, 249 insertions(+), 70 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-1.0.99.3'
Tag 'xf86-input-synaptics-1.0.99.3' created by Peter Hutterer at 2009-03-04 06:41 + synaptics 1.0.99.3 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkmuIq0ACgkQ4jt+cLRn8L/v3QCguPV0MjFa20op+gK9pUu+K5ZA cyQAoK7B69l0/87R4U3E7eNYOOtYyoI+ =Mjs/ -END PGP SIGNATURE- Changes since xf86-input-synaptics-1.0.99.2: Peter Hutterer (12): synclient: print an error if we can't find the synaptics device. syndaemon: fix minor typo in --help output. syndaemon: remove enable/disable_touchpad(), use toggle_touchpad instead syndaemon: move shm code into shm_init(). syndaemon: if we wanted XRECORD, but it failed, exit. syndaemon: use device properties unless SHM is requested. syndaemon: disable XRecord by default. synclient: XCloseDisplay doesn't like NULL-pointers. syndaemon: needs XI_LIBS to link now. synclient: don't print driver's package version info. Don't auto-include xorg-server.h in config.h Bump to 1.0.99.3 --- configure.ac |4 - man/syndaemon.man | 15 ++- src/synaptics.c |1 tools/Makefile.am |2 tools/synclient.c |7 + tools/syndaemon.c | 205 -- 6 files changed, 169 insertions(+), 65 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-1.0.99.1'
Tag 'xf86-input-synaptics-1.0.99.1' created by Peter Hutterer at 2009-02-26 22:38 + synaptics 1.0.99.1 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkmnGdoACgkQ4jt+cLRn8L9kOQCfcv+H5l/KT2OV2bhoPRRCOh6o dgEAn25A+nZyzyidzICLNaZY7rq2/fCw =k9+X -END PGP SIGNATURE- Changes since xf86-input-synaptics-0.15.2: Alan Coopersmith (1): Remove xorgconfig & xorgcfg from See Also list in man page Andre Herms (2): [syndaemon] use Xrecord extension in syndaemon to avoid polling. use Xrecord extension for event triggered key event notification Batchty (2): Ignore moves during tap processing if no finger is down. Stop two-finger scrolling if no finger is present. Ben Gamari (1): Add comma after version number in configure.ac Benjamin Close (2): Fix typo preventing psmcomm from being enabled on BSD platforms Use the correct header so psmcomm.h builds again Christoph Brill (4): Init x/y valuators with the axis range - if we have any. Revert "[syndaemon] switch over to input properties" Revert "[syndaemon] use Xrecord extension in syndaemon to avoid polling." FDI: Add few examples suggested by Christian Schmitt Dmitry Torokhov (1): Add support for touchpads (such as Elantech) that do not report pressure Fedor P. Goncharov (Fredy) (2): change type of FastTaps option to bool Auto-adjust right_edge for touchpads with hardware scroll area. Henrik Rydberg (11): Introduce SynapticsUnInit Decompose SynapticsPreInit Autoscale also the MaxTapMove parameter ReadDevDimensions on opened device Allow arbitrary ABS ranges Revert "Add sensible fdi default for bcm5974" Improved defaults based on capability detection and auto scaling Corrections based on dimension analysis properties: handle checkonly flag. Provide default button emulation also for touchscreens Only respect MaxTapMove when appropriate Magnus Kessler (10): Remove repeater functionality. Clean up control-flow Re-introduce message about unsupported touchpad. Remove unused defines and includes Only include mipointer.h if supporting ancient XInput ABI version [sparse] Fix warnings about using plain integer as NULL pointer [sparse] Fix warnings about non-ANSI function declarations Update .gitignore, ignore pkgconfig .pc files Convert last remaining ErrorF to xf86Msg Export synapticsModuleData Marcel Dejean (2): two-finger emulation through fingerWidth change magic numbers to fractions Peter Hutterer (19): Adjust to new property API. Install synaptics-properties.h in xorg include path, install xorg-synaptics.pc. man: typo fix. man: Document multifinger-scrolling defaults. man: another typo fix. Install header files in xserver's sdk dir. Remove ALPS special options treatment. fdi: make use of hal's contains_outof matcher to reduce duplication. fdi: only match on input.touchpad, not on various product names. Fix compilation issue (opts undeclared) for XINPUT ABI 0. (#18988) properties: implement float properties. Bump to 1.0.99. Remove synSetFloatOption, use xf86SetRealOption instead. Remove commented-out sections from configure.ac. synclient: clean up a bit, namespace shm functions. synclient: split shm_set_value into a parse_cmd. synclient: add support for device properties. Remove randr requirement from configure.ac Bump to 1.0.99.1 William Grant (2): Return correctly on successful property setting [syndaemon] switch over to input properties --- .gitignore |1 INSTALL|2 Makefile.am|4 configure.ac | 29 - fdi/11-x11-synaptics.fdi | 73 +--- include/Makefile.am|2 include/synaptics-properties.h | 11 include/synaptics.h|1 man/synaptics.man | 39 +- man/synclient.man | 23 - man/syndaemon.man |5 src/alpscomm.c |2 src/eventcomm.c| 136 +--- src/properties.c | 222 - src/ps2comm.c |2 src/psmcomm.c |2 src/psmcomm.h |2 src/synaptics.c| 492 -- src/synapticsstr.h |8 src/synproto.h |2 tools/Makefile.am |4 tools/synclient.c | 670 - tools/syndaemon.c | 232 +- xorg-synaptics.pc.in |6 24 files changed, 1349 insertions(+), 621 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listm
xserver-xorg-input-synaptics: Changes to 'refs/tags/xf86-input-synaptics-1.0.99.4'
Tag 'xf86-input-synaptics-1.0.99.4' created by Peter Hutterer at 2009-03-05 02:12 + synaptics 1.0.99.4 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkmvNRkACgkQ4jt+cLRn8L9qGQCeJU20LQPCiC3aJ2mnKwbangsX sbMAniBsQx/hOxnjweXZmFQYqYWJisiE =xxNn -END PGP SIGNATURE- Changes since xf86-input-synaptics-1.0.99.3: Peter Hutterer (2): include xorg-server.h from all driver source files. Bump to 1.0.99.4 --- configure.ac |2 +- src/alpscomm.c |1 + src/eventcomm.c |1 + src/properties.c |1 + src/ps2comm.c|1 + src/psmcomm.c|1 + src/synaptics.c |2 +- 7 files changed, 7 insertions(+), 2 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics: Changes to 'refs/tags/xserver-xorg-input-synaptics-1.1.1+git20090510-1'
Tag 'xserver-xorg-input-synaptics-1.1.1+git20090510-1' created by Mattia Dongili at 2009-05-13 14:50 + upload xserver-xorg-input-synaptics-1.1.1~git20090510-1 to unstable Changes since xserver-xorg-input-synaptics-1.1.0-1: Adam Jackson (1): Allocate the timer early so we don't try to malloc it within a sigio handler. David Nusinow (3): Add NEWS.Debian entry about enabling tapping again Add bug closer Fix configuration sample in NEWS based on user feedback Eygene Ryabinkin (1): PS/2 interface: sense multifinger taps on FingerHigh (#21427) Mattia Dongili (13): Merge commit 'upstream/synaptics-1.1-branch' into debian-unstable Use xserver-xorg-core bug reporting script From: Alexandre Rossi Update changelog with bugs closed upstream Remove Suggests for [qk]synaptics Refresh 01-synaptics-dont-grab-if-not-on-current-VT Don't try to include the non-existent upstream NEWS file Make lintian happier Suggest gpointing-device-settings and touchfreeze Remove the fdi example and amend the Debian doc Really refresh 01-synaptics-dont-grab-if-not-on-current-VT.patch Amend NEWS entry about tapping configuration Upload to unstable Peter Hutterer (9): Don't fail when building against server 1.5 synclient: fix 32-bit integer handling on 64 bit machines. synclient: fix 64 bit issues for float properties. Fix typo, missing ":" ps2comm: fix typo in debug statement. man: document left-handed TapButton awkwardness. Only try to free the timer if it's actually there. Add TouchpadModel specifier and scale the edges accordingly. (#21214) If QueryHardware failed, return that failure and clean up. --- configure.ac |7 + debian/NEWS | 20 debian/changelog | 19 debian/compat|2 debian/control |4 debian/copyright |2 debian/patches/01-synaptics-dont-grab-if-not-on-current-VT.patch | 10 +- debian/patches/02-mention-tapping-in-manpage-notes.patch | 16 +++ debian/patches/series|1 debian/xserver-xorg-input-synaptics.README.Debian| 13 ++ debian/xserver-xorg-input-synaptics.docs |1 debian/xserver-xorg-input-synaptics.links|1 man/synaptics.man|6 + src/eventcomm.c | 21 src/ps2comm.c|7 + src/synaptics.c | 43 - src/synapticsstr.h |8 + tools/synclient.c| 46 +++--- tools/syndaemon.c| 12 ++ 19 files changed, 207 insertions(+), 32 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
The Key to Getting and Keeping aa Beautiful Woman is What She Won't Tell You
<>
xserver-xorg-input-citron_2.2.2-1_i386.changes ACCEPTED
Accepted: xserver-xorg-input-citron_2.2.2-1.diff.gz to pool/main/x/xserver-xorg-input-citron/xserver-xorg-input-citron_2.2.2-1.diff.gz xserver-xorg-input-citron_2.2.2-1.dsc to pool/main/x/xserver-xorg-input-citron/xserver-xorg-input-citron_2.2.2-1.dsc xserver-xorg-input-citron_2.2.2-1_i386.deb to pool/main/x/xserver-xorg-input-citron/xserver-xorg-input-citron_2.2.2-1_i386.deb xserver-xorg-input-citron_2.2.2.orig.tar.gz to pool/main/x/xserver-xorg-input-citron/xserver-xorg-input-citron_2.2.2.orig.tar.gz Override entries for your package: xserver-xorg-input-citron_2.2.2-1.dsc - source x11 xserver-xorg-input-citron_2.2.2-1_i386.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.changes ACCEPTED
Accepted: xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz Override entries for your package: xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc - source x11 xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 497523 498299 523946 525473 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
xserver-xorg-video-suncg6_1.1.1-1_sparc.changes ACCEPTED
Accepted: xserver-xorg-video-suncg6_1.1.1-1.diff.gz to pool/main/x/xserver-xorg-video-suncg6/xserver-xorg-video-suncg6_1.1.1-1.diff.gz xserver-xorg-video-suncg6_1.1.1-1.dsc to pool/main/x/xserver-xorg-video-suncg6/xserver-xorg-video-suncg6_1.1.1-1.dsc xserver-xorg-video-suncg6_1.1.1-1_sparc.deb to pool/main/x/xserver-xorg-video-suncg6/xserver-xorg-video-suncg6_1.1.1-1_sparc.deb xserver-xorg-video-suncg6_1.1.1.orig.tar.gz to pool/main/x/xserver-xorg-video-suncg6/xserver-xorg-video-suncg6_1.1.1.orig.tar.gz Override entries for your package: xserver-xorg-video-suncg6_1.1.1-1.dsc - source x11 xserver-xorg-video-suncg6_1.1.1-1_sparc.deb - optional x11 Announcing to debian-devel-chan...@lists.debian.org Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#523581: marked as done (xserver-xorg-input-synaptics: Stops working after upgrading xserver-xorg-core to version 2:1.6.0-1)
Your message dated Wed, 13 May 2009 15:20:12 + with message-id and subject line Bug#497523: fixed in xserver-xorg-input-synaptics 1.1.1~git20090510-1 has caused the Debian Bug report #497523, regarding xserver-xorg-input-synaptics: Stops working after upgrading xserver-xorg-core to version 2:1.6.0-1 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 497523: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497523 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-synaptics Version: 1.1.0-1 Severity: important Aftet upgrading xserver-xorg-core to version 2:1.6.0-1 the synaptics touchpad stopped working. I upgraded xserver-xorg-input-synaptics to version 1.1.0-1, but it doesn't seems to work :S -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (990, 'unstable'), (700, 'testing'), (600, 'stable'), (101, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.28.3 (SMP w/2 CPU cores; PREEMPT) Locale: LANG=en_US.UTF-8, LC_CTYPE=el_GR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xserver-xorg-input-synaptics depends on: ii libc6 2.9-7 GNU C Library: Shared libraries ii libx11-6 2:1.2.1-1 X11 client-side library ii libxi62:1.2.1-2 X11 Input extension library ii xserver-xorg-core 2:1.6.0-1 Xorg X server - core server xserver-xorg-input-synaptics recommends no packages. Versions of packages xserver-xorg-input-synaptics suggests: pn gsynaptics | ksynaptics | qsy (no description available) -- no debconf information --- End Message --- --- Begin Message --- Source: xserver-xorg-input-synaptics Source-Version: 1.1.1~git20090510-1 We believe that the bug you reported is fixed in the latest version of xserver-xorg-input-synaptics, which is due to be installed in the Debian FTP archive: xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 497...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mattia Dongili (supplier of updated xserver-xorg-input-synaptics package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 11 May 2009 23:08:15 +0900 Source: xserver-xorg-input-synaptics Binary: xserver-xorg-input-synaptics Architecture: source amd64 Version: 1.1.1~git20090510-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Mattia Dongili Description: xserver-xorg-input-synaptics - Synaptics TouchPad driver for X.Org server Closes: 497523 498299 523946 525473 Changes: xserver-xorg-input-synaptics (1.1.1~git20090510-1) unstable; urgency=low . [ David Nusinow ] * Add NEWS.Debian entry about enabling tapping again (closes: #497523) . [ Mattia Dongili ] * Link to xserver-xorg reportbug script * Merge current upstream fixes: - Edge calculation fixes bring back vertical scrolling (closes: #523946) - Fix float properties handling on 64bit arches (closes: #525473) * Remove Suggests for [kq]synaptics which are not in the repository anymore (closes: #498299) and suggest gpointing-device-settings (replacement of gsynaptics) and touchfreeze instead * Remove the upstream NEWS file which doesn't exist anymore * Updates to the README.Debian to make sure we mention how to customize the fdi configuration Checksums-Sha1: 021596583d178e6809909936116519f1efa40b41 1638 xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc ddfa14c025d4acb43804e1786876a60baa7c0ec7 80330 xse
Bug#523946: marked as done ([xserver-xorg-input-synaptics] VertScrolling stops working after update to version 1.1.0)
Your message dated Wed, 13 May 2009 15:20:12 + with message-id and subject line Bug#523946: fixed in xserver-xorg-input-synaptics 1.1.1~git20090510-1 has caused the Debian Bug report #523946, regarding [xserver-xorg-input-synaptics] VertScrolling stops working after update to version 1.1.0 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 523946: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523946 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-synaptics Version: 1.1.0-1 Severity: normal --- Please enter the report below this line. --- Hi, after updating to the newest version vertscrolling on my dell mini9 stopps working. HorizontScrolling and Tapping (after enabling per synclient) works without trouble. The relevant parameter from synclient -l are: RightEdge = 5312 VertScrollDelta = 100 VertEdgeScroll = 1 The relevant part from Xorg.0.log are: (II) Module synaptics: vendor="X.Org Foundation" compiled for 1.6.0, module version = 1.1.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 4.0 (II) Synaptics touchpad driver version 1.1.0 (**) Option "Device" "/dev/input/event8" (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472 (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448 (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255 (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0 (II) SynPS/2 Synaptics TouchPad: buttons: left right middle (--) SynPS/2 Synaptics TouchPad touchpad found (**) SynPS/2 Synaptics TouchPad: always reports core events (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD) (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1 (**) SynPS/2 Synaptics TouchPad: (accel) filter chain progression: 2.00 (**) SynPS/2 Synaptics TouchPad: (accel) filter stage 0: 20.00 ms (**) SynPS/2 Synaptics TouchPad: (accel) set acceleration profile 0 (--) SynPS/2 Synaptics TouchPad touchpad found In the xorg.conf are no section belonging to synaptics-Touchpad. The myserios is, in my last session Vertscrolling working for a short time (less than a minute) after setting RightEdge to another value like 5300. But I cant reproduce this at the moment... Any hints? Thanks, Mirko --- System information. --- Architecture: i386 Kernel: Linux 2.6.29-1-686 Debian Release: squeeze/sid 990 unstablewww.debian-multimedia.org 990 unstableftp.de.debian.org 990 unstabledeb.opera.com 101 experimentalftp.debian.org --- Package information. --- Depends (Version) | Installed ===-+-== libc6 (>= 2.2) | 2.9-6 libx11-6| 2:1.2.1-1 libxi6 (>= 2:1.2.0) | 2:1.2.1-2 xserver-xorg-core (>= 2:1.5.99.901) | 2:1.6.0-1 --- End Message --- --- Begin Message --- Source: xserver-xorg-input-synaptics Source-Version: 1.1.1~git20090510-1 We believe that the bug you reported is fixed in the latest version of xserver-xorg-input-synaptics, which is due to be installed in the Debian FTP archive: xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 523...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mattia Dongili (supplier of updated xserver-xorg-input-synaptics package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 11 May 2009 23:08:15 +0900 Source: xserv
Bug#498299: marked as done (xserver-xorg-input-synaptics: suggests removed package ksynaptics)
Your message dated Wed, 13 May 2009 15:20:12 + with message-id and subject line Bug#498299: fixed in xserver-xorg-input-synaptics 1.1.1~git20090510-1 has caused the Debian Bug report #498299, regarding xserver-xorg-input-synaptics: suggests removed package ksynaptics to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 498299: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=498299 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-synaptics Version: 0.14.7~git20070706-3 Severity: minor --- Please enter the report below this line. --- xserver-xorg-input-synaptics sugest ksynaptics or qsynaptics, only gsynaptics is available. Other packages aren't in sid/experimental. --- System information. --- Architecture: amd64 Kernel: Linux 2.6.26-1-amd64 Debian Release: lenny/sid 992 unstablewww.debian-multimedia.org 992 unstableftp.fr.debian.org 991 experimentalftp.debian.org 500 kernel-dists-trunk kernel-archive.buildserver.net --- Package information. --- Depends(Version) | Installed -+-=== libc6 (>= 2.7-1) | 2.7-13 libx11-6 | 2:1.1.4-2 libxext6 | 2:1.0.4-1 xserver-xorg-core (>= 2:1.4) | 2:1.4.2-5 libxi6 | 2:1.1.3-1 --- End Message --- --- Begin Message --- Source: xserver-xorg-input-synaptics Source-Version: 1.1.1~git20090510-1 We believe that the bug you reported is fixed in the latest version of xserver-xorg-input-synaptics, which is due to be installed in the Debian FTP archive: xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 498...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mattia Dongili (supplier of updated xserver-xorg-input-synaptics package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 11 May 2009 23:08:15 +0900 Source: xserver-xorg-input-synaptics Binary: xserver-xorg-input-synaptics Architecture: source amd64 Version: 1.1.1~git20090510-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Mattia Dongili Description: xserver-xorg-input-synaptics - Synaptics TouchPad driver for X.Org server Closes: 497523 498299 523946 525473 Changes: xserver-xorg-input-synaptics (1.1.1~git20090510-1) unstable; urgency=low . [ David Nusinow ] * Add NEWS.Debian entry about enabling tapping again (closes: #497523) . [ Mattia Dongili ] * Link to xserver-xorg reportbug script * Merge current upstream fixes: - Edge calculation fixes bring back vertical scrolling (closes: #523946) - Fix float properties handling on 64bit arches (closes: #525473) * Remove Suggests for [kq]synaptics which are not in the repository anymore (closes: #498299) and suggest gpointing-device-settings (replacement of gsynaptics) and touchfreeze instead * Remove the upstream NEWS file which doesn't exist anymore * Updates to the README.Debian to make sure we mention how to customize the fdi configuration Checksums-Sha1: 021596583d178e6809909936116519f1efa40b41 1638 xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc ddfa14c025d4acb43804e1786876a60baa7c0ec7 80330 xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz 33d0460678062c49f7c1022867b1b4e6e5c2e304 20567 xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz 8f56a77bfbbe1dbbe04ed8b41cf3ab7cdf405ff5 64542 xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb Checksums-Sha256: 113
Bug#513545: marked as done (xserver-xorg-input-synaptics: tapping and scrolling broken, speed too high)
Your message dated Wed, 13 May 2009 15:20:12 + with message-id and subject line Bug#497523: fixed in xserver-xorg-input-synaptics 1.1.1~git20090510-1 has caused the Debian Bug report #497523, regarding xserver-xorg-input-synaptics: tapping and scrolling broken, speed too high to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 497523: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497523 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-synaptics Version: 0.99.3-3.1 Severity: important Hi, after upgrading to the latest packages from experimental, my synaptics touchpad is severly hampered: 1.) vertical scrolling no longer works 2.) tapping no longer work 3.) speed is too high (makes it hard to maneuver) I pulled some patches from the ubuntu package, and no everything is working again. The patches are: 103_enable_cornertapping.patch 104_always_enable_tapping.patch 105_always_enable_multifinger_click.patch 106_always_enable_vert_edge_scroll.patch 107_reduce_cursor_speed.patch (I'm not sure if all of them are needed). FWIW, I ran xinput list props without the patches (attached as props.debian) and with the ubuntu patches applied (attached as props.ubuntu). Cheers, Michael -- System Information: Debian Release: 5.0 APT prefers unstable APT policy: (500, 'unstable'), (300, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.27.13 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 xserver-xorg-input-synaptics depends on: ii libc6 2.7-18 GNU C Library: Shared libraries ii libx11-6 2:1.1.5-2 X11 client-side library ii libxi62:1.2.0-1 X11 Input extension library ii xserver-xorg-core 2:1.5.99.901-2 Xorg X server - core server xserver-xorg-input-synaptics recommends no packages. Versions of packages xserver-xorg-input-synaptics suggests: pn gsynaptics | ksynaptics | qsy (no description available) -- no debconf information Device 'SynPS/2 Synaptics TouchPad': Device Enabled (132): 1 Synaptics Edges (264): 1632, 5312, 1575, 4281 Synaptics Finger (265): 24, 29, 255 Synaptics Tap Time (266): 180 Synaptics Tap Move (267): 221 Synaptics Tap Durations (268): 180, 180, 100 Synaptics Tap FastTap (269):0 Synaptics Middle Button Timeout (270): 75 Synaptics Two-Finger Pressure (271):280 Synaptics Scrolling Distance (272): 100, 100 Synaptics Edge Scrolling (273): 0, 0, 0 Synaptics Two-Finger Scrolling (274): 1, 0 Synaptics Edge Motion Pressure (275): 29, 159 Synaptics Edge Motion Speed (276): 1, 401 Synaptics Edge Motion Always (277): 0 Synaptics Button Scrolling (278): 1, 1 Synaptics Button Scrolling Repeat (279):1, 1 Synaptics Button Scrolling Time (280): 100 Synaptics Off (281):0 Synaptics Guestmouse Off (282): 0 Synaptics Locked Drags (283): 0 Synaptics Locked Drags Timeout (284): 5000 Synaptics Tap Action (285): 0, 0, 0, 0, 0, 0, 0 Synaptics Click Action (286): 1, 1, 1 Synaptics Circular Scrolling (287): 0 Synaptics Circular Scrolling Trigger (288): 0 Synaptics Circular Pad (289): 0 Synaptics Palm Detection (290): 0 Synaptics Palm Dimensions (291):10, 199 Synaptics Pressure Motion (292):29, 159 Synaptics Grab Event Device (293): 1 Device 'SynPS/2 Synaptics TouchPad': Device Enabled (132): 1 Synaptics Edges (264): 1632, 5312, 1575, 4281 Synaptics Finger (265): 24, 29, 255 Synaptics Tap Time (266): 180 Synaptics Tap Move (267): 221 Synaptics Tap Durations (268): 180, 180, 100 Synaptics Tap FastTap (269):0 Synaptics Middle Button Timeout (270): 75 Synaptics Two-Finger Pressure (271):280 Synaptics Scrolling Distance (272): 100, 100 Synaptics Edge Scrolling (273): 1, 0, 0 Synaptics Two-Finger Scrolli
Bug#513875: marked as done (xserver-xorg-input-synaptics: Clicking the track pad no longer generates a click event)
Your message dated Wed, 13 May 2009 15:20:12 + with message-id and subject line Bug#497523: fixed in xserver-xorg-input-synaptics 1.1.1~git20090510-1 has caused the Debian Bug report #497523, regarding xserver-xorg-input-synaptics: Clicking the track pad no longer generates a click event to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 497523: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497523 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-synaptics Version: 0.99.3-3 Severity: normal Clicking the track pad used to be the same as clicking the mouse button. But this is no longer the case, even if I set 'ClickFinger1' to '1'. -- System Information: Debian Release: 5.0 APT prefers testing APT policy: (530, 'testing'), (520, 'unstable'), (400, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages xserver-xorg-input-synaptics depends on: ii libc6 2.7-18 GNU C Library: Shared libraries ii libx11-6 2:1.1.5-2 X11 client-side library ii libxi62:1.1.4-1 X11 Input extension library ii xserver-xorg-core 2:1.5.99.902-1 Xorg X server - core server xserver-xorg-input-synaptics recommends no packages. Versions of packages xserver-xorg-input-synaptics suggests: ii gsynaptics0.9.14-6 configuration tool for Synaptics t -- no debconf information --- End Message --- --- Begin Message --- Source: xserver-xorg-input-synaptics Source-Version: 1.1.1~git20090510-1 We believe that the bug you reported is fixed in the latest version of xserver-xorg-input-synaptics, which is due to be installed in the Debian FTP archive: xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.diff.gz xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510-1_amd64.deb xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz to pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 497...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mattia Dongili (supplier of updated xserver-xorg-input-synaptics package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 11 May 2009 23:08:15 +0900 Source: xserver-xorg-input-synaptics Binary: xserver-xorg-input-synaptics Architecture: source amd64 Version: 1.1.1~git20090510-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Mattia Dongili Description: xserver-xorg-input-synaptics - Synaptics TouchPad driver for X.Org server Closes: 497523 498299 523946 525473 Changes: xserver-xorg-input-synaptics (1.1.1~git20090510-1) unstable; urgency=low . [ David Nusinow ] * Add NEWS.Debian entry about enabling tapping again (closes: #497523) . [ Mattia Dongili ] * Link to xserver-xorg reportbug script * Merge current upstream fixes: - Edge calculation fixes bring back vertical scrolling (closes: #523946) - Fix float properties handling on 64bit arches (closes: #525473) * Remove Suggests for [kq]synaptics which are not in the repository anymore (closes: #498299) and suggest gpointing-device-settings (replacement of gsynaptics) and touchfreeze instead * Remove the upstream NEWS file which doesn't exist anymore * Updates to the README.Debian to make sure we mention how to customize the fdi configuration Checksums-Sha1: 021596583d178e6809909936116519f1efa40b41 1638 xserver-xorg-input-synaptics_1.1.1~git20090510-1.dsc ddfa14c025d4acb43804e1786876a60baa7c0ec7 80330 xserver-xorg-input-synaptics_1.1.1~git20090510.orig.tar.gz 33d0460678062c49f7c1
Bug#525473: marked as done (xserver-xorg-input-synaptics: MaxSpeed stuck at 0)
Your message dated Wed, 13 May 2009 15:20:12 + with message-id and subject line Bug#525473: fixed in xserver-xorg-input-synaptics 1.1.1~git20090510-1 has caused the Debian Bug report #525473, regarding xserver-xorg-input-synaptics: MaxSpeed stuck at 0 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 525473: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525473 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-synaptics Version: 1.1.0-1 Severity: important Since the upgrade to the new version of the synaptics driver, I'm seeing the MaxSpeed and AccelFactor settings not respond correctly. I'm running with HAL disabled, so my settings should come from the commandline and from the xorg.conf. The relevant section of xorg.conf is Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/input/by-path/platform-i8042-serio-1-event-mouse" Option "Protocol" "synaptics" Option "HorizScrollDelta" "60" Option "HorizEdgeScroll" "1" Option "VertEdgeScroll" "1" Option "EmulateMidButtonTime" "0" Option "VertTwoFingerScroll" "0" Option "SHMConfig" "on" Option "RTCornerButton" "4" Option "RBCornerButton" "5" Option "LTCornerButton" "0" Option "LBCornerButton" "0" Option "TapButton2" "0" Option "TapButton3" "0" Option "Emulate3Buttons" "0" Option "MaxSpeed" "1" Option "AccelFactor" "0.5" EndSection When I start up, the cursor is too fast. So I run the following: dko...@smart:~$ synclient -l | grep -E "(\sMaxSpeed|\sMinSpeed|AccelFactor)" MinSpeed= 0.4 MaxSpeed= 0 AccelFactor = 1 dko...@smart:~$ synclient MinSpeed=1 dko...@smart:~$ synclient MaxSpeed=1 dko...@smart:~$ synclient AccelFactor=1 dko...@smart:~$ synclient -l | grep -E "(\sMaxSpeed|\sMinSpeed|AccelFactor)" MinSpeed= 1 MaxSpeed= 0 AccelFactor = 0.2 So at startup, MaxSpeed and AccelFactor do not reflect xorg.conf. Then when I try to change them, AccelFactor and MaxSpeed seem to have a cap of 0.2 and 0 respectively. MinSpeed responds fine, though. After the attempted changes, the cursor becomes too slow with no way to speed it up, because of the just-mentioned limits. Interestingly, if I use xinput instead of synclient to manipulate the settings, the situation is a bit different: dko...@smart:~$ xinput set-float-prop "Synaptics Touchpad" 230 0.3 0.4 0.6 0 dko...@smart:~$ xinput list-props "Synaptics Touchpad" | grep "Move Speed" Synaptics Move Speed (230): 0.30, 0.00, 0.60, 0.00 dko...@smart:~$ synclient -l | grep -E "(\sMaxSpeed|\sMinSpeed|AccelFactor)" MinSpeed= 0.3 MaxSpeed= 0 AccelFactor = 0.6 So unlike synclient, xinput is able to change AccelFactor past 0.2, but MaxSpeed is still stuck at 0. What I would really like to do is to have a high acceleration and an high speed limit so that the cursor is both responsive and accurate. I had settings that worked well in the older version of the synaptics driver, but the new one is currently unable to do what I want. For reference, my version of xinput is dko...@smart:~$ dpkg -l | grep xinput ii xinput 1.4.1-1 Runtime configuration and test of XInput dev -- System Information: Debian Release: squeeze/sid APT prefers oldstable APT policy: (500, 'oldstable'), (500, 'unstable'), (500, 'testing'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.29-1-amd64 (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 xserver-xorg-input-synaptics depends on: ii libc6 2.9-7 GNU C Library: Shared libraries ii libx11-6 2:1.2.1-1 X11 client-side library ii libxi62:1.2.1-2 X11 Input extension library ii xserver-xorg-core 2:1.6.1-1 Xorg X server - core server xserver-xorg-input-synaptics recommends no packages. Versions of packages xserver-xorg-input-synaptics suggests: ii gsynaptics0.9.16-1 configuration tool for Synaptics t ii qsynaptics0.22.0-6.1 Synapt
Bug#497523: marked as done (xserver-xorg-input-synaptic: tapping is not recognized as button pressed)
Your message dated Wed, 13 May 2009 15:20:12 + with message-id and subject line Bug#497523: fixed in xserver-xorg-input-synaptics 1.1.1~git20090510-1 has caused the Debian Bug report #497523, regarding xserver-xorg-input-synaptic: tapping is not recognized as button pressed to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 497523: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497523 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Subject: xserver-xorg-input-synaptic: tapping is not recognized as button pressed Package: xserver-xorg-input-synaptics Version: 0.15.0+git20080820-1 Severity: normal File: xserver-xorg-input-synaptic *** Please type your report below this line *** Dear DDs, the tapping is not recognized as a mouse click. It worked with the version from Sid. Scrolling works though. I attached xorg.conf and Xorg.0.log. What other logs can I provide? Thanks, Paul -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.26-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/dash Versions of packages xserver-xorg-input-synaptics depends on: ii libc6 2.7-13 GNU C Library: Shared libraries ii libx11-6 2:1.1.4-2 X11 client-side library ii libxi62:1.1.3-1 X11 Input extension library ii xserver-xorg-core 2:1.4.99.906-2 Xorg X server - core server xserver-xorg-input-synaptics recommends no packages. Versions of packages xserver-xorg-input-synaptics suggests: pn gsynaptics | ksynaptics | qsy (no description available) -- no debconf information # 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" "pc105" Option "XkbLayout" "de" Option "XkbVariant""nodeadkeys" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "CorePointer" Option "SendCoreEvents""true" Option "Device""/dev/input/mice" Option "Protocol" "auto-dev" Option "HorizEdgeScroll" "1" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" EndSection Section "Device" Identifier "Configured Video Device" EndSection Section "Monitor" Identifier "Configured Monitor" EndSection Section "Screen" Identifier "Default Screen" Monitor "Configured Monitor" DefaultDepth24 SubSection "Display" Depth 24 Virtual 2048 2048 EndSubSection EndSection (WW) Failed to open protocol names file /etc/X11/xserver/protocol.txt This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.4.99.906 (1.5.0 RC 6) Release Date: X Protocol Version 11, Revision 0 Build Operating System: Linux 2.6.26-1-686 i686 Debian Current Operating System: Linux uinonah 2.6.26-1-686 #1 SMP Thu Aug 28 12:00:54 UTC 2008 i686 Build Date: 28 August 2008 12:36:15AM xorg-server 2:1.4.99.906-2 (jcris...@debian.org) 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
Bug#527711: xf86-input-evtouch: FTBFS: evtouch.c:33:25: error: xf86Version.h: No such file or directory
Hi Mattia, I started to look at this as evtouch is one of the few drivers not building against server 1.6, but I'm a bit stuck. Patch 06_xf86-input-evtouch-0.8.7-misc.patch doesn't apply on 0.8.8, http://www.postnuklear.de/xorg-patches/ hasn't been updated in quite a long time. Also debian/copyright confuses me, it says the code is MIT, but somehow upstream has GPL-2 in COPYING, and the above patch says it's GPL as well. Could you clarify this? (debian/copyright also has an outdated upstream url, http://www.conan.de/touchscreen/evtouch.html has the new release) ubuntu has 0.8.8 building on new xserver, so that would probably be worth looking at as well. Thanks, Julien -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528551: xserver-xorg-video-intel: hang on 915GM at startup (Thinkpad X41, KMS)
Package: xserver-xorg-video-intel Version: 2:2.7.1-1 Severity: normal Hello, I enabled KMS using # echo options i915 modeset=1 > /etc/modprobe.d/i915 # reboot (This enables KMS, doesn't it? The log file still reports that EXA is used!?) Now starting X makes screen and keyboard unusable. The screen is just black and enabling CapsLock doesn't work. Here comes a backtrace: #0 0xb7ee2424 in __kernel_vsyscall () #1 0xb7c69c69 in ioctl () from /lib/i686/cmov/libc.so.6 #2 0xb7a68c5d in drmIoctl () from /usr/lib/libdrm.so.2 #3 0xb7a69062 in drmCommandNone () from /usr/lib/libdrm.so.2 #4 0xb79fba4f in I830BlockHandler (i=0, blockData=0x0, pTimeout=0xbfcff5d8, pReadmask=0x81f08c0) at ../../src/i830_driver.c:2659 #5 0x0817809b in AnimCurScreenBlockHandler (screenNum=0, blockData=0x0, pTimeout=0xbfcff5d8, pReadmask=0x81f08c0) at ../../render/animcur.c:222 #6 0x08142828 in compBlockHandler (i=0, blockData=0x0, pTimeout=0xbfcff5d8, pReadmask=0x81f08c0) at ../../composite/compinit.c:158 #7 0x080902d8 in BlockHandler (pTimeout=0xbfcff5d8, pReadmask=0x81f08c0) at ../../dix/dixutils.c:384 #8 0x0812fcf4 in WaitForSomething (pClientsReady=0x8c9fac8) at ../../os/WaitFor.c:215 #9 0x0808c53e in Dispatch () at ../../dix/dispatch.c:367 #10 0x080719dd in main (argc=9, argv=0xbfcff724, envp=Cannot access memory at address 0x6460 ) at ../../dix/main.c:397 Best regards Uwe -- 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 2008-08-18 00:23 /etc/X11/X -> /usr/bin/Xorg -rwxr-xr-x 1 root root 1695356 2009-04-15 13:47 /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 915GM/GMS/910GML Express Graphics Controller (rev 03) /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 1164 2009-04-27 14:33 /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" "pc105" Option "XkbLayout" "de" Option "XkbVariant""nodeadkeys" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" EndSection Section "Device" Identifier "Configured Video Device" #Driver "intel" #Option "MonitorLayout" "CRT,LFP" EndSection Section "Monitor" Identifier "Configured Monitor" EndSection Section "Screen" Identifier "Default Screen" Monitor "Configured Monitor" EndSection Xorg X server log files on system: -rw-r--r-- 1 root root 30456 2009-01-10 11:11 /var/log/Xorg.21.log -rw-r--r-- 1 root root 25016 2009-05-05 21:20 /var/log/Xorg.20.log -rw-r--r-- 1 root root 26542 2009-05-13 17:07 /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.1 Release Date: 2009-4-14 X Protocol Version 11, Revision 0 Build Operating System: Linux 2.6.26-1-amd64 x86_64 Package files: 100 /var/lib/dpkg/status release a=now 500 http://ftp.debian.org sid/main Packages release o=Debian,a=unstable,l=Debian,c=main origin ftp.debian.org Pinned packages: Current Operating System: Linux cassiopeia 2.6.29-2-686 #1 SMP Sun May 3 12:46:00 UTC 2009 i686 Build Date: 15 April 2009 11:46:22AM xorg-server 2:1.6.1-1 (bgog...@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: Wed May 13 17:07:22 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (**) |-->Screen "Default Screen" (0) (**) | |-->Monitor "Configured Monitor" (==) No device specified for screen "Default Scree
Bug#528551: xserver-xorg-video-intel: hang on 915GM at startup (Thinkpad X41, KMS)
Uwe Kleine-König wrote: > Package: xserver-xorg-video-intel > Version: 2:2.7.1-1 > Severity: normal > > Hello, > > I enabled KMS using > > # echo options i915 modeset=1 > /etc/modprobe.d/i915 > # reboot > > (This enables KMS, doesn't it? The log file still reports that EXA is used!?) > KMS needs UXA, so I don't think you have KMS :) And KMS needs i915 to be loaded from initramfs, so it may to be too early to read /etc/modprobe.d/i915 Does it change anything if you don't do the above ? Did Intel 2.7.0 work better ? Brice -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528551: xserver-xorg-video-intel: hang on 915GM at startup (Thinkpad X41, KMS)
Hello Brice, On Wed, May 13, 2009 at 06:38:52PM +0200, Brice Goglin wrote: > Uwe Kleine-König wrote: > > Package: xserver-xorg-video-intel > > Version: 2:2.7.1-1 > > Severity: normal > > > > Hello, > > > > I enabled KMS using > > > > # echo options i915 modeset=1 > /etc/modprobe.d/i915 > > # reboot > > > > (This enables KMS, doesn't it? The log file still reports that EXA is > > used!?) > > > > KMS needs UXA, so I don't think you have KMS :) I already feared that. I tried Option "AccelMethod" "UXA" but (as I expected) that wasn't the problem. How does the driver determine if KMS is available? > And KMS needs i915 to be loaded from initramfs, so it may to be too > early to read /etc/modprobe.d/i915 > > Does it change anything if you don't do the above ? When I comment out the line in /etc/modprobe.d/i915, X starts normally. And I have r...@cassiopeia:~# cat /sys/module/i915/parameters/modeset 1 Both makes me think that /etc/modprobe.d/i915 is early enough, isn't it? > Did Intel 2.7.0 work better ? 2.7.0, 2.7.1 and 2.7.99.1 all behave like that. (That is, it works without modeset=1, and fails with it.) Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions| http://www.pengutronix.de/ | -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#513286: Better support with 1.1.0
Hi! Just a quick note to say that upgrading to 1.1.0 solves my problem. The speed is now fine and scrolling works fine. I have not changed anything on my side and I can use an empty xorg.conf now. Thanks. -- Document your data layouts. - The Elements of Programming Style (Kernighan & Plauger) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528570: With i855GM, xserver-xorg-video-intel tries to load i810 module
Package: xserver-xorg-video-intel Version: 2:2.7.1-1 Severity: normal Hi! intel driver tries to load i810 driver which does no exist. It also happens with previous 2.7.0 version. The simple fix is just to add something like this in xorg.conf : Section "Device" Identifier "i855GME" Driver "intel" EndSection Thanks. -- 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 avr 12 2006 /etc/X11/X -> /usr/bin/Xorg -rwxr-xr-x 1 root root 1695356 avr 15 13:47 /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 82852/855GM Integrated Graphics Device (rev 02) /etc/X11/xorg.conf does not exist. Xorg X server log files on system: -rw--- 1 root root 71642 sep 15 2005 /var/log/Xorg.1.log -rw-r--r-- 1 root root 9066 mai 13 21:38 /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.1 Release Date: 2009-4-14 X Protocol Version 11, Revision 0 Build Operating System: Linux 2.6.26-1-amd64 x86_64 Package files: 100 /var/lib/dpkg/status release a=now 500 http://ftp.debian.org sid/main Packages release o=Debian,a=unstable,l=Debian,c=main origin ftp.debian.org Pinned packages: Current Operating System: Linux zoro 2.6.28.1-zoro.20 #1 Mon Jan 19 14:06:04 CET 2009 i686 Build Date: 15 April 2009 11:46:22AM xorg-server 2:1.6.1-1 (bgog...@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: Wed May 13 21:38:39 2009 (II) Loader magic: 0xe40 (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) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf000/134217728, 0xfeb0/524288, I/O @ 0xdc00/8 (--) PCI: (0...@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe800/134217728, 0xfea8/524288 (II) Scanning /usr/share/xserver-xorg/pci directory for additional PCI ID's supported by the drivers (==) 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 "" (**) | |-->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 "" (**) | |-->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 "" (**) | |-->Device "Builtin Default vesa Device 0" (==) No monitor specified for screen "Builtin Default vesa Screen
Re: console-setup + X = broken console
Julien Cristau writes: > On Mon, May 11, 2009 at 14:38:35 -0500, Adam Majer wrote: >> David Nusinow wrote: >> > Please see http://wiki.debian.org/XStrikeForce/InputHotplugGuide for the >> > rationale and #515214 for more info. >> >> That is great, yet it does nothing for me except change fonts. I've read >> the bug report, and it is just people complaining about Hal and >> console-setup dependencies. >> > If there's no way to tell console-setup to not change fonts, then that > probably can be fixed. That doesn't mean we should drop the dependency. It's already fixed: console-setup (1.33) unstable; urgency=medium [ Colin Watson ] * Remove mention of long-dead devfs (closes: #524765). * Don't load a font if FONTFACE, FONTSIZE, and FONT are all unset. >> Moving these packages to Recommends DOES NOT mean you need to support >> input definitions in xorg.conf! >> > It means that installs without hal and console-setup ought to work. > They don't. I assume you meant that they don't work out of the box? They can certainly be made to work, given configuration. Systems working out of the box by default are nice, but I fail to see why the auto-configuration should be forced onto the administrators. It could be made optional and still kept as default. > So I don't think moving these packages to recommends would > do anyone any good (except for the warm fuzzy feeling for some whiners, > which I'm happy to ignore). Moving hal and console-setup to Recommends would not change anything for a default installation, but would provide a choice for those whiners. It's a win-win. Bjørn -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Processed: notfound 513286 in 1.1.0-1
Processing commands for cont...@bugs.debian.org: > notfound 513286 1.1.0-1 Bug#513286: xserver-xorg-input-synaptics: should convert xorg.conf into hal options on upgrade Bug no longer marked as found in version 1.1.0-1. (By the way, this Bug is currently marked as done.) > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#513286: marked as done (xserver-xorg-input-synaptics: should convert xorg.conf into hal options on upgrade)
Your message dated Wed, 13 May 2009 23:15:25 +0200 with message-id <4a0b386d.1040...@ens-lyon.org> and subject line Re: Bug#513286: Better support with 1.1.0 has caused the Debian Bug report #513286, regarding xserver-xorg-input-synaptics: should convert xorg.conf into hal options on upgrade to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 513286: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513286 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xserver-xorg-input-synaptics Version: 0.99.3-3 Severity: normal Hi! After upgrading to 0.99, my pointer has become slow, tapping is disabled and I cannot scroll anymore. In fact, all configuration put in xorg.conf is ignored. I have found this but get no clue on what to do. I did not modify /usr/share/hal/fdi/policy/20thirdparty/11-x11-synaptics.fdi -- System Information: Debian Release: 5.0 APT prefers unstable APT policy: (990, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.28.1-zoro.20 Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xserver-xorg-input-synaptics depends on: ii libc6 2.7-18 GNU C Library: Shared libraries ii libx11-6 2:1.1.5-2 X11 client-side library ii libxi62:1.1.4-1 X11 Input extension library ii xserver-xorg-core 2:1.5.99.901-2 Xorg X server - core server xserver-xorg-input-synaptics recommends no packages. Versions of packages xserver-xorg-input-synaptics suggests: pn gsynaptics | ksynaptics | qsy (no description available) -- no debconf information --- End Message --- --- Begin Message --- Version: 1.1.0-1 Vincent Bernat wrote: > Hi! > > Just a quick note to say that upgrading to 1.1.0 solves my problem. The > speed is now fine and scrolling works fine. I have not changed anything > on my side and I can use an empty xorg.conf now. > Ok closing, thanks. Brice --- End Message ---
Bug#528608: xdm crashes with a nonexisting homedir, before running pam_mkhomedir
Package: xdm Version: 1:1.1.8-5 Severity: normal xdm reproducibly crashes when the user's home directory does not exist, before actually doing any pam session handling - so that pam_mkhomedir can't take care of the missing homedir. it's easy to reproduce: apt-get install xdm (nothing special, everything out of the box) adduser dummy ... rm -rf /home/dummy cat /etc/pam.d/common-session session optionalpam_mkhomedir.so session requiredpam_unix.so and that's it. you try to login as dummy, the password is accepted, a brief message of "login successful" or the like flashes on the screen, and then the greeter part of xdm sigsegvs, and the main xdm shuts itself and the x server down. fallout in the xdm.log: Thu May 14 15:28:29 2009 xdm info (pid 5504): sourcing /etc/X11/xdm/Xsetup Thu May 14 15:29:06 2009 xdm info (pid 5504): sourcing /etc/X11/xdm/Xstartup Thu May 14 15:29:06 2009 xdm error (pid 5495): display :0 (pid 2816) exited with unexpected status 5504 strace -f -p 5504 (the greeter child of xdm) shows that immediately after the xstartup process finishes, xdm does a stat on the not-yet-existing homedir and sigsegv's straight away. relevant bits from this trace are included here: Process 5504 attached - interrupt to quit ... open("/etc/X11/xdm/Xstartup", O_RDONLY) = 4 close(4)= 0 time(NULL) = 1242278946 stat64("/etc/localtime", {st_mode=S_IFREG|0644, st_size=413, ...}) = 0 stat64("/etc/localtime", {st_mode=S_IFREG|0644, st_size=413, ...}) = 0 write(2, "Thu May 14 15:29:06 2009 xdm info"..., 46) = 46 write(2, "sourcing /etc/X11/xdm/Xstartup\n"..., 31) = 31 clone(Process 5526 attached child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7bcd958) = 5526 [pid 5526] setsid()= 5526 ...lots of xstartup activity... [pid 5526] open("/var/log/lastlog", O_RDWR|O_LARGEFILE) = 3 [pid 5526] _llseek(3, 292584, [292584], SEEK_SET) = 0 [pid 5526] write(3, "\"\254\vJ:0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 292) = 292 [pid 5526] close(3)= 0 [pid 5526] exit_group(0) = ? Process 5504 resumed Process 5526 detached <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 5526 --- SIGCHLD (Child exited) @ 0 (0) --- rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 rt_sigaction(SIGTERM, {0x8053570, [], 0}, {SIG_DFL}, 8) = 0 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 4 _llseek(4, 0, [0], SEEK_CUR)= 0 fstat64(4, {st_mode=S_IFREG|0644, st_size=1196, ...}) = 0 mmap2(NULL, 1196, PROT_READ, MAP_SHARED, 4, 0) = 0xb808a000 _llseek(4, 1196, [1196], SEEK_SET) = 0 munmap(0xb808a000, 1196)= 0 close(4)= 0 stat64("/home/dummy", 0xbfbacda8) = -1 ENOENT (No such file or directory) --- SIGSEGV (Segmentation fault) @ 0 (0) --- Process 5504 detached etch's xdm worked fine in the same environment, and so does lenny's kdm so i'm *absolutely* certain that pam_mkhomedir is not the culprit here. regards az -- System Information: Debian Release: 5.0.1 APT prefers stable APT policy: (990, 'stable'), (980, 'testing'), (970, 'unstable') Architecture: i386 (i686) -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528609: evdev stops certain keys autorepeating
Package: xserver-xorg-input-evdev Version: 1:2.2.2-1 After upgrading all xorg components, using evdev instead of xkb as the keyboard driver breaks the autorepeat on only a few keys. They are (113), (116) and (115) All other keys autorepeat as normal, and these three keys autorepeat as expected when used at the console. This affects both the laptop keyboard, and an external USB keyboard. xorg.conf has had it's old keyboard section commented out so it is all autogenerating. I am using a GB keyboard variant, which xinput detects fine. The only other keys that do not autorepeat on the whole keyboard are ALT, CTRL and SHIFT, as expected. I am running mostly Debian unstable, and have the version of X components as required by the xorg=1:7.4+1 package. -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org