Stefan Reinauer ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2014
-gerrit commit a24a44ada124807e566b8fcc9d2b9aeadd91e998 Author: Stefan Reinauer <[email protected]> Date: Sat Dec 8 23:10:08 2012 +0100 Revert "armv7: use __cpu_to_le32 for endianness of reset vector instruction" This reverts commit 67ce04ea9a9c7e30dd96b9f36a938b51655e8a44 Change-Id: I2781c9275c03bcabf0211e1b6cd1aa8f13005ae0 --- util/cbfstool/common.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/util/cbfstool/common.c b/util/cbfstool/common.c index fdedfbd..7e33c97 100644 --- a/util/cbfstool/common.c +++ b/util/cbfstool/common.c @@ -23,7 +23,6 @@ #include <stdlib.h> #include <string.h> #include <libgen.h> -#include <asm/byteorder.h> #include "common.h" #include "cbfs.h" #include "elf.h" @@ -581,7 +580,7 @@ int create_cbfs_image(const char *romfile, uint32_t _romsize, * When executing the branch, the PC will read as the address * of current instruction + 8. */ - arm_vec[0] = __cpu_to_le32(0xea00000e); // branch to . + 64 bytes + arm_vec[0] = htonl(0x0e0000ea); // branch to . + 64 bytes master_header->magic = ntohl(CBFS_HEADER_MAGIC); master_header->version = ntohl(VERSION); -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

