11e8ecdd94
* This should support both GPT and MBR formatted partitions. * To boot Haiku from a GPT partition, it must have the correct BFS UUID for the partition. * Tools such as gdisk/gptfdisk can create partitions with the correct BFS UUID.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
# Set anyboot file name and directory defaults.
|
|
HAIKU_ANYBOOT_NAME ?= $(HAIKU_DEFAULT_ANYBOOT_NAME) ;
|
|
HAIKU_ANYBOOT_DIR ?= $(HAIKU_DEFAULT_ANYBOOT_DIR) ;
|
|
HAIKU_ANYBOOT = $(HAIKU_ANYBOOT_NAME) ;
|
|
HAIKU_ANYBOOT_LABEL ?= $(HAIKU_DEFAULT_ANYBOOT_LABEL) ;
|
|
|
|
rule BuildAnybootImage anybootImage : mbrPart : isoPart : imageFile {
|
|
local anyboot = <build>anyboot ;
|
|
|
|
Depends $(anybootImage) : $(anyboot) ;
|
|
Depends $(anybootImage) : $(isoPart) ;
|
|
Depends $(anybootImage) : $(mbrPart) ;
|
|
Depends $(anybootImage) : $(imageFile) ;
|
|
|
|
BuildAnybootImage1 $(anybootImage) : $(anyboot) $(isoPart) $(mbrPart) $(imageFile) ;
|
|
}
|
|
|
|
actions BuildAnybootImage1 {
|
|
$(2[1]) $(1) $(2[2]) $(2[3]) $(2[4])
|
|
}
|
|
|
|
local baseMBR = base_mbr.bin ;
|
|
local mbrSource = [ FDirName $(HAIKU_TOP) src bin writembr mbr.S ] ;
|
|
BuildMBR $(baseMBR) : $(mbrSource) ;
|
|
MakeLocate $(baseMBR) : $(HAIKU_OUTPUT_DIR) ;
|
|
MakeLocate $(HAIKU_ANYBOOT) : $(HAIKU_ANYBOOT_DIR) ;
|
|
BuildAnybootImage $(HAIKU_ANYBOOT) : $(baseMBR) : $(HAIKU_CD_BOOT_IMAGE)
|
|
: $(HAIKU_IMAGE_NAME) ;
|
|
|
|
# TODO: this one seems to cause the build to fail each other run (caching?)
|
|
#RmTemps $(HAIKU_ANYBOOT) : $(baseMBR) ;
|
|
RmTemps $(HAIKU_ANYBOOT) : $(HAIKU_CD_BOOT_IMAGE) ;
|
|
RmTemps $(HAIKU_ANYBOOT) : $(HAIKU_IMAGE_NAME) ;
|
|
RmTemps $(HAIKU_ANYBOOT) : $(HAIKU_BOOT_FLOPPY) ;
|
|
|
|
NotFile haiku-anyboot-image ;
|
|
Depends haiku-anyboot-image : $(HAIKU_ANYBOOT) ;
|