1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/bin/sh
PREREQ=""
DESCRIPTION="Configuring X..."
. /scripts/casper-functions
prereqs()
{
echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
esac
log_begin_msg "$DESCRIPTION"
if [ "$TERM_TYPE" = "serial" ]; then
# Don't bother trying to configure or start X on a serial console
rm -f /etc/rc?.d/S??[gxk]dm
exit 0
fi
mount -n -o bind /sys /root/sys
mount -n -o bind /proc /root/proc
if [ -n "${XDEBCONF}" -a -x /root/usr/sbin/xdebconfigurator ]; then
# xdebconfigurator
chroot /root /usr/sbin/xdebconfigurator
fi
if [ "${BUILD_SYSTEM}" == "Ubuntu" ]; then
chroot /root debconf-communicate -fnoninteractive casper > /dev/null <<EOF
set xserver-xorg/autodetect_keyboard true
fset xserver-xorg/autodetect_keyboard seen true
EOF
else
# d-i code not present, so:
if [ -n "${KOPTIONS}" ]; then
setoptions="set xserver-xorg/config/inputdevice/keyboard/options ${KOPTIONS}"
fi
if [ -n "${KVARIANT}" ]; then
setvariant="set xserver-xorg/config/inputdevice/keyboard/variant ${KVARIANT}"
fi
if [ -n "${KMODEL}" ]; then
setmodel="set xserver-xorg/config/inputdevice/keyboard/model ${KMODEL}"
fi
chroot /root debconf-communicate -fnoninteractive casper > /dev/null <<EOF
set xserver-xorg/config/inputdevice/keyboard/layout ${kbd}
${setvariant}
${setmodel}
${setoptions}
EOF
fi
DEBUG_XORG_PACKAGE=1 DEBUG_XORG_DEBCONF=1 casper-reconfigure /root xserver-xorg
umount /root/sys
umount /root/proc
log_end_msg
|