23 lines
803 B
Bash
Executable File
23 lines
803 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
lb config noauto \
|
|
--mode debian \
|
|
--distribution sid \
|
|
--architectures amd64 \
|
|
--debian-installer false \
|
|
--binary-images iso-hybrid \
|
|
--archive-areas "main contrib non-free non-free-firmware" \
|
|
--mirror-bootstrap "https://repo.rakuos.org/upstream/" \
|
|
--mirror-binary "https://repo.rakuos.org/upstream/" \
|
|
--debootstrap-options "--include=apt-transport-https,ca-certificates,openssl" \
|
|
--firmware-binary true \
|
|
--firmware-chroot true \
|
|
--initramfs live-boot \
|
|
--linux-packages "linux-rakuos" \
|
|
--memtest memtest86+ \
|
|
--bootappend-live "boot=live config splash components username=rakuos user-fullname=RakuOS hostname=rakuos keyboard-layouts=us" \
|
|
--iso-application "RakuOS" \
|
|
--iso-publisher "RakuOS Project" \
|
|
--iso-volume "RakuOS Live" \
|
|
"${@}"
|