Changeset 105075 in vbox
- Timestamp:
- Jun 28, 2024 3:45:11 PM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 163695
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/Config.kmk
r103582 r105075 826 826 #TEMPLATE_VBoxBS3KitImgBig_POST_CMDS = $(NO_SUCH_VARIABLE) 827 827 828 TEMPLATE_VBoxBS3KitImgBig_LNK_DEPS = \ 829 $(bs3-bootsector-63MB_1_TARGET) \ 830 $(VBoxBs3Linker_1_TARGET) 831 TEMPLATE_VBoxBS3KitImgBig_POST_CMDS = $(if $(eq $(tool_do),LINK_LIBRARY) \ 832 ,,$(QUIET)$(MV_EXT) -f -- "$(out)" "$(out).tmp" \ 833 $$(NLTAB)$(QUIET)$(VBoxBs3Linker_1_TARGET) -o $(out) $(bs3-bootsector-63MB_1_TARGET) $(out).tmp $($(target)_2_VBOX_BS3KIT_HIGH_DLLS) \ 834 $$(NLTAB)$(QUIET)$(RM_EXT) -f -- "$(out).tmp") \ 835 $(eval .PRECIOUS: $(outbase).map) # ugly hack! 836 837 828 838 # BS3Kit template for a high image. 829 839 TEMPLATE_VBoxBS3KitHighImg = Template for building BS3Kit test images, the high DLL. -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/Makefile.kmk
r104071 r105075 55 55 56 56 57 # The boot sector .57 # The boot sector for regular floppies. 58 58 MISCBINS += bs3-bootsector 59 59 bs3-bootsector_TEMPLATE = VBoxBS3KitBS 60 60 bs3-bootsector_SOURCES = bs3-bootsector.asm 61 62 # The boot sector for 63.5MB floppies. 63 MISCBINS += bs3-bootsector-63MB 64 bs3-bootsector-63MB_TEMPLATE = VBoxBS3KitBS 65 bs3-bootsector-63MB_DEFS = BS3KIT_BOOTSECTOR_SUPPORT_63_5MB_FLOPPIES 66 bs3-bootsector-63MB_SOURCES = bs3-bootsector.asm 61 67 62 68 -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-bootsector.asm
r103866 r105075 56 56 %define BS3KIT_BOOTSECTOR_LOAD_DOTS 57 57 ;; Enables support for fake 63.5 MB floppies with 255 sectors, 2 heads and 255 tracks. 58 %define BS3KIT_BOOTSECTOR_SUPPORT_63_5MB_FLOPPIES 58 ;; @note This is typically enabled by the makefile. 59 ;%define BS3KIT_BOOTSECTOR_SUPPORT_63_5MB_FLOPPIES 59 60 ;; Enables code to avoid trying to read across 64kB DMA boundaries. 60 61 %define BS3KIT_BOOTSECTOR_DODGE_BOUNDARIES
Note:
See TracChangeset
for help on using the changeset viewer.