Move CBFS header to a safer place.
authorThomas Jourdan <thomas.jourdan@gmail.com>
Mon, 17 Aug 2009 15:19:52 +0000 (15:19 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Mon, 17 Aug 2009 15:19:52 +0000 (15:19 +0000)
Signed-off-by: Thomas Jourdan <thomas.jourdan@gmail.com>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4547 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

util/cbfstool/util.c

index 054436d8ca763472a130ac8319836d0f31209c64..aa7c2183fc88f3ea51d4156693d217f48f55d9bf 100644 (file)
@@ -220,7 +220,7 @@ int create_rom(struct rom *rom, const unsigned char *filename,
 
        /* This is a pointer to the header for easy access */
        rom->header = (struct cbfs_header *)
-           ROM_PTR(rom, rom->size - 16 - bootblocksize - sizeof(struct cbfs_header));
+           ROM_PTR(rom, rom->size - bootblocksize - sizeof(struct cbfs_header));
        rom->header->magic = htonl(HEADER_MAGIC);
        rom->header->romsize = htonl(romsize);
        rom->header->bootblocksize = htonl(bootblocksize);
@@ -233,7 +233,7 @@ int create_rom(struct rom *rom, const unsigned char *filename,
        /* Write the cbfs master header address at the end of the ROM. */
 
        ROM_WRITEL(rom, rom->size - 4,
-                  0xFFFFFFF0 - bootblocksize - sizeof(struct cbfs_header));
+                  0xFFFFFFFF - bootblocksize - sizeof(struct cbfs_header) + 1);
 
        /* write the empty header */
        rom_set_header(rom, (struct cbfs_file *)rom->ptr, "", -1, CBFS_COMPONENT_NULL);