You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
277 B
11 lines
277 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# don't cripple the image to be copied over
|
||
|
[ -x /usr/sbin/live-install -o -x /usr/sbin/livecd-install ] && exit 0
|
||
|
|
||
|
# no sense in xorg-dri-* without kernel-modules-drm*
|
||
|
stat /lib/modules/*/kernel/drivers/gpu/drm >&/dev/null \
|
||
|
|| rm -rf /usr/lib*/X11/modules/dri/
|
||
|
|
||
|
:
|