[haiku-commits] haiku: hrev54885 - build/jam

  • From: Alex von Gluck IV <kallisti5@xxxxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 12 Jan 2021 16:05:46 -0500 (EST)

hrev54885 adds 1 changeset to branch 'master'
old head: 522c141d53875e569ca12262c7b3b5f5151d3e70
new head: f8650bc2db0e87d9577f109bf92d6256ebafff0a
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=f8650bc2db0e+%5E522c141d5387

----------------------------------------------------------------------------

f8650bc2db0e: jam/ArchitectureRules: Bump SDIMAGE_BEGIN to 2KiB
  
  * If we start at 0 we overwrite the partition table
    with the EFI boot filesystem
  
  Change-Id: I7d1d5d65cdaf78f3bd3b87672e1e8e161f78ce75

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev54885
Commit:      f8650bc2db0e87d9577f109bf92d6256ebafff0a
URL:         https://git.haiku-os.org/haiku/commit/?id=f8650bc2db0e
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Tue Jan 12 21:01:50 2021 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
build/jam/ArchitectureRules | 4 ++--

----------------------------------------------------------------------------

diff --git a/build/jam/ArchitectureRules b/build/jam/ArchitectureRules
index e84fc1b59c..91569204d6 100644
--- a/build/jam/ArchitectureRules
+++ b/build/jam/ArchitectureRules
@@ -252,7 +252,7 @@ rule KernelArchitectureSetup architecture
                        HAIKU_KERNEL_PLATFORM ?= efi ;
                        HAIKU_BOOT_TARGETS += efi ;
 
-                       HAIKU_BOOT_SDIMAGE_BEGIN = 0 ; # in KiB
+                       HAIKU_BOOT_SDIMAGE_BEGIN = 2 ; # in KiB
 
                        HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 1440 ;
                        # offset in floppy image (>= sizeof(haiku_loader))
@@ -277,7 +277,7 @@ rule KernelArchitectureSetup architecture
                        HAIKU_KERNEL_PLATFORM ?= efi ;
                        HAIKU_BOOT_TARGETS += efi ;
 
-                       HAIKU_BOOT_SDIMAGE_BEGIN = 0 ; # KiB
+                       HAIKU_BOOT_SDIMAGE_BEGIN = 2 ; # KiB
 
                        HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 1440 ;
                        # offset in floppy image (>= sizeof(haiku_loader))


Other related posts:

  • » [haiku-commits] haiku: hrev54885 - build/jam - Alex von Gluck IV