]> spindle.queued.net Git - xodist/blob - initchroot.sh
ugh, dumb.
[xodist] / initchroot.sh
1 #!/bin/sh -e
2 #
3 # Copyright © 2008  Andres Salomon <dilinger@queued.net>
4 #
5 # This file is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 DIST=lenny
20 DEFUSER=olpc
21
22 . functions.sh
23
24 usage()
25 {
26         echo "" 1>&2
27         echo "Usage: $0 <root directory>" 1>&2
28         echo "" 1>&2
29         exit 1
30 }
31
32 if [ "$#" != "1" ]; then
33         usage
34 fi
35
36 ROOT_DIR=$1
37
38 if [ -d "${ROOT_DIR}" ]; then
39         echo "" 1>&2
40         echo "*** ${ROOT_DIR} already exists!" 1>&2
41         usage
42 fi
43
44 check_for_cmds debootstrap || exit 1
45
46 # create chroot
47 debootstrap --arch i386 lenny ${ROOT_DIR} http://http.us.debian.org/debian
48 mount -t proc proc ${ROOT_DIR}/proc
49 mount -t devpts devpts ${ROOT_DIR}/dev/pts
50 mkdir ${ROOT_DIR}/ofw
51
52 # allow daemons to be installed without breaking
53 mv ${ROOT_DIR}/sbin/start-stop-daemon ${ROOT_DIR}/sbin/start-stop-daemon.REAL
54 cat >${ROOT_DIR}/sbin/start-stop-daemon<<EOF
55 #!/bin/sh
56 echo
57 echo "Warning: Fake start-stop-daemon called, doing nothing"
58 EOF
59 chmod 755 ${ROOT_DIR}/sbin/start-stop-daemon
60
61 # set up apt
62 export DEBIAN_FRONTEND=noninteractive
63 export DEBCONF_PRIORITY=critical
64 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
65 Acquire::Pdiffs "false";
66 APT::Install-Recommends "false";
67 EOF
68 cat >${ROOT_DIR}/etc/apt/sources.list<<EOF
69 deb http://http.us.debian.org/debian ${DIST} main contrib non-free
70 deb http://security.debian.org/ ${DIST}/updates main contrib non-free
71 EOF
72 (chroot ${ROOT_DIR} aptitude update)
73
74 # set up base system
75 echo "en_US.UTF-8 UTF-8" >${ROOT_DIR}/etc/locale.gen
76 (chroot ${ROOT_DIR} aptitude install -y locales)
77
78 k=$(wget -O- http://queued.mit.edu/~dilinger/builds-master/ | sed -ne 's/.*href="\(.\+\)_i386.deb".*/\1_i386.deb/p' | tail -n1)
79 wget -O ${ROOT_DIR}/${k} http://queued.mit.edu/~dilinger/builds-master/${k}
80 (chroot ${ROOT_DIR} dpkg -i /${k})
81 rm -f ${ROOT_DIR}/${k}
82
83 echo "debxo" > ${ROOT_DIR}/etc/hostname
84 cat >${ROOT_DIR}/etc/hosts<<EOF
85 127.0.0.1 localhost.localdomain localhost
86 127.0.0.1 debxo
87
88 # The following lines are desirable for IPv6 capable hosts
89 ::1     ip6-localhost ip6-loopback
90 fe00::0 ip6-localnet
91 ff00::0 ip6-mcastprefix
92 ff02::1 ip6-allnodes
93 ff02::2 ip6-allrouters
94 ff02::3 ip6-allhosts
95 EOF
96
97 # install packages
98 (chroot ${ROOT_DIR} aptitude install -y `cat package_list`)
99
100 # configure X
101 cat >${ROOT_DIR}/etc/X11/xorg.conf<<EOF
102 # xorg.conf (X.Org X Window System server configuration file)
103
104 Section "Monitor"
105         Identifier "Configured Monitor"
106         HorizSync 30-67
107         VertRefresh 48-52
108         DisplaySize 152 114
109         Mode "1200x900"
110                 DotClock 57.275
111                 HTimings 1200 1208 1216 1240
112                 VTimings 900 905 908 912
113                 Flags "-HSync" "-VSync"
114         EndMode
115 EndSection
116
117 Section "Screen"
118         Identifier "Default Screen"
119         Monitor "Configured Monitor"
120 EndSection
121 EOF
122
123 # configure gdm, gnome
124 sed -i 's_\[daemon\]_\[daemon\]\n\nGreeter=/usr/lib/gdm/gdmlogin\n\nAutomaticLoginEnable=true\n\nAutomaticLogin=olpc_' ${ROOT_DIR}/etc/gdm/gdm.conf
125 cat >${ROOT_DIR}/etc/gconf/2/local-defaults.path<<EOF
126 # DebXO defaults (customized for the XO-1's display
127 xml:readonly:/etc/gconf/debxo.xml.defaults
128 EOF
129 mkdir -p ${ROOT_DIR}/etc/gconf/debxo.xml.defaults
130 cp %gconf-tree.xml ${ROOT_DIR}/etc/gconf/debxo.xml.defaults/
131
132 # add default user
133 (chroot ${ROOT_DIR} passwd -l root)
134 rm -rf ${ROOT_DIR}/home/*;      # i have no idea what's adding this crap...
135 (chroot ${ROOT_DIR} useradd -s /bin/bash --create-home ${DEFUSER})
136 (chroot ${ROOT_DIR} passwd -d ${DEFUSER})
137 (chroot ${ROOT_DIR} adduser ${DEFUSER} cdrom)
138 (chroot ${ROOT_DIR} adduser ${DEFUSER} audio)
139 (chroot ${ROOT_DIR} adduser ${DEFUSER} video)
140 (chroot ${ROOT_DIR} adduser ${DEFUSER} plugdev)
141 (chroot ${ROOT_DIR} adduser ${DEFUSER} netdev)
142 (chroot ${ROOT_DIR} adduser ${DEFUSER} powerdev)
143 echo "${DEFUSER} ALL=(ALL) ALL" >> ${ROOT_DIR}/etc/sudoers
144
145 # done, clean up
146 mv ${ROOT_DIR}/sbin/start-stop-daemon.REAL ${ROOT_DIR}/sbin/start-stop-daemon
147 (chroot ${ROOT_DIR} aptitude clean)
148 umount ${ROOT_DIR}/proc
149 umount ${ROOT_DIR}/dev/pts
150 rm -f ${ROOT_DIR}/var/cache/apt/*.bin