]> spindle.queued.net Git - xodist/blob - configs/debxo-lxde/hooks
debxo: properly drop backports archive.key installation
[xodist] / configs / debxo-lxde / hooks
1 #
2 # Copyright © 2008-2009  Andres Salomon <dilinger@collabora.co.uk>
3 #
4 # This file is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 customize_chroot_hook()
19 {
20         ROOT_DIR="$1"
21
22         # Any customizations that need to be made to the chroot after the base system
23         # has been installed (but prior to custom package installation) should be
24         # put here.  $ROOT_DIR should be prefixed to any paths.
25         
26         mkdir ${ROOT_DIR}/ofw
27
28         # OFW needs this to boot w/ partitions
29         ln -s . ${ROOT_DIR}/boot/boot
30         
31         # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
32         # (see <http://bugs.debian.org/314334>).
33         mkdir ${ROOT_DIR}/var/cache/apt/cache
34         mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
35         # XOs are slow and small; don't use pdiffs, don't install recommends, and
36         # work around lack of mmap.
37 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
38 Acquire::Pdiffs "false";
39 APT::Install-Recommends "false";
40 Dir {
41         Cache "var/cache/apt/" {
42                 srcpkgcache "cache/srcpkgcache.bin";
43                 pkgcache "cache/pkgcache.bin";
44         };
45 };
46 EOF
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         # UBIFS needs this
70         cat >>${ROOT_DIR}/etc/initramfs-tools/modules<<EOF
71 ubi mtd=root
72 EOF
73
74         # install some custom packages that aren't on mirrors.  ugly hack!
75         k="http://lunge.mit.edu/~dilinger/debxo-0.2/ofw-config_0.1_all.deb 
76  http://lunge.mit.edu/~dilinger/debxo-0.6/linux-image-2.6.37-rc1+_2.6.37-rc1+-47_i386.deb"
77         mkdir -p cache
78         for i in $k; do
79                 pkg=$(basename ${i})
80                 wget --continue -O cache/${pkg} ${i}
81                 cp cache/${pkg} ${ROOT_DIR}/${pkg}
82                 (chroot ${ROOT_DIR} dpkg -i /${pkg})
83                 pkgbase=$(echo $pkg | cut -d_ -f1)
84                 echo $pkgbase hold | (chroot ${ROOT_DIR} dpkg --set-selections)
85                 rm -f ${ROOT_DIR}/${pkg}
86         done
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 nodm
97         F=${ROOT_DIR}/etc/default/nodm
98         if [ -f ${F} ]; then
99                 sed --in-place "s/NODM_USER=.*$/NODM_USER=${DEFUSER}/" ${F}
100                 sed --in-place "s/NODM_ENABLED=.*$/NODM_ENABLED=true/" ${F}
101         fi
102
103 }
104
105 cleanup_chroot_hook()
106 {
107         ROOT_DIR="$1"
108
109         # Any customizations that need to be made after the chroot creation is
110         # complete should be put here.  $ROOT_DIR should be prefixed to any
111         # paths.
112
113         umount ${ROOT_DIR}/var/cache/apt/cache
114 }