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.
This commit is contained in:
parent
b4035400ff
commit
019d47db3b
1 changed files with 3 additions and 3 deletions
|
@ -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`
|
for a lite system), place an empty file named `SKIP` in each of the `./stage`
|
||||||
directories you wish not to include.
|
directories you wish not to include.
|
||||||
|
|
||||||
Then remove the `EXPORT*` files from `./stage4` (if building up to stage 2) or
|
Then add an empty file named `SKIP_IMAGES` to `./stage4` (if building up to stage 2) or
|
||||||
from `./stage2` (if building a minimal system).
|
to `./stage2` (if building a minimal system).
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Example for building a lite system
|
# Example for building a lite system
|
||||||
echo "IMG_NAME='Raspbian'" > config
|
echo "IMG_NAME='Raspbian'" > config
|
||||||
touch ./stage3/SKIP ./stage4/SKIP ./stage5/SKIP
|
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
|
sudo ./build.sh # or ./build-docker.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue