Skip to content
Snippets Groups Projects
Commit 73cf9630 authored by Christian Borntraeger's avatar Christian Borntraeger Committed by Adrian Bunk
Browse files

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: default avatarChristian Borntraeger <borntrae@de.ibm.com>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent 96016cfa
No related branches found
No related tags found
No related merge requests found
...@@ -406,7 +406,7 @@ config BLK_DEV_RAM_BLOCKSIZE ...@@ -406,7 +406,7 @@ config BLK_DEV_RAM_BLOCKSIZE
depends on BLK_DEV_RAM depends on BLK_DEV_RAM
default "1024" default "1024"
help help
The default value is 1024 kilobytes. PAGE_SIZE is a much more The default value is 1024 bytes. PAGE_SIZE is a much more
efficient choice however. The default is kept to ensure initrd efficient choice however. The default is kept to ensure initrd
setups function - apparently needed by the rd_load_image routine setups function - apparently needed by the rd_load_image routine
that supposes the filesystem in the image uses a 1024 blocksize. that supposes the filesystem in the image uses a 1024 blocksize.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment