1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-17 22:15:17 +03:00
aports/scripts/mkimg.xen.sh
Natanael Copa 69cfb8ebf6 scripts: remove openvswitch and rename hwdata
hwdata was renamed to hwids
remove openvswitch due to it was move to community
2019-12-06 17:48:38 +00:00

22 lines
598 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
profile_abbrev="xen"
title="Xen"
desc="Built-in support for Xen Hypervisor.
Includes packages targetted at Xen usage.
Use for Xen Dom0."
arch="x86_64"
kernel_cmdline="nomodeset"
xen_params=""
apks="$apks ethtool lvm2 mdadm multipath-tools rng-tools sfdisk xen xen-bridge"
# apkovl="genapkovl-xen.sh"
}