1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-08 23:06:14 +02:00
Go to file
David Oberhollenzer 71ae37640f Mention default root password in README so other people can use the system too
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-05-10 14:20:18 +02:00
board Remove common product configuration 2018-05-10 14:15:44 +02:00
docs cleanup: remove /opt and /srv from default filesystem 2018-04-20 13:24:30 +02:00
pkg Bump procps-ng version 2018-05-10 12:21:33 +02:00
product/router Remove common product configuration 2018-05-10 14:15:44 +02:00
util Remove common product configuration 2018-05-10 14:15:44 +02:00
.gitignore Initial commit 2018-01-29 10:17:30 +01:00
check_update.sh Add automatic update chacking script 2018-05-08 15:01:23 +02:00
LICENSE Add license file 2018-03-24 21:14:29 +01:00
mk.sh Implement board/product config schema 2018-03-24 18:28:29 +01:00
README.md Mention default root password in README so other people can use the system too 2018-05-10 14:20:18 +02:00

Pygos GNU/Linux

Overview

This directory contains the build system for Pygos GNU/Linux, a small, heavily customizable operating system for embedded devices and other special purpose systems.

The build system generates a compressed, read only root filesystem image, boot loader, kernel binary and a setup script for installing the system on the target board, all bundled up in a release tar ball.

An additional disk partition or UBI volume is created for mutable configuration files with overlay mount points for directories like /etc or /var/lib.

For details on the Pygos file system layout, see docs/filesystem.md.

An automated firmware update mechanism is currently still in development. For details, see docs/update.md.

The build system in this directory downloads the necessary source packages, builds a cross compiler toolchain and compiles the entire system from scratch for the intended target.

For details on how the build system works or how to add or configure packages, see docs/build.md.

For an overview of the available documentation see docs/index.md.

By the way, before you ask: the default root password for the demo setup is reindeerflotilla.

Target configuration

The Pygos build system is driven by toolchain and package configurations that are divided into three categories:

  • Common settings shared by all targets
    • Contains things like a bare minimum default package set
  • Board specific settings
    • Mostly board specific cross toolchain and kernel configuration
    • Can add additional packages required for that board
  • Product specific settings
    • Specifies a list of boards for which the product can be built
    • Specifies and configures extra packages needed
    • Can override board settings and provide configuration files specific to that product running on that board

Demo configuration

The system currently contains configurations that allows it to run on the following boards:

  • Raspberry Pi 3 (ARM, 32 bit)
  • pc-engines ALIX board (x86, 32 bit)

The following demo products for those boards are planned, but currently still in development:

  • "router" builds for all of the above boards. A DHCP server offers addresses on two of the ALIX boards Ethernet ports or on the Raspberry Pi 3 wireless interface. A DHCP client configures the remaining interface, uses it as default route and does NAT routing. DNS queries are resolved via a local root resolver.

How to build the system

The system can be built by running the mk.sh script as follows:

mk.sh <board> <product>

This will start to download and builds the cross toolchain and system in the current working directory. The command can (and should) be run from somewhere outside the source tree.

Once the script is done, the final release package is stored in the following location (relative to the build directory):

deploy/release-<board>/release-<board>.tar.gz

Directory overview

The build system directory contains the following files and sub directories:

  • board/ Contains the board specific configuration files. E.g. board/alix/ holds files specific for the ALIX board.
  • docs/ Contains further documentation that goes into more detailed aspects of the build system and the final Pygos installation itself.
  • pkg/ Contains package build scripts. Each package occupies a sub directory with a script named "build" that is used to download, compile and install the package.
  • product/ Contains product specific configuration files. E.g. product/router/ holds files for the "router" product.
  • util/ Contains utility scripts used by mk.sh
  • LICENSE A copy of the GNU GPLv3
  • mk.sh The main build script that builds the entire system
  • README.md This file