From 5f7a28d8ec25a68fe86540fcd500166b123b7509 Mon Sep 17 00:00:00 2001 From: Cyril Brulebois Date: Sat, 20 Nov 2021 03:56:59 +0100 Subject: [PATCH] Add support for bookworm. --- Makefile | 2 +- generate-recipe.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eeb6f82..f7f3f28 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: shasums # List all the supported and built Pi platforms here. They get expanded # to names like 'raspi_2_buster.yaml' and 'raspi_3_bullseye.img.xz'. BUILD_FAMILIES := 1 2 3 4 -BUILD_RELEASES := buster bullseye +BUILD_RELEASES := buster bullseye bookworm platforms := $(foreach plat, $(BUILD_FAMILIES),$(foreach rel, $(BUILD_RELEASES), raspi_$(plat)_$(rel))) diff --git a/generate-recipe.py b/generate-recipe.py index 17d2239..2993138 100755 --- a/generate-recipe.py +++ b/generate-recipe.py @@ -17,7 +17,7 @@ if version not in ["1", "2", "3", "4"]: sys.exit(1) suite = sys.argv[2] -if suite not in ['buster', 'bullseye']: +if suite not in ['buster', 'bullseye', 'bookworm']: print("E: unsupported suite %s" % suite, file=sys.stderr) sys.exit(1) target_yaml = 'raspi_%s_%s.yaml' % (version, suite)