diff options
| author | Darren Hart <dvhart@linux.intel.com> | 2012-01-24 21:20:54 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-25 14:30:56 +0000 |
| commit | 8f55130e6fa392a54120b63f50485dee43366a7e (patch) | |
| tree | fd6a142007432feb1a52f5858e32163973e58647 /meta/classes/bootimg.bbclass | |
| parent | 0bf6f8035cfe14dbc2b357bdc3e98d6e081561a1 (diff) | |
| download | poky-8f55130e6fa392a54120b63f50485dee43366a7e.tar.gz | |
bootimg: Fix a math thinko in the block count calculation
Fixes [YOCTO #1852] ... again.
The conversion from sectors to blocks was multiplying by 2 instead
of dividing by 2. Blocks are 1024 bytes, sectors are 512 bytes. The
result was images being much larger than intended.
Reported-by: Tom Zanussi <tom.zanussi@intel.com>
(From OE-Core rev: b35384fa3ca96b31c63d764322215abced2066e4)
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/bootimg.bbclass')
| -rw-r--r-- | meta/classes/bootimg.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass index df3ee7315a..e65bef7cca 100644 --- a/meta/classes/bootimg.bbclass +++ b/meta/classes/bootimg.bbclass | |||
| @@ -133,7 +133,7 @@ build_hddimg() { | |||
| 133 | SECTORS=$(expr $SECTORS + $(expr $DIR_SECTORS + $FAT_SECTORS)) | 133 | SECTORS=$(expr $SECTORS + $(expr $DIR_SECTORS + $FAT_SECTORS)) |
| 134 | 134 | ||
| 135 | # Determine the final size in blocks accounting for some padding | 135 | # Determine the final size in blocks accounting for some padding |
| 136 | BLOCKS=$(expr $(expr $SECTORS \* 2) + ${BOOTIMG_EXTRA_SPACE}) | 136 | BLOCKS=$(expr $(expr $SECTORS / 2) + ${BOOTIMG_EXTRA_SPACE}) |
| 137 | 137 | ||
| 138 | # Ensure total sectors is an integral number of sectors per | 138 | # Ensure total sectors is an integral number of sectors per |
| 139 | # track or mcopy will complain. Sectors are 512 bytes, and we | 139 | # track or mcopy will complain. Sectors are 512 bytes, and we |
