Change permissions of files.

This commit is contained in:
redxef 2021-10-12 11:36:50 +02:00
parent 7213b9be35
commit cf20f0df20
13 changed files with 11 additions and 8 deletions

0
.editorconfig Normal file → Executable file
View file

0
.gitignore vendored Normal file → Executable file
View file

2
base.conf.tmpl Normal file → Executable file
View file

@ -5,8 +5,8 @@
-cpu host,kvm=on,topoext,tsc_deadline,tsc_adjust,l3-cache,hv_vendor_id=null,hv_vpindex,hv_runtime,hv_synic,hv_stimer,hv_reset,hv_frequencies,hv_tlbflush,hv_reenlightenment,hv_ipi,hv_time,hv_relaxed,hv_vapic,hv_spinlocks=0x1fff
-m 12G
-mem-prealloc -mem-path /dev/hugepages
-vga none -nographic
-parallel none
-serial none
-rtc clock=host,base=localtime,driftfix=none
-usb
-vga none -nographic

1
debian.conf.tmpl Normal file → Executable file
View file

@ -1,3 +1,2 @@
-drive file=debian-11.0.0-amd64-netinst.iso,media=cdrom
-drive file=debian.qcow2,if=virtio,cache=off

0
debian.desktop Normal file → Executable file
View file

2
default.conf.tmpl Normal file → Executable file
View file

@ -1,4 +1,4 @@
-netdev tap,id=net0,br=$BR_NAME,ifname=$TAP_NAME,script=no,downscript=no
-device e1000,netdev=net0
-device rtl8139,netdev=net0
-audiodev pa,id=snd0,server=unix:/run/user/$MYUID/pulse/native
-device intel-hda -device hda-duplex,audiodev=snd0

0
hardware.conf.tmpl Normal file → Executable file
View file

2
net
View file

@ -7,7 +7,7 @@ BASE_BRIDGE_NAME=br-q
BASE_TAP_NAME=tap-q
randstr() {
dd if=/dev/urandom count=1 bs=4 | xxd -p -g 0
dd if=/dev/urandom count=1 bs=4 2>/dev/null | xxd -p -g 0
}
default_route() {

6
pci
View file

@ -14,8 +14,10 @@ vfio_rebind_device() {
pci_id="$1"
if [[ -e "$BASE_PATH/devices/$pci_id" ]]; then
echo "$pci_id" | sudo tee "$BASE_PATH/devices/$pci_id/driver/unbind"
echo "$pci_id" | sudo tee "$BASE_PATH/drivers/vfio-pci/bind"
echo "$pci_id" | sudo tee \
"$BASE_PATH/devices/$pci_id/driver/unbind" >/dev/null
echo "$pci_id" | sudo tee \
"$BASE_PATH/drivers/vfio-pci/bind" > /dev/null
fi
}

View file

@ -1,6 +1,8 @@
#!/usr/bin/env bash
if [[ -z "$DEBUG" ]]; then
if [[ -z "$DEBUG" ]] \
&& [[ -e /sys/bus/platform/devices/efi-framebuffer.0/driver ]]; then
echo efi-framebuffer.0 | sudo tee \
'/sys/bus/platform/devices/efi-framebuffer.0/driver/unbind' || true
'/sys/bus/platform/devices/efi-framebuffer.0/driver/unbind'
fi

0
vfio_devices.txt Normal file → Executable file
View file

0
win10.conf.tmpl Normal file → Executable file
View file

0
win10vm.desktop Normal file → Executable file
View file