-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-image.sh
executable file
·243 lines (166 loc) · 5.84 KB
/
build-image.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#!/bin/bash
set -eu
help() {
echo "$(basename $0) [--no-debootstrap]"
echo "--no-debootstrap : do not re-run debootstrap"
echo "works with packer 0.7.5"
}
try_mount() {
device=$1
dir=$2
num=${3:-5}
i=0
while [[ $i -lt $num ]] && ! sudo mount $device $dir ; do
i=$((i+1))
sleep 1
done
}
DO_DEBOOTSTRAP="YES"
while [[ $# -gt 0 ]] ; do
case $1 in
--help)
help
exit
;;
--no-debootstrap)
DO_DEBOOTSTRAP="NO"
shift
;;
*)
break
;;
esac
done
mkdir -p livework
cd livework
[[ $DO_DEBOOTSTRAP == "YES" ]] && sudo debootstrap --arch=amd64 jessie chroot http://127.0.0.1:3142/ftp.be.debian.org/debian/
sudo mount none -t proc chroot/proc/
sudo mount none -t sysfs chroot/sys/
sudo mount none -t devpts chroot/dev/pts/
cat<<END_OF_SCRIPT >chroot/tmp/script1.sh
#!/bin/bash
set -eux
export HOME=/root
export PS1="\e[01;31m(live):\W \$ \e[00m"
echo "Acquire::http { Proxy \"http://localhost:3142\"; };"> /etc/apt/apt.conf.d/80-proxy
apt-get install -y --force-yes dialog dbus initramfs-tools aptitude
dbus-uuidgen > /var/lib/dbus/machine-id
wget -q -O - http://multipath-tcp.org/mptcp.gpg.key | apt-key add -
echo "deb http://multipath-tcp.org/repos/apt/debian jessie main" > /etc/apt/sources.list.d/mptcp.list
apt-get update
apt-get install -y --force-yes linux-mptcp iproute --no-install-recommends sudo openssh-server
mkinitramfs -o /boot/initrd-3.14.33.jessiemptcp 3.14.33.jessiemptcp
sed -i -e "s+127.0.0.1:3142/++" /etc/apt/sources.list
rm /etc/apt/apt.conf.d/80-proxy
apt-get update
apt-get clean
rm /var/lib/dbus/machine-id && rm -rf /tmp/*
echo "vagrant:vagrant::::/home/vagrant:/bin/bash" | newusers
cat <<! >/etc/sudoers.d/vagrant
vagrant ALL=(ALL:ALL) NOPASSWD: ALL
!
cat <<! >> /etc/network/interfaces
auto eth0
iface eth0 inet dhcp
!
echo mptcpbox > /etc/hostname
sed -i -e "s/[^-]localhost/ localhost mptcpbox/g" /etc/hosts
END_OF_SCRIPT
chmod +x chroot/tmp/script1.sh
LC_ALL=C sudo chroot chroot /tmp/script1.sh
sudo chroot chroot /etc/init.d/dbus stop
sudo umount chroot/proc chroot/sys chroot/dev/pts
qemu-img create -f raw image.raw 3G
sfdisk --force --unit S image.raw << EOF
63,5462037,L
5462100,829356,S
EOF
sudo kpartx -av image.raw
p1=/dev/mapper/$(sudo kpartx -l image.raw |head -n 1 | awk '{print $1}')
p2=/dev/mapper/$(sudo kpartx -l image.raw |tail -n 1 | awk '{print $1}')
# BUG : sometimes it is not a block??
echo "waiting for $p1 to be available"
while [[ ! -b $p1 ]]; do
printf "."
sleep 1
done
echo "$p1 is now available"
[[ -b $p1 ]] && [[ $p1 == *"loop"* ]] && sudo mkfs.ext3 $p1
[[ -b $p2 ]] && [[ $p2 == *"loop"* ]] && sudo mkswap $p2
sudo mkdir -p /mnt/vbox/p1
##p1=$(sudo losetup -f --show $base_p1)
try_mount $p1 /mnt/vbox/p1
sudo rsync -aXH chroot/ /mnt/vbox/p1/
# umount/remount needed for grub to install correctly....
sudo umount /mnt/vbox/p1
sleep 2
sudo kpartx -d image.raw
# remount
sudo kpartx -av image.raw
p1=/dev/mapper/$(sudo kpartx -l image.raw |head -n 1 | awk '{print $1}')
p2=/dev/mapper/$(sudo kpartx -l image.raw |tail -n 1 | awk '{print $1}')
grub_device=$(sudo kpartx -l image.raw |head -n 1 | awk '{print $5}')
try_mount $p1 /mnt/vbox/p1
sudo mount /dev /mnt/vbox/p1/dev --bind
# extract the root partition's uuid out of the chroot
# and use it to generate script2.sh
root_part=$(sudo blkid -s UUID -o value $p1)
cat <<END_OF_SCRIPT >/mnt/vbox/p1/tmp/script2.sh
#!/bin/bash
set -eux
export HOME=/root
export PS1="\e[01;31m(live):\W \$ \e[00m"
mount -t sysfs sysfs /sys
mount -t proc proc /proc
# avoid grub asking questions
cat << ! | debconf-set-selections -v
grub2 grub2/linux_cmdline select
grub2 grub2/linux_cmdline_default select
grub-pc grub-pc/install_devices_empty boolean true
grub-pc grub-pc/install_devices select $grub_device
!
DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes grub2
cat > /boot/grub/device.map <<EOF
(hd0) $grub_device
EOF
update-grub
sed -i -e "s+root=/dev/mapper/loop0p1+root=UUID=$root_part+g" /boot/grub/grub.cfg
sed -i -e '/set root=(loop1)/d' /boot/grub/grub.cfg
sed -i -e '/loopback loop1 \/mapper\/loop0p1/d' /boot/grub/grub.cfg
sed -i -e "/loop1/d" /boot/grub/grub.cfg
grub-install $grub_device
echo "UUID=$root_part / ext3 defaults 0 1" > /etc/fstab
umount /proc /sys /dev
END_OF_SCRIPT
chmod +x /mnt/vbox/p1/tmp/script2.sh
LC_ALL=C sudo chroot /mnt/vbox/p1/ /tmp/script2.sh
sleep 1
sudo umount /mnt/vbox/p1
sleep 1
sudo kpartx -d image.raw
#sudo qemu-system-x86_64 -hda image.raw
qemu-img convert -f raw -O vdi image.raw image.vdi
VBoxManage createvm --name "boxcreation" --register
VBoxManage modifyvm "boxcreation" --memory 512 --acpi on --boot1 dvd
VBoxManage modifyvm "boxcreation" --nic1 nat # --bridgeadapter1 eth0
VBoxManage modifyvm "boxcreation" --cableconnected1 on
#VBoxManage modifyvm "boxcreation" --macaddress1 XXXXXXXXXXXX
VBoxManage modifyvm "boxcreation" --ostype Debian_64
VBoxManage storagectl "boxcreation" --name "IDE Controller" --add ide
VBoxManage storageattach "boxcreation" --storagectl "IDE Controller" \
--port 0 --device 0 --type hdd --medium image.vdi
#VBoxManage storageattach "boxcreation" --storagectl "IDE Controller" \
# --port 1 --device 0 --type dvddrive --medium /home/rb/Downloads/grml64-full_2014.11.iso
# uncomment to start it with virtualbox:
#VBoxManage startvm boxcreation
rm -f image.ovf image-disk1.vmdk
VBoxManage export "boxcreation" --ovf10 --output image.ovf
tar cf image.ova image.ovf image-disk1.vmdk
# destroy vm:
VBoxManage storageattach "boxcreation" --storagectl "IDE Controller" \
--port 0 --device 0 --type hdd --medium none
VBoxManage storageattach "boxcreation" --storagectl "IDE Controller" \
--port 1 --device 0 --type dvddrive --medium emptydrive
VBoxManage -q storagectl boxcreation --name "IDE Controller" --remove
VBoxManage -q closemedium disk image.vdi
VBoxManage -q unregistervm boxcreation --delete