Weston is the reference implementation of a Wayland compositor, and a useful compositor in its own right. It has various backends that lets it run on Linux kernel modesetting and evdev input as well as under X11. Weston also ships with a few example clients, from simple clients that demonstrate certain aspects of the protocol to more complete clients and a simplistic toolkit.
This package is known to build and work properly using an LFS-8.0 platform.
Download (HTTP): http://wayland.freedesktop.org/releases/weston-1.12.0.tar.xz
Download MD5 sum: 310af6d7f8ba03c3418cec8ad72ea748
Download size: 1.2 MB
Estimated disk space required: 57 MB (with tests)
Estimated build time: 0.5 SBU (with tests)
Cairo-1.14.8, libinput-1.6.1, libjpeg-turbo-1.5.1, libxkbcommon-0.7.1, Mesa-13.0.4 (built with Wayland support), mtdev-1.1.5, Wayland-1.12.0, and wayland-protocols-1.7
GLU-9.0.0 (to build the screensaver client), Linux-PAM-1.3.0 (to build the weston-launch utility), Pango-1.40.3 (to build some demo clients), Systemd-232, Xorg Libraries (to build the X11 backend and X11 compatibility layer) and Xorg-Server-1.19.1 (with Xwayland, runtime - for X11 backwards compatibility)
The weston-launch utility is required if you want to run Weston as a non privileged user.
Colord-1.2.12, Doxygen-1.8.13, Little CMS-2.8, libpng-1.6.28, libva-1.7.3 (for H.264 VAAPI video encoding), libwebp-0.6.0, FreeRDP and libunwind
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/weston
Install Weston by running the following commands:
./configure --prefix=/usr --enable-demo-clients-install && make
To test the results, issue: make check. The tests need to be run from an X Terminal or equivalent.
Now, as the root
user:
make install
--enable-demo-clients-install
: This
switch enables the installation of the demo clients shipped with
Weston.
Consult ./configure --help output for switches needed to prevent configure from looking for some of the recommended dependencies.
To start Weston as a X11 client, from an X terminal, run the following command:
weston
To run it as a DRM compositor, from a TTY, while logged in as a normal user, run the following command:
weston-launch
Note that weston-launch is a wrapper for weston. If you need to pass a parameter to weston while using weston-launch, use the following syntax:
weston-launch -- --backend=fbdev-backend.so
Note the -- between the weston-launch and the
weston parameter
--backend=fbdev-backend.so
.
For list of parameters that you can pass to weston, consult the weston(1) manual page.
To terminate Weston when running as a DRM compositor, use the CTRL+ALT+Backspace combination on your keyboard.
Note that the default backend, DRM, will only run if a KMS driver is present on the system. It will not run in a virtual machine such as VBox or Qemu and on NVidia or AMD hardware with proprietary drivers. On these setups it would be possible to use the FBDEV backend by running the command described above.
Also note that the X11 backend requires a working EGL stack. If you are running hardware that has no 3D support or no EGL stack, you can't run accelerated applications inside Weston. The latest proprietary NVidia driver has the necessary EGL stack needed to run Weston as an X11 client, but it is not officially supported.
The Weston configuration file can be used to configure which modules will be loaded, keyboard layout, display resolution, touchpad behaviour, desktop shell appearance, etc.
To change the keyboard layout inside Weston, add the following to your config file:
[keyboard]
keymap_model=pc105
keymap_layout=de
keymap_variant=euro
keymap_options=grp:alt_shift_toggle
For an explanation of each of the mentioned options, consult the xkeyboard-config(7) manual page.
To change the resolution of the compositor, add the following to your config file:
[output]
name=LVDS1
mode=1366x768
The name can be one of the following:
DRM backend: LVDS1 (Laptop internal panel no.1)
DRM backend: VGA1 (VGA connector no.1)
X11 backend: X1 (X window no.1)
Wayland backend: WL1 (Wayland window no.1)
For more information consult the weston-drm(7) manual page.
To load a Weston module or a shell backend, add the following to your config file:
[core]
modules=xwayland.so
shell=desktop-shell.so
Note that you need to load the xwayland.so
module if you want to use X11
clients inside Weston.
For a detailed list of configuration directives, consult the
weston.ini(5)
manual page or examine the weston.ini
file inside the Weston source directory.
Last updated on 2017-02-21 11:59:18 -0800