switch_root busybox init问题?

时间:2015-06-12 23:26:45

标签: linux rootfs

我在使用busybox的嵌入式Linux环境中。我已阅读several posts,试图了解如何使用switch_root。我试过这个:

exec switch_root -c /dev/console /mnt/newroot /bin/busybox init

switch_root帮助打印并向我显示新登录信息:

[root@buildroot ~]# exec switch_root -c /dev/console /mnt/newroot /bin/busybox init
BusyBox v1.21.0 (2015-04-24 18:14:40 MDT) multi-call binary.
busybox init
Usage: switch_root [-c /dev/console] NEW_ROOT NEW_INIT [ARGS]root /bin/busybox in

Free initramfs and switch to another root fs:
chroot to NEW_ROOT, delete all in /, move NEW_ROOT to /,
execute NEW_INIT. PID must be 1. NEW_ROOT must be a mountpoint.

        -c DEV  Reopen stdio to DEV after switch


Welcome to Buildroot
buildroot login:

当我登录时, newroot 尚未加载,旧版仍然存在。这是因为我是直接从命令行运行此命令而不是从某种init脚本运行吗?

我在阅读本文时发现他们在运行switch_root之前执行了其他步骤:

mount --move /sys /newroot/sys
mount --move /proc /newroot/proc
mount --move /dev /newroot/dev

首先,这让我很困惑。为什么我要在运行switch_root之前运行这些命令? switch_root不对我这样做吗?

无论如何,我继续尝试先运行它们,然后运行switch_root命令。但是,这完全可以解决问题:

[root@buildroot /]# switch_root -c /dev/console /mnt/newroot /bin/busybox init
BusyBox v1.21.0 (2015-04-24 18:14:40 MDT) multi-call binary.

Usage: switch_root [-c /dev/console] NEW_ROOT NEW_INIT [ARGS]

Free initramfs and switch to another root fs:
chroot to NEW_ROOT, delete all in /, move NEW_ROOT to /,
execute NEW_INIT. PID must be 1. NEW_ROOT must be a mountpoint.

        -c DEV  Reopen stdio to DEV after switch

can't open /dev/ttyS0: No such file or directoryole /mnt/newroot /bin/busybox init
can't open /dev/ttyS0: No such file or directory
can't open /dev/ttyS0: No such file or directory
can't open /dev/ttyS0: No such file or directory
can't open /dev/ttyS0: No such file or directory
can't open /dev/ttyS0: No such file or directory
can't open /dev/ttyS0: No such file or directory
... message continues to repeat ...

所以它看起来是因为我已经移动了dev的mount,当我的init运行并尝试将getty放在我的串口上时它无法找到它?混乱........

我在这里遗漏了switch_root的基本信息吗?或者只需要一些命令行修改?

1 个答案:

答案 0 :(得分:4)

首先,正如其帮助文本所说switch_root必须作为PID 1执行。 因此,需要使用exec来调用initscript。

其次,手动移动tmpfilesystems是(如你所见)一个坏主意。 您收到的错误是因为您的/dev/ttyS0电话已移开您的控制台(mount --move)。 switch_root会自动删除这些安装。 因此,您的第二个init(由switch_root调用)需要再次安装它们。

第三,这是我在initramfs中使用的init脚本的简短版本,可以帮助你:

#!/bin/sh

ROOT="/mnt/.root"
ROOT_DEV="/dev/sdb2"

echo "init from initramfs"

# mount temporary filesystems
mount -n -t devtmpfs devtmpfs /dev
mount -n -t proc     proc     /proc
mount -n -t sysfs    sysfs    /sys
mount -n -t tmpfs    tmpfs    /run

# mount new root
[ -d ${ROOT} ] || mkdir -p ${ROOT}
mount ${ROOT_DEV} ${ROOT}

# switch to new rootfs and exec init
cd ${ROOT}
exec switch_root . "/sbin/init" "$@"

希望这有帮助。