blob: 7d836d7459a91a4943af7ad83561fea740e1effd (
plain)
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
|
#! /bin/bash
# common modules for pbuilder.
function umountproc () {
if [ "$USEPROC" = "yes" ]; then
echo " -> unmounting proc"
umount "$BUILDPLACE/proc"
fi
}
function mountproc () {
if [ "$USEPROC" = "yes" ]; then
echo " -> mounting proc"
mkdir -p $BUILDPLACE/proc
mount -t proc /proc "$BUILDPLACE/proc"
fi
}
function cleanbuildplace () {
if [ -d "$BUILDPLACE" ]; then
echo cleaning the build env
rm -rf "$BUILDPLACE"
fi;
}
function extractbuildplace () {
# after calling this function, umountproc, and cleanbuildplace
# needs to be called.
cleanbuildplace
echo "building the build env"
echo " -> extracting base.tgz"
mkdir -p "$BUILDPLACE"
(cd "$BUILDPLACE" && tar xfzp "$BASETGZ")
mountproc
mkdir -p "$BUILDPLACE/tmp/buildd"
echo " -> copying local configuration"
for a in passwd hosts hostname resolv.conf; do
cp /etc/$a "$BUILDPLACE/etc/$a";
done
if [ -n "$DISTRIBUTION" ]; then
echo Installing apt-lines
cat > "$BUILDPLACE"/etc/apt/sources.list << EOF
deb $MIRRORSITE $DISTRIBUTION main contrib non-free
deb-src $MIRRORSITE debian $DISTRIBUTION main contrib non-free
EOF
fi
}
#required for some packages to install...
export LANG=C
export LC_ALL=C
|