summaryrefslogtreecommitdiff
path: root/precise-armhf-alip-dbg/configure
blob: 02465822dac75c1e1fb9011e31fc7f8a2ad78e3e (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
#!/bin/sh

# (C) 2012 Fathi Boudra <fathi.boudra@linaro.org>

# Create configuration for live-build.

# You need live-build package installed.

set -e

echo "I: create configuration"
export LB_BOOTSTRAP_INCLUDE="apt-transport-https gnupg"
lb config \
 --apt-indices none \
 --architectures armhf \
 --archive-areas 'main universe' \
 --binary-filesystem ext4 \
 --binary-images tar \
 --bootstrap-flavour standard \
 --bootstrap-qemu-arch armhf \
 --bootstrap-qemu-static /usr/bin/qemu-arm-static \
 --cache false \
 --chroot-filesystem none \
 --distribution precise \
 --gzip-options '-9 --rsyncable' \
 --hostname linaro-alip \
 --iso-publisher 'Linaro; http://www.linaro.org/; linaro-dev@lists.linaro.org' \
 --iso-volume 'Linaro precise $(date +%Y%m%d-%H:%M)' \
 --linux-flavours none \
 --linux-packages none \
 --mode ubuntu \
 --security false \
 --system normal \
 --username linaro \
 --volatile false

echo "I: copy customization"
cp -rf customization/* config/

echo "I: done"