[elbe-devel] [PATCH 1/6] buildchroot: correct cd size help message
bage at linutronix.de
bage at linutronix.de
Fri Aug 30 12:58:25 CEST 2019
From: Bastian Germann <bage at linutronix.de>
The cdrom-size parameter for `elbe buildchroot` does actually take bytes,
not megabytes.
Signed-off-by: Bastian Germann <bage at linutronix.de>
---
elbepack/commands/buildchroot.py | 2 +-
elbepack/commands/mkcdrom.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/elbepack/commands/buildchroot.py b/elbepack/commands/buildchroot.py
index 5761f5e8..dceea964 100644
--- a/elbepack/commands/buildchroot.py
+++ b/elbepack/commands/buildchroot.py
@@ -58,7 +58,7 @@ def run_command(argv):
action="store",
dest="cdrom_size",
default=CDROM_SIZE,
- help="ISO CD size in MB")
+ help="Source ISO CD size in bytes")
oparser.add_option("--skip-validation", action="store_true",
dest="skip_validation", default=False,
diff --git a/elbepack/commands/mkcdrom.py b/elbepack/commands/mkcdrom.py
index f00e9645..d8a71ded 100644
--- a/elbepack/commands/mkcdrom.py
+++ b/elbepack/commands/mkcdrom.py
@@ -52,7 +52,7 @@ def run_command(argv):
action="store",
dest="cdrom_size",
default=CDROM_SIZE,
- help="ISO CD size in MB")
+ help="Source ISO CD size in bytes")
(opt, args) = oparser.parse_args(argv)
--
2.20.1
More information about the elbe-devel
mailing list