diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-03-28 19:07:13 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-03-28 19:09:48 -0400 |
commit | 337bed413e9c134c5bf45ad3ec50012a593c603a (patch) | |
tree | 3060260a23be3face79fbbe8681234474d4a8027 /usr/Kconfig | |
parent | 73d8a12f05292d86623b4ec7bf5fd75d5ad5f687 (diff) |
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>
Diffstat (limited to 'usr/Kconfig')
-rw-r--r-- | usr/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/Kconfig b/usr/Kconfig index 5166078d45f2..fb9a6460f45d 100644 --- a/usr/Kconfig +++ b/usr/Kconfig | |||
@@ -46,7 +46,7 @@ config INITRAMFS_ROOT_GID | |||
46 | If you are not sure, leave it set to "0". | 46 | If you are not sure, leave it set to "0". |
47 | 47 | ||
48 | config RD_GZIP | 48 | config RD_GZIP |
49 | bool "Initial ramdisk compressed using gzip" if EMBEDDED | 49 | bool "Support initial ramdisks compressed using gzip" if EMBEDDED |
50 | default y | 50 | default y |
51 | depends on BLK_DEV_INITRD | 51 | depends on BLK_DEV_INITRD |
52 | select DECOMPRESS_GZIP | 52 | select DECOMPRESS_GZIP |
@@ -55,7 +55,7 @@ config RD_GZIP | |||
55 | If unsure, say Y. | 55 | If unsure, say Y. |
56 | 56 | ||
57 | config RD_BZIP2 | 57 | config RD_BZIP2 |
58 | bool "Initial ramdisk compressed using bzip2" if EMBEDDED | 58 | bool "Support initial ramdisks compressed using bzip2" if EMBEDDED |
59 | default !EMBEDDED | 59 | default !EMBEDDED |
60 | depends on BLK_DEV_INITRD | 60 | depends on BLK_DEV_INITRD |
61 | select DECOMPRESS_BZIP2 | 61 | select DECOMPRESS_BZIP2 |
@@ -64,7 +64,7 @@ config RD_BZIP2 | |||
64 | If unsure, say N. | 64 | If unsure, say N. |
65 | 65 | ||
66 | config RD_LZMA | 66 | config RD_LZMA |
67 | bool "Initial ramdisk compressed using lzma" if EMBEDDED | 67 | bool "Support initial ramdisks compressed using lzma" if EMBEDDED |
68 | default !EMBEDDED | 68 | default !EMBEDDED |
69 | depends on BLK_DEV_INITRD | 69 | depends on BLK_DEV_INITRD |
70 | select DECOMPRESS_LZMA | 70 | select DECOMPRESS_LZMA |