More work in progress.
[distorted-chroot] / bin / mkbuildchroot
CommitLineData
e36b4f25
MW
1#! /bin/sh -e
2###
3### Construct a fresh build-chroot base
4###
5### (c) 2018 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the distorted.org.uk chroot maintenance tools.
11###
12### distorted-chroot is free software: you can redistribute it and/or
13### modify it under the terms of the GNU General Public License as
14### published by the Free Software Foundation; either version 2 of the
15### License, or (at your option) any later version.
16###
17### distorted-chroot is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20### General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with distorted-chroot. If not, write to the Free Software
24### Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25### USA.
26
27. state/config.sh # @@@config@@@
28
3e5b03e2
MW
29## Convert the PROXY configuration setting into something that will affect
30## `debootstrap'.
e36b4f25
MW
31case $PROXY in nil) ;; *) http_proxy=$PROXY; export PROXY ;; esac
32
3e5b03e2 33## Parse the command-line.
e36b4f25
MW
34badp=nil forcep=nil
35while getopts "f" opt; do
36 case $opt in
37 f) forcep=t ;;
38 *) badp=t ;;
39 esac
40done
41shift $(( $OPTIND - 1 ))
42case $# in 2) ;; *) badp=t ;; esac
43case $badp in t) echo >&2 "usage: $0 [-f] DIST ARCH"; exit 2 ;; esac
44d=$1 a=$2
45
46case $d-$a in *-*-*) echo >&2 "$0: bad chroot name \`$arg'"; exit 2 ;; esac
47if [ ! -d /dev/$VG/ ]; then echo >&2 "$0: no volume group \`$VG'"; exit 2; fi
48
3e5b03e2
MW
49## Decide whether we need to do special things for installing a foreign
50## architecture.
e36b4f25
MW
51qemup=nil dbsopts=
52for fa in $FOREIGN_ARCHS; do
53 case $fa in
54 "$a")
3e5b03e2
MW
55 qemup=t dbsopts=--foreign
56 eval qarch=\$${a}_QEMUARCH qhost=\$${a}_QEMUHOST
e36b4f25
MW
57 break
58 ;;
59 esac
60done
61
3e5b03e2 62## Construct the logical volume and lay a filesystem onto it.
e36b4f25 63lv=$LVPREFIX$d-$a
3e5b03e2 64mnt=$HERE/mnt/$lv
e36b4f25
MW
65mkdir -p $mnt
66if mountpoint -q $mnt; then umount $mnt; fi
67if [ -b /dev/$VG/$lv ]; then
68 case $forcep in
69 nil) echo >&2 "$0: volume \`$lv' already exists"; exit 2 ;;
70 t) lvremove -f $VG/$lv ;;
71 esac
72fi
73lvcreate --yes $LVSZ -n$lv $VG
74mkfs -j -L$d-$a /dev/$VG/$lv
75mount -orelatime,data=writeback,commit=3600,barrier=0 /dev/$VG/$lv $mnt/
76mkdir -m755 $mnt/fs/
77chmod 750 $mnt/
3e5b03e2
MW
78
79## Install the base system.
80want=$BASE_PACKAGES
81case $qemup in
82 t) want="$want $FOREIGN_BASE_PACKAGES" ;;
83 nil) want="$want $NATIVE_BASE_PACKAGES" ;;
84esac
85pkgs=; for p in $want; do pkgs=${pkgs:+$pkgs,}$p; done
e36b4f25
MW
86eatmydata debootstrap $dbsopts --arch=$a --variant=minbase \
87 --include=$pkgs $d $mnt/fs/ $DEBMIRROR
88
3e5b03e2
MW
89## If this is a cross-installation, then install the necessary `qemu' and
90## complete the installation.
e36b4f25
MW
91case $qemup in
92 t)
93 install $LOCAL/cross/$d-$qhost/QEMU/qemu-$qarch-static \
94 $mnt/fs/usr/bin/
95 chroot $mnt/fs/ /debootstrap/debootstrap --second-stage
96 ln -sf /usr/local.schroot/cross/$d-$qhost/QEMU/qemu-$qarch-static \
97 $mnt/fs/usr/bin/
98 ;;
99esac
100
3e5b03e2
MW
101## Set up `/usr/local'.
102rm -rf $mnt/fs/usr/local/; ln -s local.schroot/$a $mnt/fs/usr/local
e36b4f25 103
3e5b03e2
MW
104## Install the `apt' configuration.
105rm -rf $mnt/fs/etc/apt/apt.conf $mnt/fs/etc/apt/sources.list
106for c in $LOCAL/etc/apt/apt.conf.d/*; do
107 ln -s /usr/local.schroot/${c#$LOCAL/} $mnt/fs/etc/apt/apt.conf.d/
108done
109ln -s /usr/local.schroot/etc/apt/sources.$d $mnt/fs/etc/apt/sources.list
e36b4f25 110
3e5b03e2 111cat >$mnt/fs/etc/apt/apt.conf.d/20arch <<EOF
e36b4f25
MW
112### -*-conf-*-
113
114APT {
115 Architecture "$a";
116};
117EOF
118
3e5b03e2
MW
119## Set up the locale and time zone from the host system.
120cp /etc/locale.gen /etc/timezone $mnt/fs/etc/
121tz=$(cat /etc/timezone); ln -sf /usr/share/zoneinfo/$tz $mnt/fs/etc/localtime
122ln -sf /proc/mounts $mnt/fs/etc/mtab
e36b4f25 123
3e5b03e2 124cp /etc/default/locale $mnt/fs/etc/default/
e36b4f25 125
3e5b03e2
MW
126## Prevent daemons from starting within the chroot.
127cat >$mnt/fs/usr/sbin/policy-rc.d <<EOF
e36b4f25
MW
128#! /bin/sh
129echo >&2 "policy-rc.d: Services disabled by policy."
130exit 101
131EOF
3e5b03e2 132chmod +x $mnt/fs/usr/sbin/policy-rc.d
e36b4f25 133
3e5b03e2
MW
134## Hack the dynamic linker to prefer libraries in `/usr' over `/usr/local'.
135cat >$mnt/fs/etc/ld.so.conf.d/libc.conf <<EOF
e36b4f25
MW
136# libc default configuration
137EOF
3e5b03e2 138cat >$mnt/fs/etc/ld.so.conf.d/zzz-local.conf <<EOF
e36b4f25
MW
139### -*-conf-*-
140### Local hack to make /usr/local/ late.
141/usr/local/lib
142EOF
143
3e5b03e2 144## We're done setting the chroot environment up.
e36b4f25
MW
145umount $mnt/
146
3e5b03e2 147## If this is a foreign architecture then we need to set it up.
e36b4f25
MW
148case $qemup in
149 t)
3e5b03e2
MW
150 ## Keep the chroot's native Qemu out of our way: otherwise we'll stop
151 ## being able to run programs in the chroot. There's a hack here because
152 ## the `--no-rename' option was required in the same version in which is
153 ## was introduced, so there's no single incantation that will work across
154 ## the boundary.
e36b4f25
MW
155 schroot -uroot -csource:$LVPREFIX$d-$a -- eatmydata sh -e -c "
156 if dpkg-divert >/dev/null 2>&1 --no-rename --help
157 then no_rename=--no-rename
158 else no_rename=
159 fi
160
161 dpkg-divert --package install-cross-tools \$no_rename \
3e5b03e2
MW
162 --divert /usr/bin/qemu-$qarch-static.$a --add /usr/bin/qemu-$qarch-static"
163
164 ## Install faster native tools.
e36b4f25 165 $STATE/bin/install-cross-tools $d $a
3e5b03e2
MW
166
167 ## Install `build-essential', which had been delayed from earlier.
168 schroot -uroot -csource:$LVPREFIX$d-$a -- \
169 eatmydata apt-get -y install build-essential
e36b4f25
MW
170 ;;
171esac
172
3e5b03e2 173## Set the chroot's package state up properly.
e36b4f25
MW
174schroot -uroot -csource:$LVPREFIX$d-$a -- eatmydata sh -e -c '
175 apt-get update
176 apt-get -y upgrade
177 locale-gen
178 ldconfig
179 apt-get -y autoremove
180 apt-get clean'
181
182###----- That's all, folks --------------------------------------------------