mklive: remove modesetting workaround for musl, intel(4) works again.

This commit is contained in:
Juan RP 2015-05-27 16:49:33 +02:00
parent ae8d2e93eb
commit 00dda59b0b
3 changed files with 1 additions and 10 deletions

View File

@ -18,7 +18,7 @@ case "$ARCH" in
esac
readonly BASE_PKGS="dialog cryptsetup lvm2 mdadm $GRUB"
readonly X_PKGS="$BASE_PKGS xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font cantarell-fonts gnome-themes-standard alsa-plugins-pulseaudio firefox"
readonly X_PKGS="$BASE_PKGS xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font cantarell-fonts gnome-themes-standard alsa-plugins-pulseaudio"
readonly E_PKGS="$X_PKGS lxdm enlightenment terminology econnman udisks2"
readonly XFCE_PKGS="$X_PKGS lxdm xfce4 network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2"
readonly MATE_PKGS="$X_PKGS lxdm mate mate-extra network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2"

View File

@ -1,4 +0,0 @@
Section "Device"
Identifier "modesetting"
Driver "modesetting"
EndSection

View File

@ -115,11 +115,6 @@ install_packages() {
else
install -Dm755 /usr/sbin/void-installer $ROOTFS/usr/sbin/void-installer
fi
case "$BASE_ARCH" in
*-musl) # XXX force modesetting with musl for now.
install -Dm644 data/xorg-modesetting.conf $ROOTFS/usr/share/X11/xorg.conf.d/99-modesetting.conf
;;
esac
# Cleanup and remove useless stuff.
rm -rf $ROOTFS/var/cache/* $ROOTFS/run/* $ROOTFS/var/run/*
}