1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/scripts/mkimg.xen.sh
Natanael Copa 71a193e96f scripts/mkimg: remove -hardened kernel and vanilla iso
standard iso is now vanilla kernel so it does not make any sense to have
a separata vanilla iso.

Also update xen to use vanilla kernel instead of hardened
2018-03-05 11:41:56 +00:00

21 lines
576 B
Bash
Executable file

build_xen() {
apk fetch --root "$APKROOT" --stdout xen-hypervisor | tar -C "$DESTDIR" -xz boot
}
section_xen() {
[ -n "${xen_params+set}" ] || return 0
build_section xen $ARCH $(apk fetch --root "$APKROOT" --simulate xen-hypervisor | checksum)
}
profile_xen() {
profile_standard
title="Xen"
desc="Build-in support for Xen Hypervisor.
Includes packages targed at Xen usage.
Use for Xen Dom 0."
arch="x86_64"
kernel_cmdline="nomodeset"
xen_params=""
apks="$apks ethtool lvm2 mdadm multipath-tools openvswitch sfdisk xen xen-bridge"
# apkovl="genapkovl-xen.sh"
}