Aboriginal Linux

News Documentation Download Development Control Images

The Aboriginal Linux build scripts are the source code for the Aboriginal Linux project. If you would like to build your own cross compiler or target system image from source, use these build scripts. They're written in bash and should be fairly easy to read.

Quick start

Run build.sh with no arguments to see a list of targets. Select a target, and run build.sh $TARGET with the target name in place of $TARGET. When it finishes, run more/dev-environment.sh $TARGET to boot the resulting system image under QEMU, configured for use as a development environment. Type exit to shut down the emulator.

Overview

The build runs the following stages, in order:

  • download.sh - Download source packages used by the rest of the build.
  • host-tools.sh - Build prerequisites host needs to run remaining stages.
  • simple-cross-compiler.sh - Build cross compiler for selected target architecture.
  • [cross-compiler.sh] - optionally produce a more portable cross compiler (not needed by rest of build, but released as a tarball).
  • native-compiler.sh - Build native compiler to install/run on target.
  • root-filesystem.sh - Build simple initramfs filesystem, just enough to boot to a shell prompt.
  • system-image.sh - Build bootable linux kernel and package together filesystem image and kernel with scripts to launch them under an emulator.

The top level wrapper script build.sh runs the above stages in order, but each stage script can also be run individually. Each of the above build scripts (except download.sh and host-tools.sh) take a single argument: the name of the target architecture to build code for. Run build.sh with no arguments to see a list of available targets.

Each build stage (except download.sh and host-tools.sh) produces its output in the "build" directory under a subdirectory named after the script plus the target. It also produces a tarball of that directory if the build stage completed successfully. (The download.sh script populates the "packages" directory instead, and host-tools.sh produces its output the directory "build/host" with no tarball version since those programs are intended to run locally.)

All downloaded files wind up in the "packages" directory. Output from compiles is generated in the "build" directory. These are the only two directories the build writes to, and both directories may be deleted (to be recreated by the build scripts). The equivalent of "distclean" is rm -rf build packages from the top level directory.

None of these scripts need to be run as root -- an explicit design goal of Aboriginal Linux is that root access on the host is never required.

Build stages

