From 42f88e3d308c940487c8c6d2934e898b0f10f949 Mon Sep 17 00:00:00 2001 From: Gunnar Wolf Date: Tue, 26 Jan 2021 00:55:23 -0600 Subject: [PATCH] Fix missing regex end when calling sed; add target_platforms target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60269f2..e9289d6 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,12 @@ xzimages: $(addsuffix .img.xz,$(platforms)) images: $(addsuffix .img,$(platforms)) yaml: $(addsuffix .yaml,$(platforms)) +target_platforms: + @echo $(platforms) + raspi_base_buster.yaml: raspi_master.yaml cat raspi_master.yaml | \ - sed "s/__FIRMWARE_PKG__/raspi3-firmware" | \ + sed "s/__FIRMWARE_PKG__/raspi3-firmware/" | \ sed "s/__RELEASE__/buster/" > $@ raspi_1_buster.yaml: raspi_base_buster.yaml