You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pikvm/docs/building_os.md

93 lines
2.7 KiB
Markdown

8 months ago
# Building PiKVM OS
3 years ago
8 months ago
The assembly of PiKVM OS is carried out using a special build environment.
Here the minimum required for its use, imposed on the build machine:
3 years ago
* kernel >= 5.8
* glibc >= 2.33
* docker >= 19.03.13
8 months ago
* git
3 years ago
8 months ago
Docker must work in privileged mode.
3 years ago
8 months ago
1. When starting with a clean OS you need to install and configure Docker. An example for Ubuntu:
3 years ago
8 months ago
```console
3 years ago
[user@localhost ~]$ sudo apt-get install git make curl binutils -y
[user@localhost ~]$ sudo apt-get install docker.io
3 years ago
[user@localhost ~]$ sudo usermod -aG docker $USER
```
Re-login to apply the changes.
8 months ago
2. Checkout the build environment:
3 years ago
8 months ago
```console
3 years ago
[user@localhost ~]$ git clone --depth=1 https://github.com/pikvm/os
[user@localhost ~]$ cd os
```
8 months ago
3. Determine the target board and platform:
* Choose the board:
* `BOARD=rpi4` for Raspberry Pi 4.
* `BOARD=zero2w`
* `BOARD=rpi3`
* `BOARD=rpi2`
3 years ago
* Choose the platform:
1 year ago
* `PLATFORM=v4mini-hdmi` for PiKVM V4 Mini.
* `PLATFORM=v4plus-hdmi` for PiKVM V4 Plus.
* `PLATFORM=v3-hdmi` for RPi4 and PiKVM V3 HAT.
* `PLATFORM=v2-hdmi` for RPi3a+/RPi4 or Zero2W with HDMI-CSI bridge.
3 years ago
* `PLATFORM=v2-hdmiusb` for RPi4 with HDMI-USB dongle.
6 months ago
* `PLATFORM=v1-hdmi` for RPi2 or 3b+ with HDMI-CSI bridge and the Pico HID.
* `PLATFORM=v1-hdmiusb` for RPi2 or 3b+ with HDMI-USB dongle and the Pico HID.
3 years ago
8 months ago
4. Create the build config file `config.mk` for the target system and and the `BOARD` and `PLATFORM` variables.
You can also set some other parameters as you wish (see below).
Please note: if your password contains the # character, you must escape it using a backslash like `ROOT_PASSWD = pass\#word`.
8 months ago
```bash
# Base board
3 years ago
BOARD = rpi4
8 months ago
3 years ago
# Hardware configuration
PLATFORM = v2-hdmi
8 months ago
3 years ago
# Target hostname
HOSTNAME = pikvm
8 months ago
3 years ago
# ru_RU, etc. UTF-8 only
LOCALE = en_US
8 months ago
3 years ago
# See /usr/share/zoneinfo
8 months ago
TIMEZONE = Europe/Nicosia
3 years ago
# For SSH root user
8 months ago
ROOT_PASSWD = rootpass
# Web UI credentials: user=admin, password=adminpass
WEBUI_ADMIN_PASSWD = adminpass
# IPMI credentials: user=admin, password=adminpass
IPMI_ADMIN_PASSWD = adminpass
3 years ago
```
8 months ago
4. Build the OS. It may take about one hour depending on the Internet connection:
3 years ago
8 months ago
```console
3 years ago
[user@localhost os]$ make os
```
8 months ago
!!! tip
If you get an error about failing to retrieving a file, please edit the Makefile and remove `de3.` from the repo URL.
3 years ago
8 months ago
5. Create an image. It will be stored in the `images` directory as a file with `*.img` extension:
3 years ago
8 months ago
```console
[user@localhost os]$ make image
```
3 years ago
8 months ago
6. [Flash the result image to SD card](flashing_os.md#flashing-the-image).