First config file
This commit is contained in:
parent
e17408b39a
commit
f861c4b5ae
29
auto/config
Executable file
29
auto/config
Executable file
|
@ -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 \
|
||||||
|
"${@}"
|
Loading…
Reference in a new issue