User:Knuxify/Draft:Porting guide
🚧 | This page is a work-in-progress. Some information contained within may be inaccurate or incomplete.
In particular: WIP draft for cleaned up Porting page, unfinished. |
If you get stuck or need assistance, you can join our Matrix/IRC chats (use the #porting:postmarketos.org (on Matrix)/#postmarketos-porting (on OFTC) channel for porting questions). |
This page is a step-by-step guide to porting postmarketOS to a new device.
The main steps are:
- Set up pmbootstrap, the postmarketOS development tool, on your computer;
- Unlock the bootloader on the target device;
- Create the device-specific package for your device
- If using a vendor (downstream) device-specific kernel, rather than a shared (close to) mainline kernel for the SoC, add the package for it
- Install the system and adapt it to your own preferences.
Introduction
In postmarketOS, device support is contained within device-specific packages. These packages are as follows:
device-codename-vendor
- referred to as the device package. This package contains metadata related to the device, and is what allows it to show up in the device list inpmbootstrap init
. In particular, it contains:- The
deviceinfo
file, which stores general device settings (model name/codename, screen size, flashing method, etc.); - Optionally, configuration files that get installed to the system, which are required to get various features working, e.g. udev config files for various peripherals or ALSA UCM configurations for sound
- The
linux-codename-vendor
- referred to as the device-specific kernel package. This is what builds the Linux kernel and applies any patches necessary to get it to build/work.- Devices running close-to mainline kernels usually use a shared kernel package for an SoC (
linux-postmarketos-...
).
- Devices running close-to mainline kernels usually use a shared kernel package for an SoC (
firmware-codename-vendor
- firmware blobs necessary for some components to work. This package is not necessary for an initial port, but it's often needed to get e.g. WiFi and Bluetooth working.
Like other pmOS packages, the package build files (in APKBUILD
format) are stored in the pmaports repository - in particular, device packages are placed under device/{category}
, where {category}
is the category (main/community/testing/archived).
pmbootstrap, the postmarketOS build/development tool, can generate a basic device package and kernel package - however, some manual modifications are still needed. This is what this page will guide you through.
About pmbootstrap
pmbootstrap is the postmarketOS build tool. It is used for everything from building individual packages to entire images, and has various utilities which help with the porting and installation process.
It works by creating small self-contained installations (chroots) of Alpine Linux and managing all build dependencies within them. This way, you don't need to install anything manually on your host system to build images and packages; just run a few commands, and pmbootstrap will take care of everything for you.
Prerequisites
- You should be familiar with the following:
- The Linux command line; we'll be using pmbootstrap from the command line
- Basic Git workflow, which we'll need when upstreaming our work to postmarketOS; see Git workflow
- To avoid duplicating effort, make sure your device isn't already supported by postmarketOS - check the Devices page or use the search bar at the top of the page to look up your device.
- Check if your work drive has at least 10GB of free space. (In case you want to use an external drive, pmbootstrap will let you set the exact location later.)
- To run pmbootstrap, you need to be running Linux. Other operating systems are not supported - while some people have succeeded at using WSL (see Windows FAQ), your best option is to set up a Linux install or virtual machine.
Getting to know your device
Before you begin porting, you should gather some information about the device you want to port:
- The codename of the device.
- If your device has a LineageOS or TWRP port, you can typically find the codename in the name of the relevant
android_device_(vendor)_(codename)
repository (usually you can find it on GitHub or linked on XDA forums). - Android: run
adb shell getprop ro.product.device
- If your device has a LineageOS or TWRP port, you can typically find the codename in the name of the relevant
- Which SoC (system-on-a-chip) it uses.
- For many devices, you can find this by looking up the device name followed by "specifications" or "chipset"; look on sites like GSMArena.
- If you have an Android device, there are various apps you can install to report CPU info (look up "CPU info" in your app store of choice).
- Some SoCs have good support in mainline Linux; see the support matrix table. In those cases, it's better to avoid porting the downstream kernel and use the (Close to) Mainline kernel instead.
- Which CPU architecture the device's SoC has:
- Most phones/tablets use ARM chips. The postmarketOS architectures for ARM chips are:
aarch64
- 64-bit (ARMv8 and above)armv7
- 32-bit (ARMv7 or ARMv8 and above running in 32-bit compatibility mode. Not to be confused with ARM7, which is an ARMv6 core.)armhf
- ARMv6 and older with a floating point unit (FPU). (Not all ARMv6 SoCs have an FPU; notably, the MSM7225 is missing one. Before you port, check if the device has VFP support.)
- postmarketOS also supports
x86_64
(64-bit)/x86
(32-bit) as well asriscv64
. - Run
uname -m
from the command line (Android: you can run it throughadb shell
). - Note that in some cases, the device might be running a 32-bit OS on a 64-bit capable chip. In those cases, you should start with the 32-bit architecture that the stock OS uses; you can try the 64-bit equivalent later.
- Most phones/tablets use ARM chips. The postmarketOS architectures for ARM chips are:
- How to unlock the bootloader; in order to flash a custom OS onto the device, its bootloader needs to be unlocked, and there needs to be a known flashing method. See Unlocking Bootloaders for hints.
- For Android devices, you'll also need the boot.img file, which can either be extracted from an Android ROM or from the
boot
partition on the device. You can also use a recovery image like TWRP. This file will be used to determine flashing offsets later in the guide.
Finding the kernel source
In order to port postmarketOS to the device, we need to be able to build the Linux kernel from source.
- If your device has a LineageOS/TWRP/other Android port, most likely someone has uploaded the kernel sources they used to make the port; look on sites like GitHub (look for repositories named
android_kernel_(vendor)_(codename)
. - If the kernel is not on GitHub, try looking on the manufacturer's page; some manufacturers have open source download centres with OSS source code, including the Linux Kernel (todo: link to these pages)
For many devices, especially from small companies, kernel sources are not publicly available. Per the GPL license, the source code should be open - try e-mailing their support requesting source code.
You may be able to use a kernel for another device with the same SoC.
TODO: Finish this section |
Installing pmbootstrap
Your distro may already have pmbootstrap available in its repositories. If it doesn't, or the packaged version is too old, you can also install pmbootstrap from git.
If you've already installed pmbootstrap before, run this command to update the local clone of the pmaports repository:
$ pmbootstrap pull
Initializing pmbootstrap
The first thing we need to do is initialize pmbootstrap and tell it what device we're working on. To do this, run:
$ pmbootstrap init
When using pmbootstrap init, you will be prompted to answer some questions. In each prompt, the default answer is shown between brackets - to use the default, don't type anything and press Enter/Return. For example:
Continue? (y/n) [y]:
y . |
You will be asked to answer some questions to get your environment set up:
- Where to place the work path - this is where pmbootstrap will download files and set up chroots.
- For most users, the default suggested location (
~/.local/var/pmbootstrap
) is fine, but you can optionally move it e.g. to an external drive if more space is needed. - Note that only standard Linux filesystems like ext4 are supported - NTFS, VirtualBox shared folders and various exotic filesystems will not work. You should also have about ~10GB of free space.
- For most users, the default suggested location (
- The release channel to use - select
edge
here.edge
is the development branch of postmarketOS, and where new device ports go when upstreaming them.
Choosing the vendor/codename and generating device-specific packages
You will be asked for the vendor (manufacturer) and codename of your device.
- The vendor will usually be the manufacturer's name, in lowercase. (If you're not sure, see how other devices from the same vendor do it.)
- The codename can be found in one of the following places:
- If your device is supported by a custom Android ROM, like LineageOS, the
android_device_...
repo contains the vendor and codename in its name. - If all else fails, you might be able to find the codename by looking up your device's name/model number followed by "codename".
- If your device is supported by a custom Android ROM, like LineageOS, the
At this point, you will get the following message:
[07:07:09] You are about to do a new device port for 'vendor-codename'.
[07:07:09] Continue? (y/n) [y]:
Answer y
here. You will be asked to answer some questions about the device (see also: How to find device-specific information):
- Device architecture - aarch64 for 64-bit ARM, armv7 for 32-bit ARM. armhf is very rare, and only applies to very old ARMv6 devices with floating point units (FPUs).
- Manufacturer, Name, Year - metadata of the device, saved to the deviceinfo file and displayed in the OS.
- Chassis:
handset
for phones,tablet
for tablets,laptop
for laptops. - Does the device have a sdcard or other external storage medium? (y/n) -
y
if your device has an SD card slot or similar,n
otherwise.
Selecting the flash method
You will be prompted to select a flash method; this is what is used by pmbootstrap flasher
to know which set of commands to use to perform its operations.
[06:01:08] Which flash method does the device support?
[06:01:08] Flash method (0xffff/fastboot/heimdall/mtkclient/none/rkdeveloptool/uuu) [none]:
- fastboot - the most commonly used flashing format for most Android devices. If you use the
fastboot
command to communicate with the bootloader, select this option. - heimdall - implements the Odin protocol used in Samsung's Download Mode (all Samsung devices).
- SoC-specific options (try fastboot first, if available):
- mtkclient - used to flash directly to Mediatek devices, including ones with locked/broken bootloaders
- rkdeveloptool - used to flash directly to Rockchip devices with Rockchip's own download mode.
- uuu - used to flash directly to NXP devices with their own download mode.
- 0xffff - used for the Nokia N900 and no other devices.
If your device does not support flashing over USB with a command, select none. The selected flash method can be changed later by modifying the deviceinfo file.
Analyzing a boot.img
To get the remaining flasher information, pmbootstrap needs to analyze a boot.img file. You can get this file from any Android ROM, or use a recovery image like TWRP instead.
[06:26:07] You can analyze a known working boot.img file to automatically fill out the flasher information for your deviceinfo file. Either specify the path to an image or press return to skip this step (you can do it later with 'pmbootstrap bootimg_analyze').
[06:26:07] Path:
You can either pass the path to the boot.img file here directly, or leave it empty for now and run pmbootstrap bootimg_analyze path/to/boot.img
later.
Remaining pmbootstrap configuration
At this point, the device-specific packages will be generated:
[06:28:49] *** pmaport generated: /home/user/.local/var/pmbootstrap/cache_git/pmaports/device/testing/device-vendor-codename
[06:28:49] *** pmaport generated: /home/user/.local/var/pmbootstrap/cache_git/pmaports/device/testing/linux-vendor-codename
Keep these locations in mind; we will need to modify the files in them shortly.
Afterwards, pmbootstrap will ask you the usual setup questions. Follow the steps from Installation/Using pmbootstrap#Initializing pmbootstrap.
When you're asked to select the user interface to install - xfce4 is a good first choice for both downstream and close to mainline ports. |
For most questions, the defaults are fine.