linux-lts in apks conflicted with mkimage's own kernel download via kernel_flavors="lts". The kernel is embedded in the ISO via modloop, not via apks. Pinning it in apks caused "unable to select package". Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
58 lines
1.3 KiB
Bash
Executable File
58 lines
1.3 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-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
|
|
"
|
|
}
|