]> spindle.queued.net Git - xodist/blob - initchroot.sh
README: mention q2e* OFW series should be used
[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 PLIST=gnome.packages
22 MIRROR=http://http.us.debian.org/debian/
23 OTHERMIRROR=
24
25 . functions.sh
26
27 usage()
28 {
29         echo "" 1>&2
30         echo "Usage: $0 [<options>] <root directory>" 1>&2
31         echo "" 1>&2
32         echo "Options:" 1>&2
33         echo "  --distribution <name>     Which distribution to use" 1>&2
34         echo "  --user <user>             Username for default user" 1>&2
35         echo "  --package-list <list>     File containing package list" 1>&2
36         echo "  --mirror <url>            Main Mirror URL prefix" 1>&2
37         echo "  --othermirror <line>      An additional sources.list line" 1>&2
38         echo "" 1>&2
39         exit 1
40 }
41
42 while test $# != 0
43 do
44         case $1 in
45         --distribution)
46                 DIST=$2
47                 shift
48                 if [ -z "${OTHERMIRROR}" ]; then
49                     OTHERMIRROR="deb http://security.debian.org/ ${DIST}/updates main contrib non-free"
50                 fi
51                 ;;
52         --user)
53                 DEFUSER=$2
54                 shift
55                 ;;
56         --package-list)
57                 PLIST=$2
58                 [ -f ${PLIST} ] || {
59                         echo "Error: can't find file '${PLIST}'!" 1>&2
60                         exit 2
61                 }
62                 shift
63                 ;;
64         --mirror)
65                 MIRROR=$2
66                 shift
67                 ;;
68         --othermirror)
69                 OTHERMIRROR=$2
70                 shift
71                 ;;
72         *)
73                 if [ "$#" != "1" ]; then
74                         echo "Unknown option $1" 1>&2
75                         usage
76                 else
77                         ROOT_DIR="$1"
78                 fi
79                 ;;
80         esac
81         shift
82 done
83
84 if [ "$ROOT_DIR" = "" ]; then
85         echo "" 1>&2
86         echo "*** No root directory specified!" 1>&2
87         usage
88 fi
89
90 if [ -d "${ROOT_DIR}" ]; then
91         echo "" 1>&2
92         echo "*** ${ROOT_DIR} already exists!" 1>&2
93         usage
94 fi
95
96 check_for_cmds debootstrap || exit 1
97
98 if [ -z "${OTHERMIRROR}" ]; then
99     OTHERMIRROR="deb http://security.debian.org/ ${DIST}/updates main contrib non-free"
100 fi
101
102 # create chroot
103 debootstrap --arch i386 ${DIST} ${ROOT_DIR} ${MIRROR}
104 mkdir ${ROOT_DIR}/ofw
105 mkdir ${ROOT_DIR}/var/cache/apt/cache
106 chroot_internal_mounts ${ROOT_DIR}
107
108 # allow daemons to be installed without breaking
109 mv ${ROOT_DIR}/sbin/start-stop-daemon ${ROOT_DIR}/sbin/start-stop-daemon.REAL
110 cat >${ROOT_DIR}/sbin/start-stop-daemon<<EOF
111 #!/bin/sh
112 echo
113 echo "Warning: Fake start-stop-daemon called, doing nothing"
114 EOF
115 chmod 755 ${ROOT_DIR}/sbin/start-stop-daemon
116
117 # set up apt (working around #314334)
118 export DEBIAN_FRONTEND=noninteractive
119 export DEBCONF_PRIORITY=critical
120 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
121 Acquire::Pdiffs "false";
122 APT::Install-Recommends "false";
123 Dir {
124         Cache "var/cache/apt/" {
125                 srcpkgcache "cache/srcpkgcache.bin";
126                 pkgcache "cache/pkgcache.bin";
127         };
128 };
129 EOF
130 cat >${ROOT_DIR}/etc/apt/sources.list<<EOF
131 deb ${MIRROR} ${DIST} main contrib non-free
132 ${OTHERMIRROR}
133 EOF
134 (chroot ${ROOT_DIR} aptitude update)
135
136 # set up base system and base packages
137 echo "en_US.UTF-8 UTF-8" >${ROOT_DIR}/etc/locale.gen
138 (chroot ${ROOT_DIR} aptitude install -y `cat base.packages`)
139
140 k="http://lunge.mit.edu/~dilinger/debxo-0.2/initramfs-tools_0.92l.2_all.deb 
141  http://lunge.mit.edu/~dilinger/debxo-0.2/ofw-config_0.1_all.deb 
142  http://lunge.mit.edu/~dilinger/debxo-0.2/linux-2.6.25.15_2.6.25.15-144_i386.deb"
143 mkdir -p cache
144 for i in $k; do
145         pkg=$(basename ${i})
146         wget --continue -O cache/${pkg} ${i}
147         cp cache/${pkg} ${ROOT_DIR}/${pkg} 
148         (chroot ${ROOT_DIR} dpkg -i /${pkg})
149         rm -f ${ROOT_DIR}/${pkg}
150 done
151
152 # ensure certain modules get loaded during boot
153 cat >>${ROOT_DIR}/etc/modules<<EOF
154 lxfb
155 fbcon
156 olpc_dcon
157 scx200_acb
158 i8042
159 EOF
160
161 echo "debxo" > ${ROOT_DIR}/etc/hostname
162 cat >${ROOT_DIR}/etc/hosts<<EOF
163 127.0.0.1 localhost.localdomain localhost
164 127.0.0.1 debxo
165
166 # The following lines are desirable for IPv6 capable hosts
167 ::1     ip6-localhost ip6-loopback
168 fe00::0 ip6-localnet
169 ff00::0 ip6-mcastprefix
170 ff02::1 ip6-allnodes
171 ff02::2 ip6-allrouters
172 ff02::3 ip6-allhosts
173 EOF
174
175 # install packages
176 (chroot ${ROOT_DIR} aptitude install -y `cat ${PLIST}`)
177
178 # configure X
179 if [ -d ${ROOT_DIR}/etc/X11 ]; then
180     cat >${ROOT_DIR}/etc/X11/xorg.conf<<EOF
181 # xorg.conf (X.Org X Window System server configuration file)
182
183 Section "Monitor"
184         Identifier "Configured Monitor"
185         HorizSync 30-67
186         VertRefresh 48-52
187         DisplaySize 152 114
188         Mode "1200x900"
189                 DotClock 57.275
190                 HTimings 1200 1208 1216 1240
191                 VTimings 900 905 908 912
192                 Flags "-HSync" "-VSync"
193         EndMode
194 EndSection
195
196 Section "Screen"
197         Identifier "Default Screen"
198         Monitor "Configured Monitor"
199 EndSection
200 EOF
201 fi
202
203 # configure kdm, kde
204 if [ -d ${ROOT_DIR}/etc/kde3/kdm ]; then
205     sed --in-place "s/AllowNullPasswd=false/AllowNullPasswd=true/;s/#AutoLoginEnable=true/AutoLoginEnable=true/;s/#AutoLoginUser=fred/AutoLoginUser=${DEFUSER}/" ${ROOT_DIR}/etc/kde3/kdm/kdmrc
206 fi
207
208 # configure gdm, gnome
209 if [ -d ${ROOT_DIR}/etc/gdm ]; then
210     sed -i "s_\[daemon\]_\[daemon\]\n\nGreeter=/usr/lib/gdm/gdmlogin\n\nAutomaticLoginEnable=true\n\nAutomaticLogin=${DEFUSER}_" ${ROOT_DIR}/etc/gdm/gdm.conf
211 fi
212 if [ -d ${ROOT_DIR}/etc/gconf/2 ]; then
213     cat >${ROOT_DIR}/etc/gconf/2/local-defaults.path<<EOF
214 # DebXO defaults (customized for the XO-1's display
215 xml:readonly:/etc/gconf/debxo.xml.defaults
216 EOF
217     mkdir -p ${ROOT_DIR}/etc/gconf/debxo.xml.defaults
218     cp %gconf-tree.xml ${ROOT_DIR}/etc/gconf/debxo.xml.defaults/
219 fi
220
221 # add default user
222 (chroot ${ROOT_DIR} passwd -l root)
223 rm -rf ${ROOT_DIR}/home/*;      # i have no idea what's adding this crap...
224 (chroot ${ROOT_DIR} useradd -s /bin/bash --create-home ${DEFUSER})
225 (chroot ${ROOT_DIR} passwd -d ${DEFUSER})
226 (chroot ${ROOT_DIR} adduser ${DEFUSER} cdrom)
227 (chroot ${ROOT_DIR} adduser ${DEFUSER} audio)
228 (chroot ${ROOT_DIR} adduser ${DEFUSER} video)
229 (chroot ${ROOT_DIR} adduser ${DEFUSER} plugdev)
230 (chroot ${ROOT_DIR} adduser ${DEFUSER} netdev)
231 (chroot ${ROOT_DIR} adduser ${DEFUSER} powerdev)
232 (chroot ${ROOT_DIR} adduser ${DEFUSER} floppy)
233 echo "${DEFUSER} ALL=(ALL) NOPASSWD: ALL" >> ${ROOT_DIR}/etc/sudoers
234
235 # configure sugar
236 if [ -d ${ROOT_DIR}/usr/share/sugar ]; then
237     # #?
238     ln -sf /usr/share/activities/ ${ROOT_DIR}/usr/share/sugar
239     cat >> ${ROOT_DIR}/home/${DEFUSER}/.Xsession <<- EOF
240 matchbox-window-manager -use_titlebar no &
241 sugar
242 EOF
243 fi
244
245 # done, clean up
246 mv ${ROOT_DIR}/sbin/start-stop-daemon.REAL ${ROOT_DIR}/sbin/start-stop-daemon
247 (chroot ${ROOT_DIR} aptitude clean)
248 chroot_internal_umounts ${ROOT_DIR}