diff options
author | ficus <ficus@robocracy.org> | 2012-11-08 13:40:14 -0500 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-11-08 13:40:14 -0500 |
commit | ec4e9ce9c54c369e110904d83528644beeee1340 (patch) | |
tree | 4a114d84d30ce2e728ad75931f023b80faef3f3b /auto | |
download | torouter-live-ec4e9ce9c54c369e110904d83528644beeee1340.tar.gz torouter-live-ec4e9ce9c54c369e110904d83528644beeee1340.zip |
initial almost-untouched debian live configuration
Diffstat (limited to 'auto')
-rwxr-xr-x | auto/build | 3 | ||||
-rwxr-xr-x | auto/clean | 6 | ||||
-rwxr-xr-x | auto/config | 19 |
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 \ + "${@}" |