5404a8fd7d
Thanks, craftyguy! - UI is selectable with `pmbootstrap init`. Currently only 'weston' and 'none' are options. It'll automatically pick up any new `postmarketos-ui-*` packages added at later dates. - splits off weston packages install from postmarketos-base and puts them into postmarketos-ui-weston. Also note that NO weston packages are installed by "pmbootstrap install" by default unless the user selects a ui in the `init` - configuration of weston is now in postmarketos-ui-weston. - the demos have been spun off to `postmarketos-demos`, and `postmarketos-ui-weston` lists this package as a dependency.
30 lines
764 B
Bash
30 lines
764 B
Bash
export DISPLAY=:0
|
|
|
|
. /etc/deviceinfo
|
|
|
|
if test -z "${XDG_RUNTIME_DIR}"; then
|
|
# https://wayland.freedesktop.org/building.html
|
|
export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
|
|
if ! test -d "${XDG_RUNTIME_DIR}"; then
|
|
mkdir "${XDG_RUNTIME_DIR}"
|
|
chmod 0700 "${XDG_RUNTIME_DIR}"
|
|
fi
|
|
|
|
# Weston autostart on tty1 (Autologin on tty1 is enabled in
|
|
# /etc/inittab by postmarketos-base post-install.hook)
|
|
if [ $(tty) = "/dev/tty1" ]; then
|
|
if test -n "${deviceinfo_weston_pixman_type}"; then
|
|
WESTON_OPTS=" --pixman-type=${deviceinfo_weston_pixman_type}"
|
|
fi
|
|
|
|
udevadm trigger
|
|
udevadm settle
|
|
(sleep 2; postmarketos-demos) &
|
|
weston ${WESTON_OPTS} >/tmp/weston.log 2>&1
|
|
|
|
# In case of failure, restart after 1s
|
|
sleep 1
|
|
exit
|
|
fi
|
|
fi
|
|
|