summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2018-11-16 16:37:58 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2018-11-30 08:31:10 +0100
commit363ffc7f48073a16df82e02703141fe95235c7e9 (patch)
tree4d9da18242b707463b62540fc17d477510da2f60 /scripts
parentbca55b664adb3843c1a63e2ad666bd879b4690a8 (diff)
downloadbarebox-363ffc7f48073a16df82e02703141fe95235c7e9.tar.gz
barebox-363ffc7f48073a16df82e02703141fe95235c7e9.tar.xz
scripts: imx-image: Fix typos in comments
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/imx/imx-image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/imx/imx-image.c b/scripts/imx/imx-image.c
index fa93e47917..9c173cd23b 100644
--- a/scripts/imx/imx-image.c
+++ b/scripts/imx/imx-image.c
@@ -797,12 +797,12 @@ int main(int argc, char *argv[])
}
/*
- * Add HEADER_LEN to the image size for the blank aera + IVT + DCD.
+ * Add HEADER_LEN to the image size for the blank area + IVT + DCD.
* Align up to a 4k boundary, because:
* - at least i.MX5 NAND boot only reads full NAND pages and misses the
* last partial NAND page.
* - i.MX6 SPI NOR boot corrupts the last few bytes of an image loaded
- * in ver funy ways when the image size is not 4 byte aligned
+ * in very funny ways when the image size is not 4 byte aligned
*/
data.load_size = roundup(data.image_size + header_len, 0x1000);