blob: 1245b6576834826d3331686567aff478546453fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
lb config noauto \
--architectures armel \
--linux-flavours kirkwood \
--apt-secure true \
--binary-images hdd \
--cache true \
--cache-indices true \
--cache-packages true \
--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 \
"${@}"
|