Skip to content

Commit

Permalink
Update default release and disable qcow2 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
usimd committed Nov 11, 2023
1 parent eebe33c commit b7192f3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ tries to make sure the stage is respected and its changes are included in the fi

# The release version to build images against. Valid values are jessie, stretch,
# buster, bullseye, bookworm, and testing.
release: bullseye
release: bookworm

# Setting to `1` will prevent pi-gen from dropping the "capabilities" feature.
# Generating the root filesystem with capabilities enabled and running it from a
Expand All @@ -152,8 +152,10 @@ tries to make sure the stage is respected and its changes are included in the fi
# System timezone.
timezone: Europe/London

# Use qcow2 images to reduce space and runtime requirements.
use-qcow2: 1
# Use qcow2 images to reduce space and runtime requirements. _WARNING_: this is
# broken on recent versions of `pi-gen` and destined to be removed entirely (see
# https://github.com/RPi-Distro/pi-gen/pull/648).
use-qcow2: 0

# Name of the initial user account.
username: pi
Expand Down
8 changes: 5 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ inputs:
description: Final image name.
required: true
use-qcow2:
description: Use qcow2 images to reduce space and runtime requirements.
description: |
Use qcow2 images to reduce space and runtime requirements.
_WARNING_: this is broken on recent versions of `pi-gen` and destined to be removed entirely (see https://github.com/RPi-Distro/pi-gen/pull/648).
required: false
default: 1
default: 0
setfcap:
description: |
Setting to `1` will prevent pi-gen from dropping the "capabilities" feature. Generating the root filesystem with capabilities enabled and running
Expand All @@ -28,7 +30,7 @@ inputs:
release:
description: The release version to build images against. Valid values are jessie, stretch, buster, bullseye, bookworm, and testing.
required: false
default: bullseye
default: bookworm
compression:
description: Compression to apply on final image (either "none", "zip", "xz" or "gz").
required: false
Expand Down

0 comments on commit b7192f3

Please sign in to comment.