1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-14 18:21:41 +03:00

doc: Document new stage-1-to-2 failure reporting

This commit is contained in:
Samuel Dionne-Riel 2019-10-12 17:50:55 -04:00
parent 83a1735084
commit f7b1af3a06
2 changed files with 30 additions and 0 deletions

View File

@ -7,6 +7,10 @@ include::_support/common.inc[]
Index of in-depth topics.
== Boot
* <<stage-1.adoc#,Stage-1>>
== Android-Based Devices
* <<android/partitions.adoc#,Partitions>>

26
doc/in-depth/stage-1.adoc Normal file
View File

@ -0,0 +1,26 @@
= Notes about `stage-1`
include::_support/common.inc[]
== What is stage-1?
This is what is also referred as `initrd`, or `initramfs`. `stage-1` refers to
the fact that this is the first part of the system that gets run once the kernel
has been started.
== About "sad phone" screens
It may happen that you have a "sad phone" screen when booting.
This means that a fatal error has happened.
When there is no screen logging available for the device, the general case of
error has been codified as a background color.
* Yellow (`0xFFFF00`) means that mounting the root filesystem was not possible.
* Fuchsia (`0xFF00FF`) means that mounting succeeded, but no compatible generation was found to boot.
* Red (`0xFF0000`) means that executing (`exec`) and switching to the found generation's init failed.
It may happen that the boot seemingly or actually hangs before a "sad phone"
screen appears. In those instances, it means something else earlier kept the
early init scripts to continue. In the future, better logging and status
reporting will be added to keep track of early failures.