live-build constructs the kernel package as <linux-packages>-<linux-flavours>, so "linux-image-amd64" + "amd64" = "linux-image-amd64-amd64" (not found). The correct value is "linux-image" + "amd64" = "linux-image-amd64". Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
941 B
Bash
Executable File
29 lines
941 B
Bash
Executable File
#!/bin/sh
|
|
# auto/config — live-build configuration for bee ISO
|
|
# Runs automatically when lb config is called.
|
|
# See: man lb_config
|
|
|
|
set -e
|
|
|
|
. "$(dirname "$0")/../VERSIONS"
|
|
|
|
lb config noauto \
|
|
--distribution bookworm \
|
|
--architectures amd64 \
|
|
--binary-images iso-hybrid \
|
|
--bootloaders "grub-efi,syslinux" \
|
|
--debian-installer none \
|
|
--archive-areas "main contrib non-free non-free-firmware" \
|
|
--mirror-bootstrap "https://deb.debian.org/debian" \
|
|
--mirror-chroot "https://deb.debian.org/debian" \
|
|
--mirror-binary "https://deb.debian.org/debian" \
|
|
--security true \
|
|
--linux-flavours "amd64" \
|
|
--linux-packages "linux-image" \
|
|
--memtest none \
|
|
--iso-volume "EASY-BEE" \
|
|
--iso-application "EASY-BEE" \
|
|
--bootappend-live "boot=live components console=tty0 console=ttyS0,115200n8 username=bee user-fullname=Bee modprobe.blacklist=nouveau" \
|
|
--apt-recommends false \
|
|
"${@}"
|