[kvmfr] added the ability to obtain a dmabuf of the ivshmem memory

This is to enable the ability to use dri3 to create dmabuf backed
pixmaps directly.
This commit is contained in:
Geoffrey McRae
2020-01-13 13:39:24 +11:00
parent 6aeafc6651
commit 788f885759
4 changed files with 428 additions and 32 deletions

View File

@@ -3,14 +3,20 @@ USER := $(shell whoami)
KVER ?= $(shell uname -r)
KDIR ?= /lib/modules/$(KVER)/build
all:
all: test
make -C $(KDIR) M=$(PWD) modules
clean:
make -C $(KDIR) M=$(PWD) clean
test: all
test:
gcc test.c -Wall -Werror -g -Og -o test
load: all
grep -q '^uio' /proc/modules || sudo modprobe uio
grep -q '^kvmfr' /proc/modules && sudo rmmod kvmfr || true
sudo insmod ./kvmfr.ko
sudo chown $(USER) /dev/uio0
sudo chown $(USER) /dev/kvmfr0
.PHONY: test