The files in the top level directory of the Aboriginal Linux source are:

  • configure

    This is a configuration file rather than a build script. It contains several variables that can be set to control the build's behavior, with descriptions of each. Each variables may be set in this file, or exported as environment variables.

    A useful shell syntax to export environment variables for just a single command, without persistently altering the environment, is to list the assignments before the command on the same line. For example:

    CROSS_COMPILER_HOST=i686 SYSIMAGE_TYPE=ext2 ./build.sh armv5l

    Configuration variables can also be persistently set on a per-target basis in the appropriate sources/targets file.

  • build.sh $TARGET

    Top level wrapper script which builds a system image for a target, by calling most of the other scripts listed here in the appropriate order. When run without arguments, build.sh lists available architectures. Run with one argument, it builds that target. Run with two arguments, the second is the name of a build stage to restart the build at.

    This script is just a wrapper, it contains no actual build logic (except checking some of the configuration variables).

  • download.sh

    Uses wget to download the source code required by the later build stages, saving it in the "packages" directory. It compares the sha1 checksum of any existing tarballs to an expected value, only downloading new source tarballs when it needs to.

    If a package's primary site is down, it checks a series of fallback mirrors. The environment variable PREFERRED_MIRROR can insert a new mirror at the start of the list, which is checked before even the official website.

    This script is not target-specific, and only needs to be called once even when building multiple architectures.

  • host-tools.sh

    Sanitizes the host environment by building known versions of needed tools from source code, then restricting the $PATH to just those tools. This is technically an optional step which can be skipped, but without it the build process is extremely brittle (sensitive to changes in the host distro/environment).

    This "airlock" step serves a similar purpose to the temporary system (/tools) built by Linux From Scratch's chapter 5, isolating the new system from variations in the host. It also acts as an early check that the resulting system images offer a sufficient development environment to rebuild themselves from source, because the host tool versions used to build them in the first place are the same ones the scripts install into the target root filesystem.

    This script populates the "build/host" directory, which is automatically

    used by later stages if it exists. It is not target specific, and only

    needs to be run once when building multiple architectures.

  • simple-cross-compiler.sh $TARGET

    Creates a cross compiler for the selected target architecture, built from gcc, binutils, musl, and the Linux kernel headers. This compiler runs on the host and produces programs that run on the target.

    This compiler is sufficient to build a system image for the target, but isn't as powerful as the compilers created by cross-compiler.sh or native-compiler.sh. (It doesn't include thread support, uClibc++, or the shared version of libgcc. The binaries aren't statically linked, and they may leak host path details and thus not find their data files if moved to another directory location.)

  • cross-compiler.sh $TARGET

    This optional step creates a more full-featured cross compiler, with thread support, uClibc++, and the shared version of libgcc. This is not required to build a system image, but the prebuilt binary compilers shipped in the downloads/binaries directory are built this way.

    The build.sh wrapper script only calls this stage if the config variable CROSS_COMPILER_HOST is set, indicating which host architecture to build for. (For PC hardware, i686 is a good choice, since most 64 bit PCs can run static 32 bit code. If you run "./cross-comiler.sh $TARGET" manually without setting CROSS_COMPILER_HOST, it defaults to i686.)

    This compiler is statically linked against uClibc, for maximum portability. (You can set BUILD_STATIC=none to dynamically link instead, but then have to install uClibc's shared libraries on the host.)

  • native-compiler.sh $TARGET

    This step creates a compiler for the selected target, using one or more of the existing simple cross compilers. The compiler it produces runs on the target and produces programs that also run on the target.

    By default this compiler is statically linked so you can add it to an existing target root filesystem. Use BUILD_STATIC=none to disable this.

    This compiler includes binutils, gcc, musl, make, bash, and distcc. Because it's a native compiler, the executable names do not have prefixes the way the cross compilers do. (I.E. just "ld" instead of "$TARGET-ld".)

  • root-filesystem.sh $TARGET

    Creates a root filesystem (with uCLibc, BusyBox, and an init script) which contains just enough infrastructure to boot up to a shell prompt. By default this is packaged as an initramfs, see SYSIMAGE_TYPE in config to see other available filesystem types.

    This creates empty directories, copies the skeleton files from sources/root-filesystem, adds the contents of the directory $ROOT_OVERLAY points to (if any), and builds toybox.

    The config variable ROOT_OVERLAY can add arbitrary files to this stage.

  • system-image.sh $TARGET

    Packages up the root-filesystem (usually as a cpio.gz for initramfs), builds a linux kernel (generally configured for use with QEMU), and adds emulator launch scripts.

    The kernel configuration combines the sources/baseconfig-linux settings (which are the same for each $TARGET) with the target-specific LINUX_CONFIG entries from sources/targets/$TARGET. This configuration mechanism (miniconfig) essentially starts with "allnoconfig" and then switches on each mentioned symbol, resolving dependencies as it goes, just as if you opened up menuconfig and set that list of symbols by hand.

    You can also build your own kernel outside of this build system, using the root-filesystem directory as your initramfs source.

    For more information on system images and launch scripts, see the the binary docs

The sources/more directory contains additional scripts the user can run, but which are not called from build.sh. This directory contains the external user interfaces the user can call directly which are not build stages. See more/README in the Aboriginal source code for details.

The native-build.sh script in each system-image, and the more/native-build-from-build.sh script, use build control images, externally supplied filesystem images (usually squashfs) the system image's init script automatically mounts on /mnt. If the file /mnt/init exists (I.E. an executable "init" script at the top of the build control image), the system image init script will run that file instead of dropping to a shell prompt. This allows arbitrary automated behavior out of the newly booted image, operating on supplied data.


Copyright 2002, 2011 Rob Landley <rob@landley.net>