forked from ValveSoftware/steam-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildroot.sh
executable file
·336 lines (291 loc) · 6.94 KB
/
buildroot.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#!/bin/sh
#
# Create a chroot build environment and run commands in it
# Set up useful variables
distribution=precise # Codename for Ubuntu 12.04 LTS
actions=""
host_arch=$(dpkg --print-architecture)
ARCHITECTURES="i386 amd64"
# Get to the script directory
CWD="$(pwd)"
cd "$(dirname "$0")/buildroot" || exit 2
exit_usage()
{
echo "This script is used to build and run programs in a chroot environment."
echo "With no arguments, it will run a login shell in the chroot."
echo "Usage: $0 [--create|--update|--unmount|--archive|--clean] [--arch=<arch>] [command] [arguments...]" >&2
exit 1
}
while [ "$1" ]; do
case "$1" in
--create|--update|--unmount|--archive|--clean)
actions="$actions $1"
;;
--arch=*)
arch=$(expr "$1" : '[^=]*=\(.*\)')
case "$arch" in
i386|amd64)
;;
*)
echo "Unsupported architecture: $arch, valid values are i386, amd64" >&2
exit 1
;;
esac
;;
-h|--help)
exit_usage
;;
-*)
echo "Unknown command line parameter: $1" >&2
exit_usage
;;
*)
break
;;
esac
shift
done
if [ -z "$arch" ]; then
arch=$host_arch
fi
if [ -z "$actions" ]; then
actions="--shell"
fi
# Set our root directory (but don't create it yet)
root=$arch
check_create()
{
if check_shell || check_update; then
if [ ! -f "pbuilder/$distribution-$arch-base.tgz" ]; then
echo "Missing pbuilder/$distribution-$arch-base.tgz, creating..."
sleep 1
return 0
fi
if [ ! -d "$root" ]; then
echo "Missing $root, creating..."
sleep 1
return 0
fi
fi
case "$actions" in
*--create*)
return 0;;
*)
return 1;;
esac
}
action_create()
{
# Make sure we have the software we need to create the bootstrap
sudo apt-get install ubuntu-dev-tools
# Create the initial bootstrap
bootstrap_archive=pbuilder/$distribution-$arch-base.tgz
if [ ! -f $bootstrap_archive ]; then
if [ "$arch" = "$host_arch" ]; then
pbuilder_archive="$distribution-base.tgz"
else
pbuilder_archive="$distribution-$arch-base.tgz"
fi
if [ ! -f $HOME/pbuilder/$pbuilder_archive ]; then
pbuilder-dist $distribution $arch create --updates-only
fi
mkdir -p pbuilder
cp $HOME/pbuilder/$pbuilder_archive $bootstrap_archive || exit 2
# We need to update the new chroot
actions="$actions --update"
fi
# Create our chroot directory
rm -rf "$root"
mkdir -p "$root"
# Unpack it into our chroot directory
tar xf $bootstrap_archive --exclude=dev -C "$root"
mkdir "$root/dev"
}
extra_mounts()
{
echo "/dev"
echo "/dev/pts"
echo "/sys"
echo "/proc"
echo "/home"
echo "$CWD"
if [ -f mounts ]; then
grep '^/' mounts
fi
}
mount_chroot()
{
extra_mounts | sort | uniq | while read dir; do
mkdir -p "$root/$dir"
sudo mount -o bind "$dir" "$root/$dir"
done
}
unmount_chroot()
{
SUDO_ASKPASS=/bin/false sudo -v -A 2>/dev/null
if [ $? -ne 0 ]; then
echo "Please enter your password to unmount chroot environment"
fi
extra_mounts | sort -r | uniq | while read dir; do
sudo umount "$root/$dir"
done
}
unmount_exit()
{
unmount_chroot
exit 2
}
check_update()
{
case "$actions" in
*--update*)
return 0;;
*)
return 1;;
esac
}
action_update()
{
# Copy in initial content
for file in /etc/passwd /etc/group; do
cp -afv "$file" "$root/$file"
done
cp -afv content/* "$root/"
# Add sources for apt-get
APT_SOURCES="${root}/etc/apt/sources.list"
if ! grep '^deb-src ' "${APT_SOURCES}"; then
grep '^deb ' "${APT_SOURCES}" | sed 's,^deb ,deb-src ,' >>"${APT_SOURCES}"
fi
# If sudo doesn't exist, we'll emulate it with fakeroot
# This is because we don't want the chroot environment to require root
# permissions for anything, in case normal users want to use it.
if [ ! -e "$root/usr/bin/sudo" ]; then
ln -s fakeroot "$root/usr/bin/sudo"
fi
# Run the update script in the chroot environment
trap unmount_exit INT TERM
mount_chroot
sudo chroot --userspec="$(id -u):$(id -g)" "$root" /packages/update.sh
unmount_chroot
trap '' INT TERM
}
check_unmount()
{
case "$actions" in
*--unmount*)
return 0;;
*)
return 1;;
esac
}
action_unmount()
{
unmount_chroot
}
check_shell()
{
case "$actions" in
*--shell*)
return 0;;
*)
return 1;;
esac
}
action_shell()
{
if [ "$*" = "" ]; then
COMMAND="$SHELL -i"
else
COMMAND="$*"
fi
cat >"$root/shell.sh" <<__EOF__
#!/bin/sh
# Make sure LC_ALL is set for the chroot environment
if [ "$LC_ALL" = "" ]; then
export LC_ALL="C"
fi
# This adds the word "buildroot" to the bash prompt
debian_chroot=buildroot-$arch
export debian_chroot
# Try to go the the current directory
path="$CWD"
if [ -d "\$path" ]; then
cd "\$path"
fi
# Run the shell!
$COMMAND
__EOF__
chmod 755 "$root/shell.sh"
# Run a shell in the chroot environment
mount_chroot
sudo chroot --userspec="$(id -u):$(id -g)" "$root" /shell.sh
unmount_chroot
}
check_archive()
{
case "$actions" in
*--archive*)
return 0;;
*)
return 1;;
esac
}
action_archive()
{
for arch in ${ARCHITECTURES}; do
if [ -d "${arch}" ]; then
archive="${distribution}-${arch}-base.tgz"
echo "Creating pbuilder/${archive}"
if [ -e "${arch}/dev/null" ]; then
echo "${arch} dev is still mounted - aborting"
exit 2
fi
if [ -e "${arch}/proc/kcore" ]; then
echo "${arch} proc is still mounted - aborting"
exit 2
fi
# Remove cached data to save space
rm -rf ${arch}/tmp/*
# Leave the cached packages because some of the source packages
# have conflicting build dependencies and we want to be able to
# flip between them without going upstream for updates.
#rm -f ${arch}/var/cache/apt/archives/*.deb
# Create the archive!
(cd ${arch} && tar zcf "../pbuilder/${archive}" *) || exit 3
ls -l "pbuilder/${archive}"
fi
done
}
check_clean()
{
case "$actions" in
*--clean*)
return 0;;
*)
return 1;;
esac
}
action_clean()
{
echo "Removing build root directories for ${ARCHITECTURES}"
rm -rf ${ARCHITECTURES}
}
if check_create; then
action_create
fi
if check_update; then
action_update
fi
if check_unmount; then
action_unmount
fi
if check_shell; then
action_shell $*
fi
if check_archive; then
action_archive
fi
if check_clean; then
action_clean
fi
# vi: ts=4 sw=4 expandtab