]> git.siccegge.de Git - forks/vmdebootstrap.git/blob - examples/cubietruck.sh
Create useable fstab for kfreebsd systems
[forks/vmdebootstrap.git] / examples / cubietruck.sh
1 #!/bin/sh
2
3 set -e
4
5 user=`whoami`
6
7 sudo vmdebootstrap \
8 --owner ${user} --verbose \
9 --size 3G \
10 --mirror http://http.debian.net/debian \
11 --log cubietruck.log --log-level debug \
12 --arch armhf \
13 --foreign /usr/bin/qemu-arm-static \
14 --enable-dhcp \
15 --configure-apt \
16 --distribution sid \
17 --serial-console-command "/sbin/getty -L ttyS0 115200 vt100" \
18 --customize "cubietruck-customise.sh" \
19 "$@"