aboutsummaryrefslogtreecommitdiffstats
path: root/auto
diff options
context:
space:
mode:
authorficus <ficus@robocracy.org>2012-11-08 13:40:14 -0500
committerficus <ficus@robocracy.org>2012-11-08 13:40:14 -0500
commitec4e9ce9c54c369e110904d83528644beeee1340 (patch)
tree4a114d84d30ce2e728ad75931f023b80faef3f3b /auto
downloadtorouter-live-ec4e9ce9c54c369e110904d83528644beeee1340.tar.gz
torouter-live-ec4e9ce9c54c369e110904d83528644beeee1340.zip
initial almost-untouched debian live configuration
Diffstat (limited to 'auto')
-rwxr-xr-xauto/build3
-rwxr-xr-xauto/clean6
-rwxr-xr-xauto/config19
3 files changed, 28 insertions, 0 deletions
diff --git a/auto/build b/auto/build
new file mode 100755
index 0000000..6d559e8
--- /dev/null
+++ b/auto/build
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+lb build noauto "${@}" 2>&1 | tee build.log
diff --git a/auto/clean b/auto/clean
new file mode 100755
index 0000000..3e24032
--- /dev/null
+++ b/auto/clean
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+lb clean noauto "${@}"
+
+rm -f config/binary config/bootstrap config/chroot config/common config/source
+rm -f build.log
diff --git a/auto/config b/auto/config
new file mode 100755
index 0000000..18c6034
--- /dev/null
+++ b/auto/config
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+lb config noauto \
+ --architecture 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 \
+ --security true \
+ --debian-installer-gui false \
+ --bootstrap-qemu-arch armel \
+ --bootstrap-qemu-static /usr/bin/qemu-arm-static \
+ "${@}"