diff --git a/auto/config b/auto/config new file mode 100755 index 0000000..8f82ae5 --- /dev/null +++ b/auto/config @@ -0,0 +1,29 @@ +#!/bin/sh + +set -e + +case "$(dpkg --print-architecture)" in + amd64) + _SOURCE="false" + ;; + + i386) + _SOURCE="false" + ;; +esac + +lb config noauto \ + --clean \ + --ignore-system-defaults \ + --mode debian \ + --debian-installer none \ + --linux-packages "linux-image" \ + --source "${_SOURCE}" \ + --bootappend-live "boot=live components quiet splash persistence" \ + -b iso-hybrid \ + --apt-http-proxy http://127.0.0.1:3142 \ + --memtest none \ + -d forky \ + --archive-areas main,non-free-firmware \ + --parent-archive-areas main,non-free-firmware \ + "${@}"