Changeset 12115 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Sep 4, 2008 11:23:06 PM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r12100 r12115 102 102 $(PATH_BIN)/src/Makefile: \ 103 103 $(PATH_SUB_CURRENT)/linux/Makefile \ 104 $$(if $$(eq $$(Support/linux/Makefile_ HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \104 $$(if $$(eq $$(Support/linux/Makefile_VBOX_HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \ 105 105 | $(call DIRDEP,$(PATH_TARGET)) 106 106 $(call MSG_TOOL,Creating,,$@) 107 if def VBOX_WITH_HARDENING107 ifndef VBOX_WITH_HARDENING 108 108 $(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $< 109 109 else … … 111 111 endif 112 112 %$(QUIET2)$(RM) -f -- $(PATH_TARGET)/vboxmod-1.dep 113 %$(QUIET2)$(APPEND) '$(PATH_TARGET)/vboxmod-1.dep' 'Support/linux/Makefile_ HARDENED=$(VBOX_WITH_HARDENING)'113 %$(QUIET2)$(APPEND) '$(PATH_TARGET)/vboxmod-1.dep' 'Support/linux/Makefile_VBOX_HARDENED=$(VBOX_WITH_HARDENING)' 114 114 115 115 -
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r12011 r12115 683 683 Log(("VBoxDrvLinuxCreate: pFilp=%p pid=%d/%d %s\n", pFilp, RTProcSelf(), current->pid, current->comm)); 684 684 685 #if 0 /** @todo test this: #ifdef VBOX_WITH_HARDENING */685 #ifdef VBOX_WITH_HARDENING 686 686 /* 687 687 * Only root is allowed to access the device, enforce it!
Note:
See TracChangeset
for help on using the changeset viewer.