Fix missing regex end when calling sed; add target_platforms target
This commit is contained in:
parent
89ef824285
commit
42f88e3d30
5
Makefile
5
Makefile
|
@ -12,9 +12,12 @@ xzimages: $(addsuffix .img.xz,$(platforms))
|
||||||
images: $(addsuffix .img,$(platforms))
|
images: $(addsuffix .img,$(platforms))
|
||||||
yaml: $(addsuffix .yaml,$(platforms))
|
yaml: $(addsuffix .yaml,$(platforms))
|
||||||
|
|
||||||
|
target_platforms:
|
||||||
|
@echo $(platforms)
|
||||||
|
|
||||||
raspi_base_buster.yaml: raspi_master.yaml
|
raspi_base_buster.yaml: raspi_master.yaml
|
||||||
cat raspi_master.yaml | \
|
cat raspi_master.yaml | \
|
||||||
sed "s/__FIRMWARE_PKG__/raspi3-firmware" | \
|
sed "s/__FIRMWARE_PKG__/raspi3-firmware/" | \
|
||||||
sed "s/__RELEASE__/buster/" > $@
|
sed "s/__RELEASE__/buster/" > $@
|
||||||
|
|
||||||
raspi_1_buster.yaml: raspi_base_buster.yaml
|
raspi_1_buster.yaml: raspi_base_buster.yaml
|
||||||
|
|
Loading…
Reference in New Issue