48 lines
1.1 KiB
Bash
Executable File
48 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
# Alpine mkimage profile: bee (production)
|
|
|
|
profile_bee() {
|
|
title="Bee Hardware Audit"
|
|
desc="Hardware audit LiveCD (production unattended mode)"
|
|
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"
|
|
|
|
apks="
|
|
alpine-base
|
|
linux-lts
|
|
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
|
|
|
|
openrc
|
|
ca-certificates
|
|
tzdata
|
|
jq
|
|
wget
|
|
"
|
|
}
|