Allow custom stages

STAGE_LIST can be specified in the config file to run additional build stages.
pull/237/head
Sam Tygier 2019-01-06 22:37:44 +00:00 committed by XECDesign
parent d7ca8e8f14
commit d7ef46b06a
2 changed files with 8 additions and 1 deletions

View File

@ -89,6 +89,10 @@ The following environment variables are supported:
Setting to `1` will enable ssh server for remote log in. Note that if you are using a common password such as the defaults there is a high risk of attackers taking over you RaspberryPi.
* `STAGE_LIST` (Default: `stage*`)
If set, then instead of working through the numeric stages in order, this list will be followed. For example setting to `stage0 stage1 mystage stage2` will run the contents of `mystage` before stage2. An absolute or relative path can be given for stages outside the pi-gen directory.
A simple example for building Raspbian:
```bash

View File

@ -195,7 +195,10 @@ dependencies_check "${BASE_DIR}/depends"
mkdir -p "${WORK_DIR}"
log "Begin ${BASE_DIR}"
for STAGE_DIR in "${BASE_DIR}/stage"*; do
STAGE_LIST=${STAGE_LIST:-${BASE_DIR}/stage*}
for STAGE_DIR_ in $STAGE_LIST; do
STAGE_DIR=`realpath "${STAGE_DIR_}"`
run_stage
done