- Pin linux-lts to exact KERNEL_PKG_VERSION=6.12.76-r0 in build and ISO package list - Add build-time verification that compiled kernel version matches pin (fails loudly) - Fix bee-audit-debug → bee-audit in genapkovl OpenRC registration (service was never starting) - Add AUDIT_VERSION=0.1.0 to VERSIONS (was undefined, bee-release had empty fields) - Pin linux-lts-dev version in second apk add in build-nvidia-module.sh - Add /root/.profile to overlay so /usr/local/bin is in PATH for SSH sessions - Remove "DEBUG MODE" from motd - Fix smoketest: grep for slog "audit output written" instead of non-existent "audit completed" - Document no-internet constraint in system-overview and runtime-flows - Remove redundant genapkovl copy to /var/tmp (now found via ~/.mkimage/) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
1.4 KiB
Bash
Executable File
59 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
# Alpine mkimage profile: bee
|
|
|
|
profile_bee() {
|
|
title="Bee Hardware Audit"
|
|
desc="Hardware audit LiveCD"
|
|
arch="x86_64"
|
|
hostname="alpine-bee"
|
|
apkovl="genapkovl-bee.sh"
|
|
image_ext="iso"
|
|
output_format="iso"
|
|
kernel_flavors="lts"
|
|
kernel_addons=""
|
|
initfs_cmdline="modules=loop,squashfs,sd-mod,usb-storage modloop=/boot/modloop-lts quiet"
|
|
initfs_features="ata base cdrom ext4 mmc nvme raid scsi squashfs usb virtio nfit"
|
|
grub_mod="all_video disk part_gpt part_msdos linux normal configfile search search_label efi_gop fat iso9660 cat echo ls test true help gzio multiboot2 efi_uga"
|
|
syslinux_serial="0 115200"
|
|
apks="
|
|
alpine-base
|
|
linux-lts=${KERNEL_PKG_VERSION}
|
|
linux-firmware-none
|
|
linux-firmware-rtl_nic
|
|
linux-firmware-bnx2
|
|
linux-firmware-bnx2x
|
|
linux-firmware-tigon
|
|
linux-firmware-qlogic
|
|
linux-firmware-netronome
|
|
linux-firmware-mellanox
|
|
linux-firmware-intel
|
|
linux-firmware-other
|
|
|
|
dmidecode
|
|
smartmontools
|
|
nvme-cli
|
|
pciutils
|
|
ipmitool
|
|
util-linux
|
|
lsblk
|
|
e2fsprogs
|
|
lshw
|
|
|
|
dropbear
|
|
openrc
|
|
libqrencode-tools
|
|
tzdata
|
|
ca-certificates
|
|
|
|
strace
|
|
procps
|
|
lsof
|
|
file
|
|
less
|
|
vim
|
|
dialog
|
|
|
|
gcompat
|
|
"
|
|
}
|