diff --git a/build/jam/ImageRules b/build/jam/ImageRules index 98fd2f4672..f5617c26ae 100644 --- a/build/jam/ImageRules +++ b/build/jam/ImageRules @@ -1553,6 +1553,7 @@ rule BuildCDBootImage image : bootfloppy : bootefi : extrafiles Depends $(image) : $(bootefi) ; Depends $(image) : $(extrafiles) ; BOOTIMG on $(image) = $(bootfloppy) ; + VOLID on $(image) = haiku-$(HAIKU_VERSION)-$(TARGET_ARCH) ; if $(HAIKU_ANYBOOT_LEGACY) = 1 { BuildCDBootImageMBR $(image) : $(bootfloppy) $(extrafiles) ; @@ -1565,14 +1566,14 @@ rule BuildCDBootImage image : bootfloppy : bootefi : extrafiles actions BuildCDBootImageMBR { $(RM) $(<) - xorriso -as mkisofs -b $(BOOTIMG) -r -J -V bootimg -o $(<) $(>[1]) $(>[2-]) + xorriso -as mkisofs -b $(BOOTIMG) -r -J -V $(VOLID) -o $(<) $(>[1]) $(>[2-]) } actions BuildCDBootImageEFI { $(RM) $(<) xorriso -as mkisofs -b $(BOOTIMG) -eltorito-alt-boot -no-emul-boot -e $(BOOTEFI) \ - -r -J -V bootimg -o $(<) $(>[1]) $(>[2]) $(>[3-]) + -r -J -V $(VOLID) -o $(<) $(>[1]) $(>[2]) $(>[3-]) } @@ -1587,6 +1588,7 @@ rule BuildCDBootPPCImage image : hfsmaps : elfloader : coffloader : chrpscript Depends $(image) : $(extrafiles) ; Depends $(image) : $(hfsmaps) ; MAPS on $(image) = $(hfsmaps) ; + VOLID on $(image) = haiku-$(HAIKU_VERSION)-$(TARGET_ARCH) ; BuildCDBootPPCImage1 $(image) : $(elfloader) $(coffloader) $(chrpscript) $(extrafiles) ; @@ -1607,7 +1609,7 @@ actions BuildCDBootPPCImage1 bind MAPS cp $(>[4]) $(HAIKU_OUTPUT_DIR)/cd/ xorriso -as mkisofs -v -hfs -part -map $(MAPS) -no-desktop -hfs-volid bootimg \ - -V bootimg -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/boot -prep-boot \ + -V $(VOLID) -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/boot -prep-boot \ boot/haikuloader.xcf -r -o $(<) $(HAIKU_OUTPUT_DIR)/cd $(RM) -r $(HAIKU_OUTPUT_DIR)/cd }