儲存庫 vbox 的更動 12565
- 時間撮記:
- 2008-9-18 下午12:31:04 (16 年 以前)
- 位置:
- trunk
- 檔案:
-
- 修改 4 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/Config.kmk
r12544 r12565 355 355 # Enables all the doxgen bits. 356 356 VBOX_WITH_ALL_DOXYGEN_TARGETS = 1 357 # Enable BusLogic SCSI host adapter 358 VBOX_WITH_BUSLOGIC = 1 359 # Enable SCSI drivers 360 VBOX_WITH_SCSI = 1 357 361 # Enables the Python<->XPCOM and later Python<->COM bindings. 358 362 # (Current not enabled by default because all the build servers has … … 608 612 VBOX_WITH_AHCI= 609 613 VBOX_WITH_PDM_ASYNC_COMPLETION= 614 VBOX_WITH_BUSLOGIC= 615 VBOX_WITH_SCSI= 610 616 # branding 611 617 VBOX_BRAND_BIOS_LOGO := $(PATH_ROOT)/src/VBox/Devices/Graphics/BIOS/ose_logo.bmp … … 1021 1027 ifdef VBOX_PATH_APP_DOCS 1022 1028 DEFS += RTPATH_APP_DOCS=\"$(VBOX_PATH_APP_DOCS)\" 1029 endif 1030 ifdef VBOX_WITH_SCSI # Needed to compile the BIOS if SCSI is enabled 1031 DEFS += VBOX_WITH_SCSI 1023 1032 endif 1024 1033 ## @todo eliminate these guys. -
trunk/src/VBox/Devices/Builtins.cpp
r12559 r12565 262 262 return rc; 263 263 #endif 264 #ifdef VBOX_WITH_ BUSLOGIC264 #ifdef VBOX_WITH_SCSI 265 265 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvSCSI); 266 266 if (VBOX_FAILURE(rc)) -
trunk/src/VBox/Devices/Builtins.h
r12559 r12565 100 100 #endif 101 101 102 #ifdef VBOX_WITH_ BUSLOGIC102 #ifdef VBOX_WITH_SCSI 103 103 extern const PDMDRVREG g_DrvSCSI; 104 104 extern const PDMDRVREG g_DrvSCSIHost; -
trunk/src/VBox/Devices/Makefile.kmk
r12551 r12565 838 838 endif #VBOX_WITH_PDM_ASYNC_COMPLETION 839 839 840 ifdef VBOX_WITH_ BUSLOGIC841 Drivers_DEFS += VBOX_WITH_ BUSLOGIC840 ifdef VBOX_WITH_SCSI 841 Drivers_DEFS += VBOX_WITH_SCSI 842 842 Drivers_SOURCES += \ 843 843 Storage/DrvSCSI.cpp 844 844 Drivers_SOURCES.linux += \ 845 845 Storage/DrvSCSIHost.cpp 846 endif # VBOX_WITH_ BUSLOGIC846 endif # VBOX_WITH_SCSI 847 847 848 848 #
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器