Changeset 4707 in vbox for trunk/src/VBox/Additions/linux/module
- Timestamp:
- Sep 11, 2007 12:35:12 PM (17 years ago)
- Location:
- trunk/src/VBox/Additions/linux/module
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/Makefile.module
r4328 r4707 21 21 vboxmod.o \ 22 22 GenericRequest.o \ 23 HGCMInternal.o \ 24 Init.o \ 23 25 PhysHeap.o \ 24 26 SysHlp.o \ 25 Init.o \26 27 VMMDev.o \ 27 HGCMInternal.o \28 28 r0drv/alloc-r0drv.o \ 29 29 r0drv/linux/alloc-r0drv-linux.o \ 30 30 r0drv/linux/semaphore-r0drv-linux.o 31 #ifdef DEBUG 32 OBJS += \ 33 logbackdoor.o \ 34 logformat.o \ 35 strformat.o \ 36 strformatrt.o \ 37 strformat-vbox.o \ 38 udivdi3.o \ 39 umoddi3.o \ 40 qdivrem.o 41 #endif 31 42 32 43 ifneq ($(MAKECMDGOALS),clean) … … 96 107 export INCL 97 108 endif 98 KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -D_X86_ -DIN_RT_R0 -DIN_SUP_R0 \ 99 -DVBGL_VBOXGUEST -DVBOX_HGCM -DLOG_TO_BACKDOOR 100 #ifeq ($(BUILD_TYPE),debug) - you'll have to enable this manually to get debug stuff. 101 #KFLAGS += -DDEBUG 109 KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -D_X86_ \ 110 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX -DVBGL_VBOXGUEST -DVBOX_HGCM \ 111 -DLOG_TO_BACKDOOR -DRT_WITH_VBOX -DIN_MODULE 112 #ifeq ($(BUILD_TYPE),debug) 113 KFLAGS += -DDEBUG 102 114 #endif 103 115 -
trunk/src/VBox/Additions/linux/module/files_vboxadd
r4071 r4707 14 14 15 15 FILES_VBOXADD_NOBIN=" \ 16 ${PATH_ROOT}/include/iprt/nocrt/limits.h=>include/iprt/nocrt/limits.h \ 16 17 ${PATH_ROOT}/include/iprt/alloca.h=>include/iprt/alloca.h \ 17 18 ${PATH_ROOT}/include/iprt/alloc.h=>include/iprt/alloc.h \ … … 27 28 ${PATH_ROOT}/include/iprt/stdint.h=>include/iprt/stdint.h \ 28 29 ${PATH_ROOT}/include/iprt/string.h=>include/iprt/string.h \ 30 ${PATH_ROOT}/include/iprt/time.h=>include/iprt/time.h \ 29 31 ${PATH_ROOT}/include/iprt/types.h=>include/iprt/types.h \ 30 32 ${PATH_ROOT}/include/VBox/cdefs.h=>include/VBox/cdefs.h \ … … 45 47 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuestLib/VMMDev.cpp=>VMMDev.c \ 46 48 ${PATH_ROOT}/src/VBox/Runtime/include/internal/magics.h=>include/internal/magics.h \ 49 ${PATH_ROOT}/src/VBox/Runtime/include/internal/string.h=>include/internal/string.h \ 50 ${PATH_ROOT}/src/VBox/Runtime/math/gcc/qdivrem.c=>qdivrem.c \ 51 ${PATH_ROOT}/src/VBox/Runtime/math/gcc/quad.h=>quad.h \ 52 ${PATH_ROOT}/src/VBox/Runtime/math/gcc/udivdi3.c=>udivdi3.c \ 53 ${PATH_ROOT}/src/VBox/Runtime/math/gcc/umoddi3.c=>umoddi3.c \ 47 54 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-r0drv.cpp=>r0drv/alloc-r0drv.c \ 48 55 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-r0drv.h=>r0drv/alloc-r0drv.h \ … … 51 58 ${PATH_ROOT}/src/VBox/Runtime/r0drv/linux/string.h=>r0drv/linux/string.h \ 52 59 ${PATH_ROOT}/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h=>r0drv/linux/the-linux-kernel.h \ 60 ${PATH_ROOT}/src/VBox/Runtime/VBox/logbackdoor.cpp=>logbackdoor.c \ 61 ${PATH_ROOT}/src/VBox/Runtime/VBox/strformat-vbox.cpp=>strformat-vbox.c \ 62 ${PATH_ROOT}/src/VBox/Runtime/logformat.cpp=>logformat.c \ 63 ${PATH_ROOT}/src/VBox/Runtime/strformat.cpp=>strformat.c \ 64 ${PATH_ROOT}/src/VBox/Runtime/strformatrt.cpp=>strformatrt.c \ 53 65 ${PATH_ROOT}/src/VBox/Additions/linux/module/vboxmod.c=>vboxmod.c \ 54 66 ${PATH_ROOT}/src/VBox/Additions/linux/module/cmc.c=>cmc.c \
Note:
See TracChangeset
for help on using the changeset viewer.