"fastboot boot <kernel>" 在内部是如何工作的?

How does "fastboot boot <kernel>" works internally?

Fastboot 具有以下便利功能feature(如果启动自定义映像失败,设备下次会神奇地启动默认映像,一切都会好起来的):

To boot with a host-side kernel image

This command allows you to download a kernel image (and optional root filesystem image) and boot the phone with those, instead of using the kernel and rootfs in the boot flash partition. It is very useful while developing a kernel or modifying the rootfs.

fastboot boot < kernel > [ < ramdisk > ]

有谁知道它的内部工作原理吗?是否在重新启动设备之前将内核复制到一个特殊的启动分区? (更新:正如答案所指出的,没有重启,因为 fastboot 是启动过程中的一个步骤,这基本上使我的问题变得毫无意义。)我正在查看源代码fastboot,但它似乎只包含主机端发生的事情,而不是设备上发生的事情。

我的意思是,刷机功能的工作原理非常简单,我可以通过将带有自定义内核的启动映像复制到 boot 分区来模仿它,例如,通过:

dd if='<my_boot.img>' of='/dev/block/platform/msm_sdcc.1/by-name/boot'

顺便说一句:我问这个问题是因为我正在开发一个应用程序;我想 "risk free" 直接从 设备 启动自定义内核,它存储在哪里,例如在 SD 卡上。

Is the kernel copied to a special boot partition before rebooting the device?

不,不会对任何分区进行修改。
引导内核意味着从存储设备加载(即读入内存)内核映像。这个 fastboot 类似于 netboot,例如内核映像是使用 TFTP 通过以太网 link 从 server/host 加载的。如果唯一的目的是使用内核映像启动系统,那么就没有理由将内核映像也写入分区,尤其是在没有明确指定的情况下。

此操作的可选根文件系统明确指定为 ramdisk 映像,也不需要写入或存储在分区中。

Does anyone know how it internally works?

fastboot 程序是在您重启设备后执行的备用引导加载程序。
内核通过 USB 从主机加载到内存中。可选的 rootfs(一个 ramdisk 或者一个 initramfs 映像)也可以通过 USB 从主机加载到内存中。加载后,即可开始普通内核启动。

Btw: I am asking the question because of an app I am developing; I'd like to "risk free" boot a custom kernel directly from the device, where it is stored e.g. on the SD-card

您可能需要使用其他 bootloader/method 而不是这个 fastboot。