]> spindle.queued.net Git - xodist/blob - configs/debxo-gnome/hooks
mkchroot: re-add gdm and kdm to gnome and kde images, respectively
[xodist] / configs / debxo-gnome / hooks
1 # Default hooks - copy & customize this for a new image build
2 #
3 # Copyright © 2008-2009  Andres Salomon <dilinger@collabora.co.uk>
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 customize_chroot_hook()
20 {
21         ROOT_DIR="$1"
22
23         # Any customizations that need to be made to the chroot after the base system
24         # has been installed (but prior to custom package installation) should be
25         # put here.  $ROOT_DIR should be prefixed to any paths.
26         
27         mkdir ${ROOT_DIR}/ofw
28         
29         # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
30         # (see <http://bugs.debian.org/314334>).
31         mkdir ${ROOT_DIR}/var/cache/apt/cache
32         mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
33         # XOs are slow and small; don't use pdiffs, don't install recommends, and
34         # work around lack of mmap.
35 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
36 Acquire::Pdiffs "false";
37 APT::Install-Recommends "false";
38 Dir {
39         Cache "var/cache/apt/" {
40                 srcpkgcache "cache/srcpkgcache.bin";
41                 pkgcache "cache/pkgcache.bin";
42         };
43 };
44 EOF
45
46         
47 }
48
49 package_configure_hook()
50 {
51         ROOT_DIR="$1"
52
53         # Any customizations that need to be made after all packages have been
54         # installed should be put here.  $ROOT_DIR should be prefixed to any
55         # paths.
56
57
58         # Ensure certain modules get loaded during boot
59         cat >>${ROOT_DIR}/etc/modules<<EOF
60 lxfb
61 fbcon
62 olpc_dcon
63 scx200_acb
64 i8042
65 olpc_battery
66 msr
67 EOF
68
69         # install some custom packages that aren't on mirrors.  ugly hack!
70         k="http://lunge.mit.edu/~dilinger/debxo-0.2/initramfs-tools_0.92l.2_all.deb 
71  http://lunge.mit.edu/~dilinger/debxo-0.2/ofw-config_0.1_all.deb 
72  http://lunge.mit.edu/~dilinger/debxo-0.4/linux-2.6.25.15_2.6.25.15-165_i386.deb 
73  http://lunge.mit.edu/~dilinger/debxo-0.5/xserver-xorg-video-geode_2.11.0-0.3_i386.deb"
74         mkdir -p cache
75         for i in $k; do
76                 pkg=$(basename ${i})
77                 wget --continue -O cache/${pkg} ${i}
78                 cp cache/${pkg} ${ROOT_DIR}/${pkg}
79                 (chroot ${ROOT_DIR} dpkg -i /${pkg})
80                 pkgbase=$(echo $pkg | cut -d_ -f1)
81                 echo $pkgbase hold | (chroot ${ROOT_DIR} dpkg --set-selections)
82                 rm -f ${ROOT_DIR}/${pkg}
83         done
84
85         # take some packages that are okay to upgrade off hold
86         echo xserver-xorg-video-geode install | (chroot ${ROOT_DIR} dpkg --set-selections)
87
88         # No longer a need for xorg.conf
89         rm -f ${ROOT_DIR}/etc/X11/xorg.conf
90
91         # key bindings/mappings
92         if [ -d ${ROOT_DIR}/usr/share/hal/fdi/information/10freedesktop/ ]; then
93                 cp 30-keymap-olpc.fdi ${ROOT_DIR}/usr/share/hal/fdi/information/10freedesktop/
94         fi
95
96         # configure gnome
97         if [ -d ${ROOT_DIR}/etc/gconf/2 ]; then
98                 cat >${ROOT_DIR}/etc/gconf/2/local-defaults.path<<EOF
99 # DebXO defaults (customized for the XO-1's display
100 xml:readonly:/etc/gconf/debxo.xml.defaults
101 EOF
102                 mkdir -p ${ROOT_DIR}/etc/gconf/debxo.xml.defaults
103                 cp %gconf-tree.xml ${ROOT_DIR}/etc/gconf/debxo.xml.defaults/
104         fi
105
106         # configure gdm
107         if [ -d ${ROOT_DIR}/etc/gdm ]; then
108                 sed -i "s_\[daemon\]_\[daemon\]\n\nGreeter=/usr/lib/gdm/gdmlogin\n\nAutomaticLoginEnable=true\n\nAutomaticLogin=${DEFUSER}_" ${ROOT_DIR}/etc/gdm/gdm.conf
109         fi
110
111 }
112
113 cleanup_chroot_hook()
114 {
115         ROOT_DIR="$1"
116
117         # Any customizations that need to be made after the chroot creation is
118         # complete should be put here.  $ROOT_DIR should be prefixed to any
119         # paths.
120
121         umount ${ROOT_DIR}/var/cache/apt/cache
122 }