Subversion Repositories livecd

Rev

Rev 331 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 331 Rev 332
Line 568... Line 568...
568
   /usr/sbin/liveinst --text \\\$ks
568
   /usr/sbin/liveinst --text \\\$ks
569
   /sbin/reboot
569
   /sbin/reboot
570
fi
570
fi
571
 
571
 
572
# configure X, allowing user to override xdriver 
572
# configure X, allowing user to override xdriver 
573
# (does not work on SL6 with xorg 7.4)
573
# (does not work in SL6 with xorg 7.4)
574
# if [ -n "\\\$xdriver" ]; then
574
# if [ -n "\\\$xdriver" ]; then
575
#   cat > /etc/X11/xorg.conf.d/00-xdriver.conf <<FOE
575
#   cat > /etc/X11/xorg.conf.d/00-xdriver.conf <<FOE
576
# Section "Device"
576
# Section "Device"
577
#        Identifier      "Videocard0"
577
#        Identifier      "Videocard0"
578
#         Driver  "\\\$xdriver"
578
#        Driver          "\\\$xdriver"
579
# EndSection
579
# EndSection
580
# FOE
580
# FOE
581
# fi
581
# fi
582
 
582
 
583
# configure X, allowing user to override xdriver
583
# configure X, allowing user to override xdriver
584
# (does not work on SL6 because system-config-display is missing)
584
# (does not work in SL6 because system-config-display is missing)
585
if [ -n "\\\$xdriver" ]; then
585
if [ -n "\\\$xdriver" ]; then
586
   exists system-config-display --noui --reconfig --set-depth=24 \\\$xdriver
586
   exists system-config-display --noui --reconfig --set-depth=24 \\\$xdriver
587
fi
587
fi
588
 
588
 
589
# configure keyboard
589
# configure keyboard
-
 
590
# (does not work in SL6 because system-config-keyboard is missing)
590
if [ "\\\$kb" ]; then
591
if [ "\\\$kb" ]; then
591
    exists system-config-keyboard --noui \\\$kb 
592
    exists system-config-keyboard --noui \\\$kb 
592
fi
593
fi
593
 
594
 
594
 
595