diff options
author | Christian Borntraeger <borntrae@de.ibm.com> | 2006-10-03 17:40:34 -0400 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-10-03 17:40:34 -0400 |
commit | 73cf9630683e8b9f58485b75a13a21ac9ff33aef (patch) | |
tree | c16b0b74cdb98b882bdf1e8a7a103c3829bd4d1e /drivers/block/Kconfig | |
parent | 96016cfae5739902944aaec9c3cbbbdeabc7a38b (diff) |
Fix bytes <-> kilobytes typo in Kconfig for ramdisk
This is a small fix for a typo in Kconfig. The default value for the block
size is 1024 bytes not 1024 kilobytes.
Signed-off-by: Christian Borntraeger <borntrae@de.ibm.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'drivers/block/Kconfig')
-rw-r--r-- | drivers/block/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index 24ebd1ce6644..17dc22282e14 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig | |||
@@ -406,7 +406,7 @@ config BLK_DEV_RAM_BLOCKSIZE | |||
406 | depends on BLK_DEV_RAM | 406 | depends on BLK_DEV_RAM |
407 | default "1024" | 407 | default "1024" |
408 | help | 408 | help |
409 | The default value is 1024 kilobytes. PAGE_SIZE is a much more | 409 | The default value is 1024 bytes. PAGE_SIZE is a much more |
410 | efficient choice however. The default is kept to ensure initrd | 410 | efficient choice however. The default is kept to ensure initrd |
411 | setups function - apparently needed by the rd_load_image routine | 411 | setups function - apparently needed by the rd_load_image routine |
412 | that supposes the filesystem in the image uses a 1024 blocksize. | 412 | that supposes the filesystem in the image uses a 1024 blocksize. |