mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Zcomax device firmware tool endianness fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22885 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -297,7 +297,7 @@ static int build_fw(void)
|
||||
/* fill firmware header */
|
||||
hdr = (struct fw_header *) p;
|
||||
hdr->magic = HOST_TO_LE32(MAGIC_FIRMWARE);
|
||||
hdr->length = HOST_TO_LE32(buflen) - sizeof(struct fw_header);
|
||||
hdr->length = HOST_TO_LE32(buflen - sizeof(struct fw_header));
|
||||
p += sizeof(struct fw_header);
|
||||
|
||||
/* fill kernel block header */
|
||||
|
||||
Reference in New Issue
Block a user