aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mkimg.xen.sh
blob: 5b725e66c05c98a5323f0b3788802e26c448ec7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 xen-bridge"
#	apkovl="genapkovl-xen.sh"
}