R-Car/Boards/Yocto-Gen3-CommonFAQ/How to use x11 instead of wayland on R-Car Gen3 Starter Kit

From eLinux.org
Jump to: navigation, search

How to use x11 instead of wayland on R-Car Gen3 Starter Kit

ex.) Yocto 3.21.0

After step 9 of "R-Car/Boards/Yocto-Gen3/v3.21.0#Build_using_manual_steps", refer to the followings.

Case using core-image-sato:

  1. bitbake core-image-sato

Case using core-image-x11:

  1. Add following lines to local.conf
    DISTRO_FEATURES_append = " x11"
  2. bitbake core-image-x11
  3. After booting yocto, matchbox-window-manager starts automatically.

ex.) using twm instead of matchbox

  1. Add following lines to local.conf
    DISTRO_FEATURES_append = " x11"
    IMAGE_INSTALL_append = " twm xterm xclock"
    
  2. bitbake core-image-x11
  3. After booting yocto, execute command "killall matchbox-window-manager; startx" to run twm.