From 080ac47c9c41e4bda15fdd59ee23cba843ebdb7c Mon Sep 17 00:00:00 2001 From: Zach van Rijn Date: Mon, 5 Dec 2022 01:54:50 -0600 Subject: more... --- scripts/bootstrap.sh | 253 ++++++++++++++++++++++++++++++++++++++++++++++++--- scripts/setup-abuild | 46 ++++++++-- 2 files changed, 274 insertions(+), 25 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index db165140b..d5334b11b 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,37 +1,260 @@ #!/bin/sh -e -set -x +#=============================================================== +# README +#=============================================================== +# +# overview +# -------- +# +# Given a basic development environment ("Baseline System") that +# contains standard system utilities, this script bootstraps the +# Adélie Linux distribution for any suported target architecture +# (assuming that musl, gcc, etc. have been ported to it) without +# requiring 'root' privileges. The procedure is outlined below: +# +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +# (unstable, everything provided by user) +# +# +-----------------+ User-provided tools. Dependency +# | Baseline System | of 'mcmtools', which will verify +# +-----------------+ that these tools are available. +# | +# +----------+ Script to build pinned versions +# | mcmtools | of common system utilities, a +# +----------+ host-arch host-libc toolchain, a +# | host-arch musl-libc toolchain... +# | +# - - - - -|- - - - - - - - - - - - - - - - - - - - - - - - +# | (stable versions, unstable libc) +# | +# +-------------+ ...and a 'chroot'-able rootfs. A +# | seed rootfs | sane, but not clean, environment +# +-------------+ in which we begin the bootstrap. +# | +# +-----------+ Script to build 'PRoot' and its +# | emulators | dependencies, as well as static +# +-----------+ QEMU user binaries. Add to seed. +# | +# +---------------+ Static musl libc cross toolchain +# | musl cross tc | targeting a given architecture. +# +---------------+ Output binaries will run via the +# | 'binfmt_misc' mechanism + QEMU. +# | +# +-------------+ Script to build Alpine Package +# | build tools | Keeper (APK) and dependencies. +# +-------------+ All binaries are cross-compiled! +# | +# | +# +-------------+ Script to build the minimum set +# | seed rootfs | of tools to start building the +# +-------------+ "system/" package repository. +# +# mcmtools; a separate script +# that +# mcmtools provides almost everything needed to build 'abuild', +# and it is a hard dependency for our bootstrap process now. +# +# https://git.zv.io/toolchains/bootstrap +# +# The output of this step is a host-native toolchain with fixed +# versions of development utilities, and a host-architecture hosted toolchain that cross-compiles to both musl and/or +# a foreign CPU architecture. (Table above prevents this). +# HERE="$(dirname $(readlink -f ${0}))"; +TEMP="$(mktemp -d)"; # do not change if not expert! + +#--------------------------------------------------------------- +# initialization + +usage () +{ + printf "Usage: %s ARCH\n\n" "${0}"; + cat <