2023-09-04 15:30:10 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
lb config noauto \
|
|
|
|
--clean \
|
|
|
|
--cache false \
|
|
|
|
--net-tarball false \
|
|
|
|
--ignore-system-defaults \
|
2023-09-05 15:11:41 +02:00
|
|
|
--distribution bookworm \
|
2023-09-04 15:30:10 +02:00
|
|
|
--binary-images netboot \
|
|
|
|
--mode debian \
|
|
|
|
--backports true \
|
|
|
|
--linux-packages linux-image \
|
2023-09-05 15:11:41 +02:00
|
|
|
--archive-areas "main non-free-firmware contrib non-free" \
|
2023-09-04 15:30:10 +02:00
|
|
|
"${@}"
|