mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
[tools] firmware-utils/mkcsysimg: minor bugfix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16556 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
60bb2235b3
commit
9a2d1d7128
@ -577,7 +577,7 @@ block_writeout_hdr(FILE *outfile, struct csys_block *block)
|
||||
/* setup header fields */
|
||||
memcpy(hdr.sig, block->sig, 4);
|
||||
hdr.addr = HOST_TO_LE32(block->addr);
|
||||
hdr.size = HOST_TO_LE32(block->align-block->size_hdr);
|
||||
hdr.size = HOST_TO_LE32(block->size - block->size_hdr - block->size_csum);
|
||||
|
||||
DBG(1,"writing header for block");
|
||||
res = write_out_data(outfile, (uint8_t *)&hdr, sizeof(hdr),NULL);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user