Changeset 85942 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Aug 28, 2020 8:09:43 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140137
- Location:
- trunk/src/VBox/Additions/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile
r85939 r85942 60 60 fi 61 61 62 vboxvideo: vboxguest62 vboxvideo: 63 63 + $(VBOX_QUIET_SH)if [ -d vboxvideo ]; then \ 64 if [ -f vboxguest/Module.symvers ]; then \65 cp vboxguest/Module.symvers vboxvideo; \66 fi; \67 64 echo "=== Building 'vboxvideo' module ==="; \ 68 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) KBUILD_EXTRA_SYMBOLS=$(abspath vboxvideo/Module.symvers)-C vboxvideo || exit 1; \65 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxvideo || exit 1; \ 69 66 if [ -f vboxvideo/vboxvideo.ko ]; then \ 70 67 cp vboxvideo/vboxvideo.ko .; \ -
trunk/src/VBox/Additions/linux/drm/Makefile.module.kms
r85939 r85942 22 22 include $(obj)/Makefile-header.gmk 23 23 VBOXDRM_DIR = $(VBOX_MODULE_SRC_DIR) 24 25 # Allow building directly from the subdirectory without assuming the toplevel26 # makefile has done the copying. Not the default use case, but can be handy.27 ifndef KBUILD_EXTRA_SYMBOLS28 KBUILD_EXTRA_SYMBOLS=$(abspath $(VBOXDRM_DIR)/../vboxguest/Module.symvers)29 endif30 24 31 25 # We want to build on Linux 3.11 and later and on all EL 7 kernels.
Note:
See TracChangeset
for help on using the changeset viewer.