blob: 95e08eba2b8f0f15ac1542a9bcf48badc1d1e3b9 (
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
|
#!/bin/sh
lb config noauto \
--distribution "torouter" \
--architectures armel \
--linux-flavours kirkwood \
--apt-secure true \
--binary-images hdd \
--cache true \
--cache-indices true \
--cache-packages true \
--parent-mirror-bootstrap http://http.debian.net/debian \
--mirror-bootstrap http://http.debian.net/debian \
--cache-stages rootfs \
--distribution wheezy \
--parent-distribution wheezy \
--binary-filesystem ext3 \
--chroot-filesystem none \
--security true \
--debian-installer-gui false \
--bootstrap-qemu-arch armel \
--bootstrap-qemu-static /usr/bin/qemu-arm-static \
--keyring-packages "debian-archive-keyring deb.torproject.org-keyring" \
--bootappend-live "boot=live config username=torouter" \
"${@}"
# Note: chroot filesystem should be 'squashfs' for final images, 'none' for
# development
# Note: bootappend-live options are ignored when booting from u-boot
|