Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Thu, 28 Mar 2019 23:43:21
Message-Id: 1553815071.cfcf97fd47f6ffa759536da9ac6faf2c287e2f99.whissi@gentoo
1 commit: cfcf97fd47f6ffa759536da9ac6faf2c287e2f99
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 28 23:17:51 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 23:17:51 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=cfcf97fd
7
8 longusage(): fix shell completion
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 gen_cmdline.sh | 19 ++++++++++++-------
13 1 file changed, 12 insertions(+), 7 deletions(-)
14
15 diff --git a/gen_cmdline.sh b/gen_cmdline.sh
16 index 31b1d79..86150fa 100755
17 --- a/gen_cmdline.sh
18 +++ b/gen_cmdline.sh
19 @@ -185,14 +185,19 @@ longusage() {
20 echo " separate the filenames with a comma"
21 echo " --firmware-install Enable installing firmware onto root filesystem"
22 echo " (only available for kernels older than v4.14)"
23 - echo " --integrated-initramfs, --no-integrated-initramfs"
24 - echo " Include/exclude the generated initramfs in the kernel"
25 + echo " --integrated-initramfs"
26 + echo " Include the generated initramfs in the kernel"
27 echo " instead of keeping it as a separate file"
28 - echo " --wrap-initrd, --no-wrap-initrd"
29 - echo " Wrap initramfs using mkimage for u-boot boots"
30 - echo " --compress-initramfs, --no-compress-initramfs,"
31 - echo " --compress-initrd, --no-compress-initrd"
32 - echo " Compress or do not compress the generated initramfs"
33 + echo " --no-integrated-initramfs"
34 + echo " Do not include the generated initramfs in the kernel"
35 + echo " --wrap-initrd Wrap initramfs using mkimage for u-boot boots"
36 + echo " --no-wrap-initrd Do not wrap initramfs using mkimage for u-boot boots"
37 + echo " --compress-initramfs"
38 + echo " Compress initramfs"
39 + echo " --no-compress-initramfs"
40 + echo " Do not compress initramfs"
41 + echo " --compress-initrd Compress initrd"
42 + echo " --no-compress-initrd Do not compress initrd"
43 echo " --compress-initramfs-type=<arg>"
44 echo " Compression type for initramfs (best, xz, lzma, bzip2, gzip, lzop)"
45 echo " --strip=(all|kernel|modules|none)"