diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2019-03-15 10:13:12 +0000 |
---|---|---|
committer | Corentin Labbe <clabbe@baylibre.com> | 2019-03-15 10:20:45 +0000 |
commit | 4b2585dc0a1343849ef7cabdfe446a7ce0abab8d (patch) | |
tree | 470e93d540f3bade633774f40072d7bc4a6cc0e8 /meta-agl-bsp/recipes-kernel/linux | |
parent | 9c92fde0725f4bce3ff10d5a3e230c9a5fa53325 (diff) |
meta-agl-bsp: recipes-kernel: linux: Increase BLK_RAM size
For SPEC-2075, I tried to boot an upsquare using NBD and it fail with:
[ 8.380343] EXT4-fs (ram0): bad geometry: block count 8492 exceeds size of device (4096 blocks)
[ 8.390509] EXT4-fs (ram0): bad geometry: block count 8492 exceeds size of device (4096 blocks)
For having a successfull boot, I needed to increase BLK_DEV_RAM_SIZE to
a larger value (16384).
Instead of increasing to only 16384, I use 65536 which is the value used in
other meta-xxxx like meta-freescale.
This patch increase BLK_DEV_RAM_SIZE to 65536.
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Change-Id: I0792be1038d0bcd120c3c69c90cd6e1966c9b1ee
Diffstat (limited to 'meta-agl-bsp/recipes-kernel/linux')
-rw-r--r-- | meta-agl-bsp/recipes-kernel/linux/linux/ramdisk.cfg | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-agl-bsp/recipes-kernel/linux/linux/ramdisk.cfg b/meta-agl-bsp/recipes-kernel/linux/linux/ramdisk.cfg index 41530dd6e..3d44de805 100644 --- a/meta-agl-bsp/recipes-kernel/linux/linux/ramdisk.cfg +++ b/meta-agl-bsp/recipes-kernel/linux/linux/ramdisk.cfg @@ -1 +1,2 @@ CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_SIZE=65536 |