virtualbox-ose: add patch required to fix buildings the kmods.
This commit is contained in:
parent
7ed4f1a237
commit
4af89e629a
|
@ -0,0 +1,77 @@
|
|||
--- src/VBox/HostDrivers/Support/linux/Makefile
|
||||
+++ src/VBox/HostDrivers/Support/linux/Makefile
|
||||
@@ -131,7 +131,7 @@ ifdef VBOX_WITH_NATIVE_DTRACE
|
||||
MOD_OBJS += SUPDrvDTrace.o
|
||||
endif
|
||||
|
||||
-MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
|
||||
+MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD)/vboxdrv,/ /include /r0drv/linux)
|
||||
ifdef VBOX_WITH_NATIVE_DTRACE
|
||||
MOD_INCL += -I/usr/include/linux -I/usr/include
|
||||
endif
|
||||
@@ -157,7 +157,7 @@ ifdef VBOX_WITH_TEXT_MODMEM_HACK
|
||||
endif
|
||||
|
||||
# build defs
|
||||
-MOD_CFLAGS = -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h \
|
||||
+MOD_CFLAGS = -include $(KBUILD_EXTMOD)/vboxdrv/include/VBox/SUPDrvMangling.h \
|
||||
-fno-omit-frame-pointer -fno-pie
|
||||
|
||||
include $(obj)/Makefile.include.footer
|
||||
--- src/VBox/HostDrivers/VBoxNetAdp/linux/Makefile
|
||||
+++ src/VBox/HostDrivers/VBoxNetAdp/linux/Makefile
|
||||
@@ -34,7 +34,7 @@ MOD_OBJS += math/gcc/divdi3.o \
|
||||
math/gcc/umoddi3.o
|
||||
endif
|
||||
|
||||
-MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
|
||||
+MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD)/vboxnetadp,/ /include /r0drv/linux)
|
||||
MOD_DEFS = -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX \
|
||||
-DRT_WITH_VBOX -DVBOX_WITH_HARDENING \
|
||||
-Wno-declaration-after-statement
|
||||
@@ -59,6 +59,6 @@ ifdef VBOX_USE_INSERT_PAGE
|
||||
endif
|
||||
|
||||
# build defs
|
||||
-MOD_CFLAGS = -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h -fno-pie
|
||||
+MOD_CFLAGS = -include $(KBUILD_EXTMOD)/vboxnetadp/include/VBox/SUPDrvMangling.h -fno-pie
|
||||
|
||||
include $(obj)/Makefile.include.footer
|
||||
--- src/VBox/HostDrivers/VBoxNetFlt/linux/Makefile
|
||||
+++ src/VBox/HostDrivers/VBoxNetFlt/linux/Makefile
|
||||
@@ -38,7 +38,7 @@ MOD_OBJS += math/gcc/divdi3.o \
|
||||
math/gcc/umoddi3.o
|
||||
endif
|
||||
|
||||
-MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
|
||||
+MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD)/vboxnetflt,/ /include /r0drv/linux)
|
||||
MOD_DEFS = -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 \
|
||||
-DIN_SUP_R0 -DVBOX -DRT_WITH_VBOX -DVBOX_WITH_HARDENING \
|
||||
-Wno-declaration-after-statement
|
||||
@@ -63,6 +63,6 @@ ifdef VBOX_USE_INSERT_PAGE
|
||||
endif
|
||||
|
||||
# build defs
|
||||
-MOD_CFLAGS = -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h -fno-pie
|
||||
+MOD_CFLAGS = -include $(KBUILD_EXTMOD)/vboxnetflt/include/VBox/SUPDrvMangling.h -fno-pie
|
||||
|
||||
include $(obj)/Makefile.include.footer
|
||||
--- src/VBox/HostDrivers/VBoxPci/linux/Makefile
|
||||
+++ src/VBox/HostDrivers/VBoxPci/linux/Makefile
|
||||
@@ -38,7 +38,7 @@ MOD_OBJS += math/gcc/divdi3.o \
|
||||
math/gcc/umoddi3.o
|
||||
endif
|
||||
|
||||
-MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
|
||||
+MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD)/vboxpci,/ /include /r0drv/linux)
|
||||
MOD_DEFS = -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX \
|
||||
-DRT_WITH_VBOX -DVBOX_WITH_HARDENING
|
||||
ifeq ($(BUILD_TARGET_ARCH),amd64)
|
||||
@@ -60,6 +60,6 @@ ifdef VBOX_USE_INSERT_PAGE
|
||||
endif
|
||||
|
||||
# build defs
|
||||
-MOD_CFLAGS = -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h -fno-pie
|
||||
+MOD_CFLAGS = -include $(KBUILD_EXTMOD)/vboxpci/include/VBox/SUPDrvMangling.h -fno-pie
|
||||
|
||||
include $(obj)/Makefile.include.footer
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'virtualbox-ose'
|
||||
pkgname=virtualbox-ose
|
||||
version=5.2.2
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc="VirtualBox-${version%*a}"
|
||||
short_desc="General-purpose full virtualizer for x86 hardware"
|
||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||
|
|
Loading…
Reference in New Issue