Changeset 23526 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Oct 3, 2009 5:55:49 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53169
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r22077 r23526 52 52 endif 53 53 INSTALLS.linux += vboxdrv-mod vboxdrv-sh 54 INSTALLS.freebsd += vboxdrv-mod vboxdrv-sh 54 55 55 56 # … … 61 62 # Populate FILES_VBOXDRV_NOBIN and FILES_VBOXDRV_BIN 62 63 # 63 include $(PATH_SUB_CURRENT)/linux/files_vboxdrv 64 ifeq ($(KBUILD_TARGET),linux) 65 include $(PATH_SUB_CURRENT)/linux/files_vboxdrv 66 endif 67 ifeq ($(KBUILD_TARGET),freebsd) 68 include $(PATH_SUB_CURRENT)/freebsd/files_vboxdrv 69 endif 64 70 endif # !VBOX_ONLY_DOCS 65 71 … … 409 415 SUPDrv.c 410 416 ## @todo the SUPDrv-freebsd.def is most probably gonna break it and require build system hacking... 417 418 # 419 # Targets for installing the freebsd sources. 420 # 421 vboxdrv-mod_INST = bin/src/vboxdrv/ 422 vboxdrv-mod_MODE = a+r,u+w 423 vboxdrv-mod_SOURCES = $(subst ",,$(FILES_VBOXDRV_NOBIN)) #" 424 vboxdrv-mod_SOURCES += \ 425 $(PATH_vboxdrv-mod)/Makefile 426 vboxdrv-mod_CLEAN = \ 427 $(PATH_vboxdrv-mod)/Makefile 411 428 endif # freebsd 412 429 430 $$(PATH_vboxdrv-mod)/Makefile: \ 431 $(PATH_SUB_CURRENT)/freebsd/Makefile \ 432 $$(if $$(eq $$(Support/freebsd/Makefile_VBOX_HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \ 433 | $$(dir $$@) 434 $(call MSG_TOOL,Creating,,$@) 435 ifndef VBOX_WITH_HARDENING 436 $(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $< 437 else 438 $(QUIET)$(CP) -f $< $@ 439 endif 413 440 414 441 # -
trunk/src/VBox/HostDrivers/Support/SUPDrvInternal.h
r22615 r23526 123 123 # define strchr libkern_strchr 124 124 # define strrchr libkern_strrchr 125 # define ffs libkern_ffs126 125 # define ffsl libkern_ffsl 127 126 # define fls libkern_fls
Note:
See TracChangeset
for help on using the changeset viewer.