You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
@@ -212,6 +215,13 @@ The following environment variables are supported:
212
215
public key authentication. Note that if SSH is not enabled this will take
213
216
effect when SSH becomes enabled.
214
217
218
+
*`SETFCAP` (Default: unset)
219
+
220
+
* Setting to `1` will prevent pi-gen from dropping the "capabilities"
221
+
feature. Generating the root filesystem with capabilities enabled and running
222
+
it from a filesystem that does not support capabilities (like NFS) can cause
223
+
issues. Only enable this if you understand what it is.
224
+
215
225
*`STAGE_LIST` (Default: `stage*`)
216
226
217
227
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. Note that quotes are needed around the list. An absolute or relative path can be given for stages outside the pi-gen directory.
@@ -489,7 +499,7 @@ A 64 bit image can be generated from the `arm64` branch in this repository. Just
489
499
replace the command from [this section](#getting-started-with-building-your-images)
490
500
by the one below, and follow the rest of the documentation:
0 commit comments