首页 > 解决方案 > Yocto面临内核恐慌问题:内核恐慌 - 不同步:VFS:无法在未知块(0,0)上挂载root fs

问题描述

场景:我在 Yocto linux 项目中工作。我创建了自己的带有 tar.gz 扩展名的 rootfs。而且我已经构建了 linux 内核(使用 bitbake linux-kernel-rt)。我无法加载内核和 rootfs。

谁能解释可能是什么问题。

以下是相同的日志。

VFS: Cannot open root device "mmcblk0p3" or unknown-block(0,0): error -6
Please append a correct "root=" boot option; here are the available partitions:
0100            4096 ram0
 (driver?)
0101            4096 ram1
 (driver?)
0102            4096 ram2
 (driver?)
0103            4096 ram3
 (driver?)
0104            4096 ram4
 (driver?)
0105            4096 ram5
 (driver?)
0106            4096 ram6
 (driver?)
0107            4096 ram7
 (driver?)
0108            4096 ram8
 (driver?)
0109            4096 ram9
 (driver?)
010a            4096 ram10
 (driver?)
010b            4096 ram11
 (driver?)
010c            4096 ram12
 (driver?)
010d            4096 ram13
 (driver?)
010e            4096 ram14
 (driver?)
010f            4096 ram15
 (driver?)
1f00           65536 mtdblock0
 (driver?)
1f01           65536 mtdblock1
 (driver?)
103:00000  250059096 nvme0n1
 (driver?)
  103:00001   52428800 nvme0n1p1 7a0121e2-01

  103:00002   52428800 nvme0n1p2 7a0121e2-02

  103:00003    1048576 nvme0n1p3 7a0121e2-03

  103:00004   52428800 nvme0n1p4 7a0121e2-04

Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
Kernel Offset: 0x27c00000 from 0xffffffff81000000 (relocation range: 0xffffffff8

标签: linux-kernelyoctorootfsinitrdinitramfs

解决方案


I had the same issue last week, and in my boot, I could see that the yocto boot was happening using a RAM Disk, and it's size was specified as 409600 (in my case and I believe the default value is 4096, which I see in your error here), and I got the same error you did when I tried installing more images onto the build. I'm guessing your issue might be the same. Try increasing the size of your RAM disk, and it's specified inside the recipes-bsp/grub/grub-efi file. When I increased the value, it worked, but it obviously is board specific, so do watch out.


推荐阅读