Find a file
2010-06-08 14:59:44 -04:00
clients Consolidate more code in clients/window.c 2010-06-08 14:59:44 -04:00
spec Add spec document in progress 2010-06-07 12:22:48 -04:00
.gitignore Move clients to subdirectory 2010-06-04 21:46:55 -04:00
70-wayland.rules Update udev rules to work with new udev 2010-06-04 22:23:53 -04:00
cairo-util.c Tweak theme a bit 2009-09-21 13:43:46 -04:00
cairo-util.h Put Wayland under the MIT license. 2008-12-02 15:15:01 -05:00
compositor.c Fix matrix setup in surface_map() 2010-06-08 10:44:38 -04:00
compositor.h Rename wayland-system-compositor back to just compositor 2010-06-04 21:52:02 -04:00
config.mk.in Make compositor compile and port it to new mesa extensions 2010-06-04 22:14:28 -04:00
configure.ac Rename wayland-system-compositor back to just compositor 2010-06-04 21:52:02 -04:00
connection.c Import Eric Anholts hash table implementation 2010-02-26 11:42:59 -05:00
connection.h Import Eric Anholts hash table implementation 2010-02-26 11:42:59 -05:00
evdev.c Rename wayland-system-compositor back to just compositor 2010-06-04 21:52:02 -04:00
event-loop.c Add new event loop api for watching signals 2008-12-19 01:49:22 -05:00
Makefile Add spec document in progress 2010-06-07 12:22:48 -04:00
NOTES Update TODO 2009-09-30 23:14:25 -04:00
README README: Add link to google group. 2008-11-06 10:53:03 -05:00
TODO Update TODO 2009-09-30 23:14:25 -04:00
wayland-client.c Import Eric Anholts hash table implementation 2010-02-26 11:42:59 -05:00
wayland-client.h Implement user_data for surface 2009-09-18 17:05:50 -04:00
wayland-hash.c Import Eric Anholts hash table implementation 2010-02-26 11:42:59 -05:00
wayland-protocol.c Include the currently pressed keys in keyboard focus event. 2009-02-23 22:30:29 -05:00
wayland-protocol.h Add keyboard and pointer focus events. 2009-02-22 21:51:24 -05:00
wayland-server.pc.in Install libraries plus headers and add pkg-config files. 2008-12-10 13:49:28 -05:00
wayland-util.c Import Eric Anholts hash table implementation 2010-02-26 11:42:59 -05:00
wayland-util.h Import Eric Anholts hash table implementation 2010-02-26 11:42:59 -05:00
wayland.c Import Eric Anholts hash table implementation 2010-02-26 11:42:59 -05:00
wayland.h Add function to remove surfaces from client 2009-09-18 17:05:50 -04:00
wayland.pc.in Install libraries plus headers and add pkg-config files. 2008-12-10 13:49:28 -05:00

This file describes how to build and run wayland.  See NOTES for what
wayland is or maybe will be some day.  There's a google group for
wayland/eagle discussion here:

  http://groups.google.com/group/wayland-display-server

Wayland requires the eagle EGL stack available from

  git://people.freedesktop.org/~krh/eagle

and currently assumes that eagle is checked out in a sibling
directory, for example:

  ~krh/src/wayland and
  ~krh/src/eagle

Eagle should work with a recent DRI driver from mesa, but I have mesa
repo with an eagle branch here:

  git://people.freedesktop.org/~krh/mesa

which provides and experimental DRI CopyBuffer extension, that lets
wayland use the DRI driver and the hardware for implementing buffer
swaps.  Eagle needs to be compiled against the dri_interface.h from
this branch to be able to use the CopyBuffer extension.

To run wayland you currently need intel hardware, a kernel with gem
and kernel modesetting, and it is necessary to set a couple of
environment variables.  First, set LD_LIBRARY_PATH:

  export LD_LIBRARY_PATH=$PWD:$PWD/../eagle

Yes, this sucks, but libtool sucks more.  Then to let eagle pick up
the custom dri driver, set

  export EAGLE_DRIVER_PATH=$PWD/../mesa/lib

and finally set up the path to the evdev device to use as a pointer
device:

  export WAYLAND_POINTER=/dev/by-id/whatever-it's-called-event-mouse

If you haven't already, load the i915 driver with modesetting:

  modprobe i915 modeset=1

You may need to unload it first, if it's loaded already.  Also, on
Fedora, there may be a bogus /etc/modprobe.d/i915modeset preventing
the modeset paramater from reaching the module.  Nuke it.

At this point you should be able to launch wayland and a couple of
clients.  Try something like:

  ./wayland &
  ./background <some png/jpg image smaller than 1024x768> &
  ./flower &
  ./flower &
  ./flower &
  ./window &
  ./pointer &

Maybe some day there'll be a script that does all this.  Some day...

And after all this work it may still not work or even oops your
kernel.  It's very much work in progress, so be prepared.

cheers,
Kristian