-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig
38 lines (34 loc) · 1.02 KB
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
set -e
lb config noauto \
--mode debian \
--system live \
--interactive shell \
--bootappend-live "boot=live components persistence persistence-encryption=luks console=tty1 console=ttyS0,115200" \
--bootloaders grub-efi \
--binary-image iso-hybrid \
--debian-installer live \
--debian-installer-distribution bullseye \
--distribution bullseye \
--debian-installer-gui true \
--architectures amd64 \
--mirror-bootstrap http://ftp.tw.debian.org/debian/ \
--mirror-chroot http://ftp.tw.debian.org/debian/ \
--mirror-binary http://ftp.tw.debian.org/debian/ \
--mirror-binary-security http://security.debian.org/ \
--mirror-chroot-security http://security.debian.org/ \
--archive-areas 'main contrib non-free' \
--backports true \
--security true \
--updates true \
--source false \
--linux-packages linux-image-5.15.59 \
--linux-flavours amd64 \
--apt-recommends false \
--binary-filesystem ext4 \
--firmware-binary true \
--firmware-chroot true \
--initramfs live-boot \
--iso-publisher manoj \
--iso-volume manoj-0.0.1 \
"${@}"