bfb55c7b74
- 90-android.rules -> 90-android-touch-dev.rules - reduce_lzo_compression.patch -> 02_reduce_lzo_compression.patch - mdss_fb_refresh_rate.patch -> 02_mdss_fb_refresh_rate.patch - aeea3592a13bf12861943e44fc48f1f270941f8d.patch -> 00_fix_return_address.patch - gpu-msm-fix-gcc5-compile.patch -> 02_gpu-msm-fix-gcc5-compile.patch - udev-hack.sh -> udev-v4l-hack.sh - Separate udev-v4l-hack.sh from profile.sh
16 lines
381 B
Bash
16 lines
381 B
Bash
#!/bin/sh
|
|
|
|
# Run a few weston demos, because the postmarketos-demos program depends
|
|
# on xwayland for now (Alpine's GTK3 isn't configured for Wayland
|
|
# support yet.)
|
|
if [ $(tty) = "/dev/tty1" ]; then
|
|
(
|
|
sleep 3;
|
|
export XDG_RUNTIME_DIR=/tmp/0-runtime-dir
|
|
weston-smoke &
|
|
weston-simple-damage &
|
|
weston-editor &
|
|
weston-terminal --shell=/usr/bin/htop &
|
|
) > /dev/null &
|
|
fi
|
|
|