mkdir 并在 initramfs 中挂载

mkdir and mount in initramfs

我正在编写 initramfs,在 busybox 中执行,我在其中使用这些命令挂载分区:

/bin/busybox mount -n -t proc proc /proc
mount -n -t devtmpfs devtmpfs /dev
mount -n -t sysfs sysfs /sys
mount -n -t tmpfs inittemp /mnt
mkdir /mnt/saved
mount -n -t "${rootfstype}" -o "${rootflags}" ${device} /mnt/saved

但是当系统启动时,我有这个错误:

mount: mounting /dev/mmcblk0p2 on /mnt/saved failed: No such file or directory

我知道当找不到设备时,会出现类似 Device does not exist 的消息,所以我认为问题出在尚未正确创建的目录 /mnt/saved 上。

我尝试在 mkdir 之后添加一个 ls -l /mnt 以检查目录是否已正确创建,但大多数情况下,如果我这样做,错误就会消失。所以我虽然问题可能是同步问题(tmpfs,很奇怪!)所以我尝试了一些其他的事情,比如在目录中创建一个虚拟文件来强制一种同步。这可行,但这是一个肮脏的解决方法,我想找到问题的真正原因以构建一个干净的解决方案。

在我写问题的时候,我终于自己找到了解决方案……我 post 无论如何,以防有人像我一样被卡住。

实际上,busyboxmount命令不会显示有关设备的消息,如果找不到它,但总是显示No such file or directory

我的问题实际上来自尚未准备好的根设备,因此还不在 /dev 目录中。为了使其正常工作,我只是在 mount:

之前添加了这一行
while ${rootwait} && ! [ -b "${device}" ]; do sleep 1; done