Adding debian version 2.0~a1-1.
[live-boot-grml.git] / scripts / live-bottom / 21xvidemode
index 7501448..ac28fad 100755 (executable)
@@ -18,35 +18,38 @@ case "${1}" in
                ;;
 esac
 
-# live-initramfs header
+# live-boot header
 
 if [ -n "${NOXAUTOCONFIG}" ]
 then
        exit 0
 fi
 
+if [ ! -x /root/usr/bin/X ]
+then
+       exit 0
+fi
+
+[ -n "$XVIDEOMODE" ] || exit
+
 . /scripts/live-functions
 
-log_begin_msg "Configuring X kludges"
+log_begin_msg "Configuring X video modes"
 
-# live-initramfs script
+# live-boot script
 
-if [ -n "$XVIDEOMODE" ]
-then
-       mount -n -o bind /sys /root/sys
-       mount -n -o bind /proc /root/proc
-       mount -n -o bind /dev /root/dev
+. /live.vars
 
-chroot /root debconf-communicate -fnoninteractive live-initramfs > /dev/null << EOF
-set xserver-xorg/config/monitor/mode-list ${XVIDEOMODE}
-set xserver-xorg/config/display/modes ${XVIDEOMODE}
-EOF
+if [ "${XVIDEOMODE}" = "auto" ]
+then
+       rm -f /root/etc/X11/Xsession.d/21xvidemode
 
-       chroot /root dexconf
+       exit 0
+fi
 
-       umount /root/sys
-       umount /root/proc
-       umount /root/dev
+if [ -x "$(which xrandr 2>/dev/null)" ]
+then
+       echo "xrandr -s ${XVIDEOMODE} || /bin/true" >> /root/etc/X11/Xsession.d/21xvidemode
 fi
 
 log_end_msg