File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 44
55. ./terraform.conf
66
7+ if [ " $HWE_KERNEL " = " yes" ]; then
8+ KERNEL_FLAVORS=" amd64-hwe-${BASEVERSION} "
9+ else
10+ KERNEL_FLAVORS=" amd64"
11+ fi
12+
713lb config noauto \
814 --architectures " $ARCH " \
915 --mode debian \
1016 --distribution " $BASECODENAME " \
1117 --parent-distribution " $BASECODENAME " \
1218 --linux-packages " linux-image linux-headers" \
19+ --linux-flavours " $KERNEL_FLAVORS " \
1320 --bootappend-live " boot=live config username=vanilla user-fullname=Vanilla quiet splash bgrt_disable" \
1421 \
1522 --parent-archive-areas " main contrib non-free non-free-firmare" \
1623 --parent-mirror-bootstrap " $MIRROR_URL " \
1724 --parent-mirror-chroot-security " http://deb.debian.org/debian-security" \
1825 --parent-mirror-binary-security " http://deb.debian.org/debian-security" \
19- --parent-mirror-binary " $MIRROR_URL " \
26+ --parent-mirror-binary " https://repo2.vanillaos.org " \
2027 \
2128 --archive-areas " main contrib non-free non-free-firmware" \
2229 --mirror-bootstrap " $MIRROR_URL " \
2330 --mirror-chroot-security " http://deb.debian.org/debian-security" \
2431 --mirror-binary-security " http://deb.debian.org/debian-security" \
25- --mirror-binary " $MIRROR_URL " \
32+ --mirror-binary " https://repo2.vanillaos.org " \
2633 \
2734 --keyring-packages debian-keyring \
2835 --apt-options " --yes --option Acquire::Retries=5 --option Acquire::http::Timeout=100" \
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ NAME="Vanilla OS"
2222# mirror to fetch packages from
2323MIRROR_URL="https://repo2.vanillaos.org"
2424
25+ # use HWE kernel and packages?
26+ HWE="yes"
27+
2528# suffix for generated .iso files
2629OUTPUT_SUFFIX=""
2730
You can’t perform that action at this time.
0 commit comments