Jump to content

Boot process: Difference between revisions

From postmarketOS Wiki
MayeulC (talk | contribs)
m Add a link to Mediatek#Booting_procedure
Exkc (talk | contribs)
 
(48 intermediate revisions by 14 users not shown)
Line 1: Line 1:
postmarketOS has a boot process quite similar to the other linux distributions, with a few peculiarities that come from the devices it runs on.


== First stage boot loader ==
== Overview ==
This isn't something controlled by postmarketOS, and most of the time the user doesn't control it either.
Once you press the power button on your postmarketOS device, it goes through the following steps:


Usually there is a first stage bootloader (actually, more of a second or more stage, depending on the device) installed somewhere on the device.
# Device specific bootloader
That bootloader loads the linux kernel compiled by pmbootstrap in memory, as well as an initramfs ([[Initramfs development]]), which contains the smallest possible set of tools for the rest. It then passes the execution on to the kernel, which extracts the initramfs in memory and mounts it as a root filesystem. It does so, while passing on the kernel command line option, and sometimes the [[Device Tree (dtb)|Device Tree Blob (dtb)]].
# [[The initramfs|postmarketOS initramfs]]
# [[Init]]
# getty <br> (If the UI is none, it stops at here)
#  [[Display manager]]
# [[:Category:Interface|User Interface of choice]]


Various devices have various ways of doing this (''It would be nice to document this here''):
==  Early boot process ==
 
In the early boot process, the device specific bootloader will intialize the device hardware. After that the way it boots the OS in device-specific ways. (See below)
* [[Deviceinfo_flash_methods#heimdall-isorec|heimdall-isorec]] devices expect to find the initramfs packed with the vmlinuz image, as they can't load it themselves. For these, postmarketOS has a small initramfs in the vmlinuz image that loads the usual minimalist initramfs from another partition.
See [[:Category:Bootloaders]] to learn more about how different bootloaders work.
* [[Mediatek#Booting_procedure|Boot process on Mediatek devices]]
=== UEFI ===
== Inside the initramfs ==
On devices that support UEFI, pmOS generally boots via systemd-boot
The task goes on to the Linux kernel, which initializes some of the peripherals, then executes the postmarketOS initramfs init script[https://github.com/postmarketOS/pmbootstrap/blob/2fb49d2a159eaeeb362247552d242f3765be3c90/aports/main/postmarketos-mkinitfs/init.sh.in].
=== Android boot image ===
 
On most Android devices, the bootloader on that device would boot the Android boot image that is in the partition labeled as <code> boot</code>. That file contains the initramfs and kernel. Generally, pmOS would put its initramfs and kernel into a Android boot image and flash it to the boot partition. However, there are some Android devices that don't support Android boot images.
This script initializes [[USB Network]]ing, looks for a postmarketOS boot partition [https://github.com/postmarketOS/pmbootstrap/blob/2fb49d2a159eaeeb362247552d242f3765be3c90/aports/main/postmarketos-mkinitfs/init.sh.in#L16][https://github.com/postmarketOS/pmbootstrap/blob/2fb49d2a159eaeeb362247552d242f3765be3c90/aports/main/postmarketos-mkinitfs/init_functions.sh#L41].
==== isorec ====
At that point, you can [[Inspecting the initramfs|Inspect the initramfs]] if you want to, and the various hook scripts are ran.
Very few Android devices don't expect a <code>boot.img</code> file written to the Android boot partition, but rather just the Linux kernel, with an embedded initramfs. But we want the initramfs packaging to be independent of the kernel (not require a kernel rebuild to change the initramfs!). Therefore we use the so-called "isorec" trick here: the initramfs script built into the kernel is just a very small stub, that loads the real initramfs from the postmarketOS boot partition ([https://gitlab.postmarketos.org/postmarketOS/pmaports/-/blob/1d2b62a1094e77e50e1a52c48b07eecb1fbfd26a/device/testing/linux-samsung-i9100/APKBUILD#L31-50 example]).
 
The boot partition is mounted, and the second initramfs, ''initramfs-extra'', is loaded (a splash is displayed if not found). This initramfs contains other the remaining tools necessary for the boot process, but is kept separate in order to minimize the size of the boot image (that needs to fit on every device).
 
The init script then proceeds to find the root partition (it displays a splash if it isn't found), to resize it, to unlock it, to mount it at <code>/sysroot</code>, and then chroots in, executing <code>/sbin/init</code>.
 
== In the root partition ==
TODO: complete this section


== See also ==
== See also ==
* [[Partition Layout]]
* [[:Category:Bootloaders]]
* [[Troubleshooting:boot]]
* [[Troubleshooting:boot]]
* [[Troubleshooting:boot:initfshooks]]
* [[Troubleshooting:boot:initfshooks]]
* {{issue|664|pmaports}}: two postmarketOS installations: OpenRC may mount wrong partition as /boot
* [https://postmarketos.org/blog/2018/04/14/lowlevel/ postmarketOS low-level blog post] (talks in part about liberating bootloaders)
* [[deviceinfo_flash_methods|Deviceinfo: flash methods]]
[[Category:Technical Reference]]

Latest revision as of 13:04, 29 November 2024

Overview

Once you press the power button on your postmarketOS device, it goes through the following steps:

  1. Device specific bootloader
  2. postmarketOS initramfs
  3. Init
  4. getty
    (If the UI is none, it stops at here)
  5. Display manager
  6. User Interface of choice

Early boot process

In the early boot process, the device specific bootloader will intialize the device hardware. After that the way it boots the OS in device-specific ways. (See below) See Category:Bootloaders to learn more about how different bootloaders work.

UEFI

On devices that support UEFI, pmOS generally boots via systemd-boot

Android boot image

On most Android devices, the bootloader on that device would boot the Android boot image that is in the partition labeled as boot. That file contains the initramfs and kernel. Generally, pmOS would put its initramfs and kernel into a Android boot image and flash it to the boot partition. However, there are some Android devices that don't support Android boot images.

isorec

Very few Android devices don't expect a boot.img file written to the Android boot partition, but rather just the Linux kernel, with an embedded initramfs. But we want the initramfs packaging to be independent of the kernel (not require a kernel rebuild to change the initramfs!). Therefore we use the so-called "isorec" trick here: the initramfs script built into the kernel is just a very small stub, that loads the real initramfs from the postmarketOS boot partition (example).

See also