- Timestamp:
- May 17, 2007 3:10:50 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21258
- Location:
- trunk/src/VBox/HostDrivers/VBoxTAP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxTAP/Makefile.kmk
r2683 r2690 51 51 VBoxTAP-inf_INST = bin/ 52 52 VBoxTAP-inf_MODE = a+r,u+w 53 ifndef VBOX_SIGNING_MODE54 VBoxTAP-inf_SOURCES = VBoxTAP.inf55 else56 53 VBoxTAP-inf_SOURCES = \ 57 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf \ 58 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.cat 59 VBoxTAP-inf_CLEAN += \ 60 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.cat \ 61 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.sys \ 54 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf 55 VBoxTAP-inf_CLEAN = \ 62 56 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf 63 57 VBoxTAP-inf_BLDDIRS = $(PATH_TARGET)/VBoxTAPCat.dir … … 65 59 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf: $(PATH_SUB_CURRENT)/VBoxTAP.inf $(MAKEFILE_CURRENT) | $$(call DIRDEP,$$(@D)) 66 60 $(call MSG_GENERATE,VBoxTAP-inf,$@,$<) 67 $(QUIET2)$(RM) -f $@ 68 ifeq ($(BUILD_TARGET_ARCH),amd64) 69 $(QUIET)$(SED) \ 70 -e 's/^\;\;* *CatalogFile *=/CatalogFile=/' \ 71 -e 's/^ *\%Provider% *= *VBoxTAP *$$/%Provider% = VBoxTAP,NTamd64/' \ 72 -e 's/^\[VBoxTAP\] *$$/\[VBoxTAP.NTamd64\]/' \ 73 -e 's/^\;amd64 *//' \ 74 $< > $@ 75 else 76 $(QUIET)$(SED) \ 77 -e 's/^\;\;* *CatalogFile *=/CatalogFile=/' \ 78 $< > $@ 79 endif 61 $(call VBOX_EDIT_INF_FN,$<,$@) 62 63 ifdef VBOX_SIGNING_MODE 64 VBoxTAP-inf_SOURCES += \ 65 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.cat 66 VBoxTAP-inf_CLEAN += \ 67 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.cat \ 68 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.sys 80 69 81 70 $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.cat: $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf $$(TARGET_VBoxTAP) … … 83 72 $(INSTALL) -m 644 $(TARGET_VBoxTAP) $(@D) 84 73 $(call VBOX_MAKE_CAT_FN, $(@D),$@) 85 86 74 endif # signing 87 75 -
trunk/src/VBox/HostDrivers/VBoxTAP/VBoxTAP.inf
r1783 r2690 20 20 [Version] 21 21 Signature = "$Windows NT$" 22 ; ;;;CatalogFile = VBoxTAP.cat22 ;cat CatalogFile = VBoxTAP.cat 23 23 ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318} 24 24 Provider = %Provider% … … 38 38 ;---------------------------------------------------------------- 39 39 [Manufacturer] 40 %Provider% = VBoxTAP 40 ;x86 %Provider% = VBoxTAP 41 ;amd64 %Provider% = VBoxTAP, NTamd64 41 42 42 [VBoxTAP] 43 ;x86 [VBoxTAP] 44 ;amd64 [VBoxTAP.NTamd64] 43 45 %DeviceDescription% = VBoxTAP.ndi, VBoxTAP 44 46
Note:
See TracChangeset
for help on using the changeset viewer.