ArchitectureRules: Increase HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET on x86.

The bootloader is larger after adding zstd and needs more space now.
384 is the value used already on PPC and SPARC. Fixes generating
floppyboot archives for anyboot images following recent changes.
This commit is contained in:
Augustin Cavalier 2021-10-19 20:59:26 -04:00
parent 945c0e0786
commit c5325c6690

View File

@ -268,7 +268,7 @@ rule KernelArchitectureSetup architecture
HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 2880 ; # in kB
# offset in floppy image (>= sizeof(haiku_loader))
HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 320 ; # in kB
HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 384 ; # in kB
# nasm is required for target arch x86
if ! $(HAIKU_NASM) {
@ -293,7 +293,7 @@ rule KernelArchitectureSetup architecture
HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 2880 ; # in kB
# offset in floppy image (>= sizeof(haiku_loader))
HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 320 ; # in kB
HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 384 ; # in kB
# x86_64 kernel source is under arch/x86.
HAIKU_KERNEL_ARCH_DIR = x86 ;