Changeset 4707 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Sep 11, 2007 12:35:12 PM (17 years ago)
- Location:
- trunk/src/VBox/Additions/linux
- Files:
-
- 1 deleted
- 5 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 \ -
trunk/src/VBox/Additions/linux/sharedfolders/Makefile.kmk
r4071 r4707 46 46 vboxvfs_DEFS := KBUILD_MODNAME=KBUILD_STR\(vboxadd\) KBUILD_BASENAME=KBUILD_STR\(vboxadd\) MODULE IN_RING0 IN_RT_R0 VBOXGUEST VBOX_HGCM 47 47 vboxvfs_LIBS = $(PATH_LIB)/VBoxGuestLibLinux.a $(PATH_LIB)/RuntimeLnx32GuestR0.a 48 vboxvfs_SOURCES = vfsmod.c vfs-utils.c48 vboxvfs_SOURCES = vfsmod.c 49 49 vboxvfs_NOINST = 1 50 50 vboxvfs_CFLAGS += -fshort-wchar -
trunk/src/VBox/Additions/linux/sharedfolders/Makefile.module
r4328 r4707 18 18 OBJS = \ 19 19 vfsmod.o \ 20 vfs-utils.o \21 20 GenericRequest.o \ 22 21 SysHlp.o \ … … 97 96 export INCL 98 97 endif 99 KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -D_X86_ -DIN_RT_R0 -DIN_SUP_R0\100 -D VBOX_HGCM -DLOG_TO_BACKDOOR101 #ifeq ($(BUILD_TYPE),debug) - you'll have to enable this manually to get debug stuff. 102 #KFLAGS += -DDEBUG103 #endif98 KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -D_X86_ -DIN_RT_R0 \ 99 -DIN_SUP_R0 -DVBOX -DVBOX_HGCM -DLOG_TO_BACKDOOR -DIN_MODULE 100 ifeq ($(BUILD_TYPE),debug) 101 KFLAGS += -DDEBUG 102 endif 104 103 105 104 ifeq ($(KERN_VERSION), 24) -
trunk/src/VBox/Additions/linux/sharedfolders/files_vboxvfs
r4071 r4707 61 61 ${PATH_ROOT}/src/VBox/Additions/linux/sharedfolders/regops.c=>regops.c \ 62 62 ${PATH_ROOT}/src/VBox/Additions/linux/sharedfolders/utils.c=>utils.c \ 63 ${PATH_ROOT}/src/VBox/Additions/linux/sharedfolders/vfs-utils.c=>vfs-utils.c \64 63 ${PATH_ROOT}/src/VBox/Additions/linux/sharedfolders/vbsfmount.h=>vbsfmount.h \ 65 64 ${PATH_ROOT}/src/VBox/Additions/linux/sharedfolders/vfsmod.c=>vfsmod.c \
Note:
See TracChangeset
for help on using the changeset viewer.