mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 00:45:43 +00:00
Add bootsectors and FREELDR.SYS to bootcd.
svn path=/trunk/; revision=3884
This commit is contained in:
parent
05a8cab618
commit
afe60dcdbf
2 changed files with 15 additions and 3 deletions
|
@ -57,6 +57,10 @@ ext2.bin : ext2.asm
|
||||||
.PHONY : bootcd
|
.PHONY : bootcd
|
||||||
bootcd: bootcd_dirs isoboot.bin
|
bootcd: bootcd_dirs isoboot.bin
|
||||||
$(CP) isoboot.bin $(BOOTCD_DIR)
|
$(CP) isoboot.bin $(BOOTCD_DIR)
|
||||||
|
$(CP) ext2.bin $(BOOTCD_DIR)\disk\loader
|
||||||
|
$(CP) fat.bin $(BOOTCD_DIR)\disk\loader
|
||||||
|
$(CP) fat32.bin $(BOOTCD_DIR)\disk\loader
|
||||||
|
$(CP) isoboot.bin $(BOOTCD_DIR)\disk\loader
|
||||||
|
|
||||||
.PHONY : bootcd_dirs
|
.PHONY : bootcd_dirs
|
||||||
bootcd_dirs:
|
bootcd_dirs:
|
||||||
|
@ -65,6 +69,7 @@ bootcd_dirs:
|
||||||
$(MKDIR) $(BOOTCD_DIR)\disk\reactos
|
$(MKDIR) $(BOOTCD_DIR)\disk\reactos
|
||||||
$(MKDIR) $(BOOTCD_DIR)\disk\install
|
$(MKDIR) $(BOOTCD_DIR)\disk\install
|
||||||
$(MKDIR) $(BOOTCD_DIR)\disk\bootdisk
|
$(MKDIR) $(BOOTCD_DIR)\disk\bootdisk
|
||||||
|
$(MKDIR) $(BOOTCD_DIR)\disk\loader
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@-$(RM) *.bin
|
@-$(RM) *.bin
|
||||||
|
|
|
@ -107,9 +107,7 @@ clean:
|
||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
.PHONY : bootcd
|
.PHONY : bootcd
|
||||||
bootcd : bootcd_dirs $(OBJDIR)/$(TARGET)/setupldr.sys
|
bootcd : bootcd_dirs setup_loader boot_loader
|
||||||
$(CP) $(OBJDIR)/$(TARGET)/setupldr.sys $(BOOTCD_DIR)/disk/reactos/setupldr.sys
|
|
||||||
|
|
||||||
|
|
||||||
.PHONY : bootcd_dirs
|
.PHONY : bootcd_dirs
|
||||||
bootcd_dirs:
|
bootcd_dirs:
|
||||||
|
@ -118,7 +116,16 @@ bootcd_dirs:
|
||||||
$(MKDIR) $(BOOTCD_DIR)/disk/reactos
|
$(MKDIR) $(BOOTCD_DIR)/disk/reactos
|
||||||
$(MKDIR) $(BOOTCD_DIR)/disk/install
|
$(MKDIR) $(BOOTCD_DIR)/disk/install
|
||||||
$(MKDIR) $(BOOTCD_DIR)/disk/bootdisk
|
$(MKDIR) $(BOOTCD_DIR)/disk/bootdisk
|
||||||
|
$(MKDIR) $(BOOTCD_DIR)/disk/loader
|
||||||
|
|
||||||
|
.PHONY : boot_loader
|
||||||
|
boot_loader : $(OBJDIR)/$(TARGET)/freeldr.sys
|
||||||
|
$(CP) $(OBJDIR)/$(TARGET)/freeldr.sys $(BOOTCD_DIR)/disk/loader/freeldr.sys
|
||||||
|
$(CP) ../freeldr.ini $(BOOTCD_DIR)/disk/loader/freeldr.ini
|
||||||
|
|
||||||
|
.PHONY : setup_loader
|
||||||
|
setup_loader : $(OBJDIR)/$(TARGET)/setupldr.sys
|
||||||
|
$(CP) $(OBJDIR)/$(TARGET)/setupldr.sys $(BOOTCD_DIR)/disk/reactos/setupldr.sys
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue