Adding live-initramfs 1.99.2-1.
[live-boot-grml.git] / scripts / live-bottom / 21xvidemode
1 #!/bin/sh
2
3 #set -e
4
5 # initramfs-tools header
6
7 PREREQ=""
8
9 prereqs()
10 {
11         echo "${PREREQ}"
12 }
13
14 case "${1}" in
15         prereqs)
16                 prereqs
17                 exit 0
18                 ;;
19 esac
20
21 # live-initramfs header
22
23 if [ -n "${NOXAUTOCONFIG}" ]
24 then
25         exit 0
26 fi
27
28 . /scripts/live-functions
29
30 log_begin_msg "Configuring X kludges..."
31
32 # live-initramfs script
33
34 if [ -n "$XVIDEOMODE" ]
35 then
36         mount -n -o bind /sys /root/sys
37         mount -n -o bind /proc /root/proc
38         mount -n -o bind /dev /root/dev
39
40 chroot /root debconf-communicate -fnoninteractive live-initramfs > /dev/null << EOF
41 set xserver-xorg/config/monitor/mode-list ${XVIDEOMODE}
42 set xserver-xorg/config/display/modes ${XVIDEOMODE}
43 EOF
44
45         chroot /root dexconf
46
47         umount /root/sys
48         umount /root/proc
49         umount /root/dev
50 fi
51
52 log_end_msg