Changeset 36190 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Mar 7, 2011 4:28:50 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70394
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrvInternal.h
r35662 r36190 169 169 # define SUPDRV_USE_MUTEX_FOR_GIP 170 170 #endif 171 #define SUPDRV_USE_MUTEX_FOR_LDR /* !!! DONT COMMIT THIS !!! */ 171 172 172 173 -
trunk/src/VBox/HostDrivers/Support/freebsd/files_vboxdrv
r35346 r36190 43 43 ${PATH_ROOT}/include/iprt/initterm.h=>include/iprt/initterm.h \ 44 44 ${PATH_ROOT}/include/iprt/log.h=>include/iprt/log.h \ 45 ${PATH_ROOT}/include/iprt/mangling.h=>include/iprt/mangling.h \ 45 46 ${PATH_ROOT}/include/iprt/mem.h=>include/iprt/mem.h \ 46 47 ${PATH_ROOT}/include/iprt/memobj.h=>include/iprt/memobj.h \ … … 76 77 ${PATH_ROOT}/include/VBox/types.h=>include/VBox/types.h \ 77 78 ${PATH_ROOT}/include/VBox/version.h=>include/VBox/version.h \ 79 ${PATH_ROOT}/include/VBox/SUPDrvMangling.h=>include/VBox/SUPDrvMangling.h \ 78 80 ${PATH_ROOT}/include/VBox/vmm/hwacc_vmx.h=>include/VBox/vmm/hwacc_vmx.h \ 79 81 ${PATH_ROOT}/include/VBox/vmm/hwacc_svm.h=>include/VBox/vmm/hwacc_svm.h \ -
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r33033 r36190 263 263 264 264 # build defs 265 EXTRA_CFLAGS += $(INCL) $(KFLAGS) $(KDEBUG)265 EXTRA_CFLAGS += -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h $(INCL) $(KFLAGS) $(KDEBUG) 266 266 267 267 all: $(MODULE) … … 304 304 305 305 endif # eq($(MAKECMDGOALS),clean) 306 307 check: $(MODULE) 308 @if ! readelf -p __ksymtab_strings vboxdrv.ko | grep -E "\[.*\] *(RT|g_..*RT.*)"; then \ 309 echo "All exported IPRT symbols are properly renamed!"; \ 310 else \ 311 echo "error: Some exported IPRT symbols was not properly renamed! See above." >&2; \ 312 false; \ 313 fi 314 -
trunk/src/VBox/HostDrivers/Support/linux/files_vboxdrv
r35346 r36190 44 44 ${PATH_ROOT}/include/iprt/lockvalidator.h=>include/iprt/lockvalidator.h \ 45 45 ${PATH_ROOT}/include/iprt/log.h=>include/iprt/log.h \ 46 ${PATH_ROOT}/include/iprt/mangling.h=>include/iprt/mangling.h \ 46 47 ${PATH_ROOT}/include/iprt/mem.h=>include/iprt/mem.h \ 47 48 ${PATH_ROOT}/include/iprt/memobj.h=>include/iprt/memobj.h \ … … 70 71 ${PATH_ROOT}/include/VBox/sup.h=>include/VBox/sup.h \ 71 72 ${PATH_ROOT}/include/VBox/types.h=>include/VBox/types.h \ 73 ${PATH_ROOT}/include/VBox/SUPDrvMangling.h=>include/VBox/SUPDrvMangling.h \ 72 74 ${PATH_ROOT}/include/VBox/vmm/hwacc_vmx.h=>include/VBox/vmm/hwacc_vmx.h \ 73 75 ${PATH_ROOT}/include/VBox/vmm/hwacc_svm.h=>include/VBox/vmm/hwacc_svm.h \
Note:
See TracChangeset
for help on using the changeset viewer.