• Stars
    star
    4,233
  • Rank 10,223 (Top 0.3 %)
  • Language
    Shell
  • License
    GNU General Publi...
  • Created about 10 years ago
  • Updated 20 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Armbian Linux build framework generates custom Debian or Ubuntu image for x86, aarch64, riscv64 & armhf

Armbian logo
Armbian Linux Build Framework

$${\color{black}NEXT\space \color{red}gen}$$

Table of contents

What does this project do?

  • Builds custom kernel, image or a distribution optimized for low-resource hardware,
  • Include filesystem generation, low-level control software, kernel image and bootloader compilation,
  • Provides a consistent user experience by keeping system standards across different platforms.

Getting started

Basic requirements

  • x86_64 or aarch64 machine with at least 2GB of memory and ~35GB of disk space for a virtual machine, WSL2, container or bare metal installation
  • Ubuntu Jammy 22.04.x amd64 or aarch64 for native building or any Docker capable amd64 / aarch64 Linux for containerised
  • Superuser rights (configured sudo or root access).
  • Make sure all your system components are up-to-date. Outdated Docker binaries, for example, can cause trouble.

Start with the build script

apt-get -y install git
git clone --depth=1 --branch=main https://github.com/armbian/build
cd build
./compile.sh

Armbian logo

  • Interactive graphical interface.
  • Prepares the workspace by installing the necessary dependencies and sources.
  • It guides the entire process and creates a kernel package or a ready-to-use SD card image.

Build parameter examples

Show work-in-progress areas in interactive mode:

./compile.sh EXPERT="yes"

Build minimal CLI Armbian Focal image for Orangepi Zero. Use modern kernel and write image to the SD card:

./compile.sh \
BOARD=orangepizero \
BRANCH=current \
RELEASE=focal \
BUILD_MINIMAL=yes \
BUILD_DESKTOP=no \
KERNEL_CONFIGURE=no \
CARD_DEVICE="/dev/sdX"

More information:

Download prebuilt images

Compared with industry standards

Check similarities, advantages and disadvantages compared with leading industry standard build software.

Function Armbian Yocto Buildroot
Target general purpose embedded embedded / IOT
U-boot and kernel compiled from sources compiled from sources compiled from sources
Board support maintenance Β  complete outside outside
Root file system Debian or Ubuntu based custom custom
Package manager APT any none
Configurability limited large large
Initramfs support yes yes yes
Getting started quick very slow slow
Cross compilation yes yes yes

Project structure

Expand
β”œβ”€β”€ cache                                Work / cache directory
β”‚Β Β  β”œβ”€β”€ aptcache                         Packages
β”‚Β Β  β”œβ”€β”€ ccache                           C/C++ compiler
β”‚Β Β  β”œβ”€β”€ docker                           Docker last pull
β”‚Β Β  β”œβ”€β”€ git-bare                         Minimal Git
β”‚Β Β  β”œβ”€β”€ git-bundles                      Full Git
β”‚Β Β  β”œβ”€β”€ initrd                           Ram disk
β”‚Β Β  β”œβ”€β”€ memoize                          Git status
β”‚Β Β  β”œβ”€β”€ patch                            Kernel drivers patch
β”‚Β Β  β”œβ”€β”€ pip                              Python
β”‚Β Β  β”œβ”€β”€ rootfs                           Compressed userspaces
β”‚Β Β  β”œβ”€β”€ sources                          Kernel, u-boot and other sources
β”‚Β Β  β”œβ”€β”€ tools                            Additional tools like ORAS
β”‚Β Β  └── utility
β”œβ”€β”€ config                               Packages repository configurations
β”‚Β Β  β”œβ”€β”€ targets.conf                     Board build target configuration
β”‚Β Β  β”œβ”€β”€ boards                           Board configurations
β”‚Β Β  β”œβ”€β”€ bootenv                          Initial boot loaders environments per family
β”‚Β Β  β”œβ”€β”€ bootscripts                      Initial Boot loaders scripts per family
β”‚Β Β  β”œβ”€β”€ cli                              CLI packages configurations per distribution
β”‚Β Β  β”œβ”€β”€ desktop                          Desktop packages configurations per distribution
β”‚Β Β  β”œβ”€β”€ distributions                    Distributions settings
β”‚Β Β  β”œβ”€β”€ kernel                           Kernel build configurations per family
β”‚Β Β  β”œβ”€β”€ sources                          Kernel and u-boot sources locations and scripts
β”‚Β Β  β”œβ”€β”€ templates                        User configuration templates which populate userpatches
β”‚Β Β  └── torrents                         External compiler and rootfs cache torrents
β”œβ”€β”€ extensions                           Extend build system with specific functionality
β”œβ”€β”€ lib                                  Main build framework libraries
β”‚Β Β  β”œβ”€β”€ functions
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ artifacts
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ bsp
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ cli
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ compilation
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ configuration
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ general
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ host
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ image
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ logging
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ main
β”‚Β Β  β”‚Β Β  └── rootfs
β”‚Β Β  └── tools
β”œβ”€β”€ output                               Build artifact
β”‚Β Β  └── deb                              Deb packages
β”‚Β Β  └── images                           Bootable images - RAW or compressed
β”‚Β Β  └── debug                            Patch and build logs
β”‚Β Β  └── config                           Kernel configuration export location
β”‚Β Β  └── patch                            Created patches location
β”œβ”€β”€ packages                             Support scripts, binary blobs, packages
β”‚Β Β  β”œβ”€β”€ blobs                            Wallpapers, various configs, closed source bootloaders
β”‚Β Β  β”œβ”€β”€ bsp-cli                          Automatically added to armbian-bsp-cli package
β”‚Β Β  β”œβ”€β”€ bsp-desktop                      Automatically added to armbian-bsp-desktopo package
β”‚Β Β  β”œβ”€β”€ bsp                              Scripts and configs overlay for rootfs
β”‚Β Β  └── extras-buildpkgs                 Optional compilation and packaging engine
β”œβ”€β”€ patch                                Collection of patches
β”‚Β Β  β”œβ”€β”€ atf                              ARM trusted firmware
β”‚Β Β  β”œβ”€β”€ kernel                           Linux kernel patches
|   |Β Β  └── family-branch                Per kernel family and branch
β”‚Β Β  β”œβ”€β”€ misc                             Linux kernel packaging patches
β”‚Β Β  └── u-boot                           Universal boot loader patches
|       β”œβ”€β”€ u-boot-board                 For specific board
|    Β Β  └── u-boot-family                For entire kernel family
β”œβ”€β”€ tools                                Tools for dealing with kernel patches and configs
└── userpatches                          User: configuration patching area
    β”œβ”€β”€ lib.config                       User: framework common config/override file
    β”œβ”€β”€ config-default.conf              User: default user config file
    β”œβ”€β”€ customize-image.sh               User: script will execute just before closing the image
 Β Β  β”œβ”€β”€ atf                              User: ARM trusted firmware
 Β Β  β”œβ”€β”€ kernel                           User: Linux kernel per kernel family
 Β Β  β”œβ”€β”€ misc                             User: various
 Β Β  └── u-boot                           User: universal boot loader patches

