summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorJon Ringle <jringle@gridpoint.com>2014-04-22 12:21:59 -0400
committerMichael Olbrich <m.olbrich@pengutronix.de>2014-04-23 08:32:18 +0200
commit36d6ca13d5ad0b7c48c9f0ff1fe3f86a817dbba9 (patch)
tree10da26c0a2f29b4bc1dbe0f11e576153b778d8b5 /platforms
parentd00f6ce1e06ef3b48b7ac117a2fb197fd04c9227 (diff)
downloadptxdist-36d6ca13d5ad0b7c48c9f0ff1fe3f86a817dbba9.tar.gz
ptxdist-36d6ca13d5ad0b7c48c9f0ff1fe3f86a817dbba9.tar.xz
image_tgz: Make label optional
Signed-off-by: Jon Ringle <jringle@gridpoint.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/image_tgz.in14
1 files changed, 12 insertions, 2 deletions
diff --git a/platforms/image_tgz.in b/platforms/image_tgz.in
index 17b0aed3c..8cda6f62b 100644
--- a/platforms/image_tgz.in
+++ b/platforms/image_tgz.in
@@ -1,8 +1,18 @@
## SECTION=image
-config IMAGE_TGZ
+menuconfig IMAGE_TGZ
bool
- prompt "Generate images/root.tgz"
+ prompt "Generate images/root.tgz "
help
Build a tar.gz archive of the root filesystem, containing the
right owner/group and access permissions.
+
+if IMAGE_TGZ
+config IMAGE_TGZ_LABEL
+ string
+ prompt "label"
+ default "${PTXCONF_PROJECT_VENDOR}-${PTXCONF_PROJECT}${PTXCONF_PROJECT_VERSION}"
+ help
+ This string gets expanded to form the label. An empty string produces no label.
+
+endif