1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/scripts/mkimg.xen.sh
2016-12-21 23:17:14 +00:00

17 lines
445 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
arch="x86_64"
kernel_cmdline="nomodeset"
xen_params=""
apks="$apks ethtool lvm2 mdadm multipath-tools openvswitch sfdisk xen"
# apkovl="genapkovl-xen.sh"
}