diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2021-01-17 15:05:26 +0000 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2021-01-19 11:33:18 -0500 |
commit | 6fff80e3d5211e708337f0c486c5a3607133ce77 (patch) | |
tree | 9206954c080a5a95bfc4df7f08a9629c8783b41d /setup-xorg-base.in | |
parent | 8beb8f42f4bd33227f7a57193631d5d3a951a8de (diff) | |
download | alpine-conf-6fff80e3d5211e708337f0c486c5a3607133ce77.zip |
setup-xorg-base: install mesa
now that video ddx is not installed, glamor is usually enabled, which
requires mesa (nvidia is not officially supported on alpine). as before,
this is a simple script, so no configuration is provided. users who
don't want udev or mesa should invoke apk manually.
Diffstat (limited to 'setup-xorg-base.in')
-rw-r--r-- | setup-xorg-base.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-xorg-base.in b/setup-xorg-base.in index 65fa1ac..e3a7912 100644 --- a/setup-xorg-base.in +++ b/setup-xorg-base.in @@ -11,6 +11,6 @@ if ! grep -q '^[^#].*/community$' /etc/apk/repositories; then apk update fi -apk add xorg-server xf86-input-libinput eudev "$@" +apk add xorg-server xf86-input-libinput eudev mesa "$@" setup-udev |