]> spindle.queued.net Git - xodist/commitdiff
initchroot: add X config
authorAndres Salomon <dilinger@debian.org>
Tue, 19 Aug 2008 22:01:46 +0000 (18:01 -0400)
committerAndres Salomon <dilinger@debian.org>
Tue, 19 Aug 2008 22:01:46 +0000 (18:01 -0400)
Signed-off-by: Andres Salomon <dilinger@debian.org>
initchroot.sh

index 2caef4b9d0aaa6cbba36d767578f4f376e14c771..322abe4ad6e595af8b2b06618afff574ee370ef4 100755 (executable)
@@ -81,6 +81,29 @@ rm -f ${ROOT_DIR}/${k}
 # install packages
 (chroot ${ROOT_DIR} aptitude install -y `cat package_list`)
 
+# configure X
+cat >${ROOT_DIR}/etc/X11/xorg.conf<<EOF
+# xorg.conf (X.Org X Window System server configuration file)
+
+Section "Monitor"
+       Identifier "Configured Monitor"
+       HorizSync 30-67
+       VertRefresh 48-52
+       DisplaySize 152 114
+       Mode "1200x900"
+               DotClock 57.275
+               HTimings 1200 1208 1216 1240
+               VTimings 900 905 908 912
+               Flags "-HSync" "-VSync"
+       EndMode
+EndSection
+
+Section "Screen"
+       Identifier "Default Screen"
+       Monitor "Configured Monitor"
+EndSection
+EOF
+
 # add default user
 (chroot ${ROOT_DIR} useradd -s /bin/bash ${DEFUSER})
 (chroot ${ROOT_DIR} passwd -d ${DEFUSER})