Contribution

You don't need to be a programmer to help!

Want to become a maintainer?

Please review the Board Maintainers Procedures and Guidelines, and if you can meet the requirements and find a board on the Board Maintainers list with less than two maintainers, then please apply using the linked form.

Want to become a developer?

To help with development, you should first review the Development Code Review Procedures and Guidelines. Then you can review the pre-made Jira dashboards and additional resources provided below to find open tasks and how you can assist:

Support

For commercial or prioritized assistance:

Contact

Contributors

Thank you to all the people who already contributed to Armbian!

Also

Armbian Partners

Armbian's partnership program helps to support Armbian and the Armbian community! Please take a moment to familiarize yourself with our Partners:

Star History

Star History Chart

License

This software is published under the GPL-2.0 License license.

More Repositories

1

config

Armbian Linux configuration utility
Shell
462
star
2

firmware

Armbian Linux firmware
Makefile
194
star
3

documentation

Armbian Linux Documentation
Python
184
star
4

community

Armbian Community rolling release
Shell
179
star
5

linux-rockchip

Improved Rockchip Linux
C
111
star
6

sunxi-DT-overlays

Device Tree overlays for sunxi devices running Armbian images with mainline kernel
80
star
7

linux

Armbian kernel mirrors
C
79
star
8

os

Armbian Linux OS
Shell
29
star
9

mirror

Armbian Linux Mirrors Infrastructure
26
star
10

configng

Next generation bash based configuration API
Shell
19
star
11

autotests

Armbian automated testings
Shell
18
star
12

scripts

Armbian Linux Support Scripts
Shell
8
star
13

upload

Armbian repository uploader
7
star
14

armbian-router

Go
6
star
15

configurator

armbian-config drop-in replacement
Python
5
star
16

testings

Armbian nightly images status reporting
Shell
5
star
17

dl-router

Armbian Linux download router
Python
5
star
18

cache

Armbian Linux Rootfs Cache
5
star
19

ansible-collection-armbian

ansible collection for armbian related facts and utilities
Python
4
star
20

mpads

Multiple power and data switch
C
3
star
21

ci-testing-tools

scripts, tools, configs for CI-testing
Shell
3
star
22

cache-uboot

Armbian U-boot Cache
3
star
23

cache-root

Armbian Root File-system Cache
3
star
24

odroidc2-blobs

Blobs mirrored from https://github.com/hardkernel/u-boot/tree/odroidc2-v2015.01/fip
Shell
3
star
25

cache-firmware

Armbian Firmware Blob Cache
2
star
26

repository

Pulling into our repository
1
star
27

distribution

Automated application deployments
Shell
1
star
28

qa

Armbian Linux quality assurance
1
star
29

wallpapers

Armbian wallpapers
1
star
30

mirror-check

yaml-driven tool to confirm armbian apt repos are in sync.
1
star
31

actions

Armbian Linux GitHub Actions
1
star
32

docker-armbian-build

Docker images for build framework
1
star