summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGaël PORTAY <gael.portay@savoirfairelinux.com>2017-11-16 22:51:22 -0500
committerEnrico Jorns <e.joerns@tu-bs.de>2017-11-17 15:27:11 +0100
commitb4c5f9fd82ff18b8cf7d63a614bce2928e2eb9bd (patch)
tree9d2f5513c718bccbf686eef642a2d479df7bdfc8
parent9287b8f339b5cdb0ded9e83edc7ebe99204c2aad (diff)
downloadmeta-ptx-b4c5f9fd82ff18b8cf7d63a614bce2928e2eb9bd.tar.gz
meta-ptx-b4c5f9fd82ff18b8cf7d63a614bce2928e2eb9bd.tar.xz
classes: genimage: fix typos
This fixes severals typos. Signed-off-by: Gaël PORTAY <gael.portay@savoirfairelinux.com>
-rw-r--r--classes/genimage.bbclass13
1 files changed, 6 insertions, 7 deletions
diff --git a/classes/genimage.bbclass b/classes/genimage.bbclass
index 2f07640..3699160 100644
--- a/classes/genimage.bbclass
+++ b/classes/genimage.bbclass
@@ -3,17 +3,16 @@
# Class to generate disk images using the `genimage` tool.
#
# In order to build an image, your recipe must inherit the genimage class and
-# have # a valid genimage configuration file in SRC_URI, named
-# `genimage.config`.
+# have a valid genimage configuration file in SRC_URI, named `genimage.config`.
#
# inherit genimage
#
-# SRC_URI += "file://genimage.conf"
+# SRC_URI += "file://genimage.config"
#
# You should also list all recipes that create the artifacts used by genimage
# to build the desired image.
#
-# The main purpose of genimage is to create an entire SD, eMMC, NAND, or ubi
+# The main purpose of genimage is to create an entire SD, eMMC, NAND, or UBI
# images with multilple partitions based on different images (kernel,
# bootloader, rootfs, ...)
#
@@ -43,11 +42,11 @@
# GENIMAGE_ROOTFS_IMAGE_FSTYPE = "tar.xz"
#
# The split-up is controlled by your genimage config file, using the
-# 'mointpoint' options:
+# 'mountpoint' options:
#
# datafs {
# [...]
-# mointpoint = "/home"
+# mountpoint = "/home"
# }
#
# rootfs {
@@ -79,7 +78,7 @@ do_build[nostamp] = "1"
GENIMAGE_IMAGE_SUFFIX ?= "img"
GENIMAGE_IMAGE_NAME = "${IMAGE_BASENAME}-${MACHINE}-${DATETIME}"
-# Don't include the DATETIME variable in the sstate package sigantures
+# Don't include the DATETIME variable in the sstate package signature
GENIMAGE_IMAGE_NAME[vardepsexclude] = "DATETIME"
GENIMAGE_IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}"