mirror of
https://abf.rosa.ru/djam/xen.git
synced 2025-02-23 10:02:49 +00:00
10 lines
293 B
Bash
10 lines
293 B
Bash
#!/bin/sh
|
|
|
|
test -d /proc/xen || exit 0
|
|
test -f /proc/xen/capabilities || mount -t xenfs xen /proc/xen
|
|
test -f /proc/xen/capabilities || exit 0
|
|
grep -q "control_d" /proc/xen/capabilities || exit 0
|
|
|
|
for module in xen-evtchn evtchn blkbk netbk; do
|
|
modprobe ${module} >/dev/null 2>&1
|
|
done
|