3 changed files with 41 additions and 0 deletions
@ -0,0 +1,3 @@
|
||||
#!/bin/sh |
||||
|
||||
lb build noauto "${@}" 2>&1 | tee -a dfiso.log |
@ -0,0 +1,8 @@
|
||||
#!/bin/sh |
||||
|
||||
lb clean noauto "$@" |
||||
rm -f config/binary config/bootstrap config/build \ |
||||
config/chroot config/common config/source |
||||
rm -Rf config/packages config/includes config/includes.bootstrap \ |
||||
config/includes.source config/hooks/live |
||||
find config/hooks/ -type l | xargs --no-run-if-empty rm -f |
@ -0,0 +1,30 @@
|
||||
#!/bin/sh |
||||
|
||||
lb config noauto \ |
||||
--mode "debian" \ |
||||
--system "live" \ |
||||
--distribution "bullseye" \ |
||||
--archive-areas "main contrib non-free" \ |
||||
--security "true" \ |
||||
--updates "true" \ |
||||
--backports "false" \ |
||||
--binary-images "iso-hybrid" \ |
||||
--bootloaders "syslinux grub-efi" \ |
||||
--apt-indices "true" \ |
||||
--apt-recommends "true" \ |
||||
--apt-secure "true" \ |
||||
--apt-source-archives "false" \ |
||||
--linux-package "linux-image linux-headers" \ |
||||
--debian-installer "live" \ |
||||
--debian-installer-distribution "bullseye" \ |
||||
--debian-installer-gui "true" \ |
||||
--firmware-binary "true" \ |
||||
--firmware-chroot "true" \ |
||||
--iso-publisher "Projet DFiso; https://dflinux.debian-facile.org; contact@debian-facile.org" \ |
||||
--memtest "none" \ |
||||
--win32-loader "false" \ |
||||
--clean \ |
||||
--debug \ |
||||
--verbose \ |
||||
--source "false" \ |
||||
"${@}" |
Loading…
Reference in new issue