@@ -27,10 +27,10 @@ Getting started is as simple as cloning this repository on your build machine. Y
27
27
can do so with:
28
28
29
29
``` bash
30
- git clone --depth 1 https://github.com/RPI-Distro/pi-gen.git
30
+ git clone https://github.com/RPI-Distro/pi-gen.git
31
31
```
32
32
33
- Using ` --depth 1 ` with ` git clone ` will create a shallow clone, only containing
33
+ ` --depth 1 ` can be added afer ` git clone ` to create a shallow clone, only containing
34
34
the latest revision of the repository. Do not do this on your development machine.
35
35
36
36
Also, be careful to clone the repository to a base path ** NOT** containing spaces.
@@ -80,8 +80,11 @@ The following environment variables are supported:
80
80
81
81
* ` RELEASE ` (Default: bullseye)
82
82
83
- The release version to build images against. Valid values are jessie, stretch,
84
- buster, bullseye, and testing.
83
+ The release version to build images against. Valid values are any supported
84
+ Debian release. However, since different releases will have different sets of
85
+ packages available, you'll need to either modify your stages accordingly, or
86
+ checkout the appropriate branch. For example, if you'd like to build a
87
+ ` buster ` image, you should do so from the ` buster ` branch.
85
88
86
89
* ` APT_PROXY ` (Default: unset)
87
90
@@ -489,7 +492,7 @@ A 64 bit image can be generated from the `arm64` branch in this repository. Just
489
492
replace the command from [ this section] ( #getting-started-with-building-your-images )
490
493
by the one below, and follow the rest of the documentation:
491
494
``` bash
492
- git clone --depth 1 -- branch arm64 https://github.com/RPI-Distro/pi-gen.git
495
+ git clone --branch arm64 https://github.com/RPI-Distro/pi-gen.git
493
496
```
494
497
495
498
If you want to generate a 64 bits image from a Raspberry Pi running a 32 bits
0 commit comments