Commit 337bed413e9c134c5bf45ad3ec50012a593c603a

Authored by H. Peter Anvin
1 parent 73d8a12f05

bzip2/lzma: clarify the meaning of the CONFIG_RD_ options

Impact: Kconfig clarification

Make it clear that the CONFIG_RD_* options are about what formats are
supported, not about what formats are actually being used.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>

Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff

... ... @@ -46,7 +46,7 @@
46 46 If you are not sure, leave it set to "0".
47 47  
48 48 config RD_GZIP
49   - bool "Initial ramdisk compressed using gzip" if EMBEDDED
  49 + bool "Support initial ramdisks compressed using gzip" if EMBEDDED
50 50 default y
51 51 depends on BLK_DEV_INITRD
52 52 select DECOMPRESS_GZIP
... ... @@ -55,7 +55,7 @@
55 55 If unsure, say Y.
56 56  
57 57 config RD_BZIP2
58   - bool "Initial ramdisk compressed using bzip2" if EMBEDDED
  58 + bool "Support initial ramdisks compressed using bzip2" if EMBEDDED
59 59 default !EMBEDDED
60 60 depends on BLK_DEV_INITRD
61 61 select DECOMPRESS_BZIP2
... ... @@ -64,7 +64,7 @@
64 64 If unsure, say N.
65 65  
66 66 config RD_LZMA
67   - bool "Initial ramdisk compressed using lzma" if EMBEDDED
  67 + bool "Support initial ramdisks compressed using lzma" if EMBEDDED
68 68 default !EMBEDDED
69 69 depends on BLK_DEV_INITRD
70 70 select DECOMPRESS_LZMA