Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-04 | Include declaration of sparcDriverName() | Tobias Ulmer | |
Fixes segfault on sunffb graphics. ok matthieu@ | |||
2012-10-27 | Regen autotools build system with a clean environment. | Matthieu Herrb | |
It was previously generated with a config pointing to OpenBSD's libtool which is not ready yet. | |||
2012-10-14 | regen | Matthieu Herrb | |
2012-10-08 | Fix bad merge that changed an fcntl() into a priv_open_device(). | Matthieu Herrb | |
Should fix mouse re-open after VT-switch | |||
2012-08-08 | Un-blacklist radeon, blacklist radeonold. So X -configure will now | Matthieu Herrb | |
select the radeon driver. | |||
2012-08-07 | Remove white space diff with X.Org. | Matthieu Herrb | |
2012-08-05 | regen autotools | Matthieu Herrb | |
2012-08-05 | Update to xserver 1.12.3. | Matthieu Herrb | |
2012-06-16 | screenFd -> consoleFd conversions that were missed in xserver 1.12 import. | Matthieu Herrb | |
2012-06-10 | Update to xserver 1.12.2. tested by naddy@, krw@, mpi@. | Matthieu Herrb | |
2012-06-10 | Update to xserver 1.12.2. tested by naddy@, krw@, mpi@. | Matthieu Herrb | |
2012-03-04 | Introduce a black list of drivers for Xorg -configure, and blacklist | Matthieu Herrb | |
all radeon driver variants, except radeonold. This fixes the conflicting symbols warnings seen by Xorg -configure and forces it to use radeonold in the generated xorg.conf file. Xorg -configure is still broken in many ways, and should be avoided. | |||
2012-01-31 | Update to xserver 1.11.4. tested by krw@, shadchin@. | Matthieu Herrb | |
2011-12-18 | Bugfix Update to xserver 1.11.3 | Matthieu Herrb | |
2011-11-05 | Update to xserver 1.11.2 | Matthieu Herrb | |
2011-06-29 | regen | Matthieu Herrb | |
2011-06-29 | Introduce new autoconfiguration code for X input drivers, based on X | Matthieu Herrb | |
hotplug framework.This also takes care of the configuration of the keyboard layout from the wscons layout that was hacked inside the keyboard driver. Tested by many, ok oga@. | |||
2011-04-02 | Update to xserver 1.9.5. Tested by jasper@, ajacoutot@ and krw@ | Matthieu Herrb | |
2011-03-08 | add a new build switch 'XENOCARA_USE_XKEYBOARD_CONFIG' to enable | Matthieu Herrb | |
the use of xkeyboard-config xkb definitions instead of the old xkbdata. This will make testing easier. No changes in default builds. ok shadchin@ | |||
2011-01-28 | Effectively close the AGP device fd in xf86GARTCloseScreen() if it's | Matthieu Herrb | |
different from the consoleFd. Fixes crashes at server reset. "looks good" miod@, oga@. Tested by shadchin@. | |||
2011-01-10 | Call xf86Reconfigure() after readjusting the physical dimensions of the screen | Mark Kettenis | |
based on EDID information. Fixes issues with the mouse getting stuck on dual card setups. Still trying to push this one upstream. ok matthieu@ | |||
2011-01-02 | Repair build of Xorg on hppa | Matthieu Herrb | |
2010-12-21 | Update to xorg-server 1.9.3. Tested by japser@, landry@ and ajacoutot@ | Matthieu Herrb | |
in various configurations. | |||
2010-12-06 | Initialize len before passing it to sysctl(3). | Mark Kettenis | |
ok matthieu@ | |||
2010-12-05 | Upgrade to xorg-server 1.9.2. | Matthieu Herrb | |
Tested by ajacoutot@, krw@, shadchin@ and jasper@ on various configurations including multihead with both zaphod and xrandr. | |||
2010-09-01 | regen (yes lots of files, since util-macros has been updated). | Matthieu Herrb | |
2010-08-31 | Don't even attempt to establish a SIGIO handler for DRI1. | Owain Ainsworth | |
This hasn't been used for a very, very, very long time, (since before OpenBSD had dri support, for example) and it causes segfaults on dri drivers when sigio is disabled. Now we don't need to do context swaps on sigio nor are we trying to do interrupts in userland (thank fuck for that) this function can die the death that I intended it to die about two years ago, may it burn. The kernel support the the sigio ioctl will be removed in a couple of weeks to give people time to update (right now it accepts it, then ignores it). ok kettenis@, matthieu@. | |||
2010-08-29 | Use the KERN_CONSDEV ioctl to figure out what the console device is and | Mark Kettenis | |
attempt to open that first before trying /dev/ttyC[0-7]. This makes X autoconfiguration a tad bit more intuitive on machines with multiple SBus or UPA framebuffers, where wsdisplay0 isn't the console. PCI framebuffers are still busted though. ok matthieu@ | |||
2010-08-28 | Fix autoconfiguration for accelerated drivers on sparc/sparc64. Currently | Mark Kettenis | |
limited to sunffb; others will need to be added to bsd_sbus.c if we start shipping them. ok matthieu@, oga@ | |||
2010-08-18 | Fix autoconfiguration on sparc and sparc64. | Owain Ainsworth | |
The code to add sunffb unconditionally on !solaris for __sparc__ systems is incorrect for openbsd. More specifically, due to interactions between hardware drivers and wsfb in preinit we can't unconditionally add wsfb to the list of fallbacks, so we only add wsfb if no other option was found. Additionally sunffb does not need to be unconditionally added because the bus probing code will find these devices already. So, long story short: make that code chunk conditional on __sparc__ && defined(__linux__) instead. change from !openbsd to __linux__ requested by kettenis@. Tested by at least myself and stsp@. ok matthieu@, kettenis@. | |||
2010-07-31 | Fix X -keepPriv by calling xf86OpenConsole() early enough on architectures | Matthieu Herrb | |
that don't have a separate /dev/xf86. Problem noticed by kettenis@ and krw@ ok kettenis@. | |||
2010-07-27 | Add 4 files missed in xserver 1.8 update. | Matthieu Herrb | |
2010-07-27 | Update to xserver 1.8. Tested by many. Ok oga@, todd@. | Matthieu Herrb | |
2010-04-13 | Add a configure test for newer proto headers and use it to enable | Matthieu Herrb | |
building xserver 1.6 with those headers. ok oga@. | |||
2010-03-30 | #if 0 out the code that listens for /dev/apm events. | Owain Ainsworth | |
A cleaner fix will be forthcoming, but for now this allows the xserver to work nicely with the recent kernel vt-switch-on-suspend changes. ok miod@ | |||
2010-03-15 | Only add wsfb to the list of autoconfigured drivers if no other matches were | Mark Kettenis | |
found. Makes xorg.conf-less X work again on sparc64 and macppc systems with a single display adapter. ok matthieu@, beck@ | |||
2010-02-01 | basic support for mips64el. ok miod@. | Matthieu Herrb | |
2009-12-18 | regen | Matthieu Herrb | |
2009-12-18 | Build hppa support files on OpenBSD (useless for now). | Matthieu Herrb | |
2009-12-18 | Adapt to modular X.Org. | Matthieu Herrb | |
2009-10-31 | Update to server 1.6.5. | Matthieu Herrb | |
2009-10-27 | Replace fbdev by wsfb as fallback driver on arches that support it. | Matthieu Herrb | |
Ok todd@, oga@. | |||
2009-10-06 | Merge intel driver autoconfiguration changes from upstream: | Matthieu Herrb | |
- don't list the dead i810 driver anymore - blacklist the poulsbo chipset which isn't supported by xf86-video-intel. Gives vesa a chance. ok oga@, kettenis@. | |||
2009-09-11 | Don't unconditionnally add a "sunffb" device in autoconfig mode | Matthieu Herrb | |
on OpenBSD. It will be added by sparcDriverName() if a ffb card is present. | |||
2009-09-08 | sparcDeviceName: do not fall back to wsfb if no hw specific driver | Matthieu Herrb | |
was found. This is done in the caller already. While there change to a switch() construct to prepare for potential future drivers addition. | |||
2009-09-06 | update to xserver 1.6.4rc1. Tested by many, ok oga@. | Matthieu Herrb | |
2009-03-28 | provide mem_barrier() definition for amd64 too. from X.Org git. ok oga@ | Matthieu Herrb | |
2009-02-19 | Add code to choose a video driver based on the wscons(4) display type. Makes | Mark Kettenis | |
it possible to run X without a configuration file on (some) sparc64 machines and perhaps other machines that use wscons(4) frame buffers. ok matthieu@ | |||
2009-01-28 | __miscmansuffix -> __miscmansuffix__ | Matthieu Herrb | |
2009-01-28 | OpenBSD still uses old xkb-data, whose default rules are called 'xorg'. | Matthieu Herrb | |
Change kdrive's default configuration too. |