From 019d47db3b7b2a3bd859f19a130fcd5f869ef137 Mon Sep 17 00:00:00 2001 From: Junian Triajianto Date: Tue, 13 Mar 2018 17:20:22 +0700 Subject: [PATCH] Update stage specification using SKIP_IMAGES (#163) Change Stage specification guide from removing `EXPORT*` files to adding `SKIP_IMAGES` as per new recommended development process. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b770309..281f244 100755 --- a/README.md +++ b/README.md @@ -213,14 +213,14 @@ If you wish to build up to a specified stage (such as building up to stage 2 for a lite system), place an empty file named `SKIP` in each of the `./stage` directories you wish not to include. -Then remove the `EXPORT*` files from `./stage4` (if building up to stage 2) or -from `./stage2` (if building a minimal system). +Then add an empty file named `SKIP_IMAGES` to `./stage4` (if building up to stage 2) or +to `./stage2` (if building a minimal system). ```bash # Example for building a lite system echo "IMG_NAME='Raspbian'" > config touch ./stage3/SKIP ./stage4/SKIP ./stage5/SKIP -rm stage4/EXPORT* stage5/EXPORT* +touch ./stage4/SKIP_IMAGES ./stage5/SKIP_IMAGES sudo ./build.sh # or ./build-docker.sh ```