Warning, /plasma-bigscreen/bigscreen-debos-image-rpi4/recipes/finalize.yml is written in an unsupported language. File is not indexed.

0001 {{- $architecture := or .architecture "arm64" -}}
0002 {{- $firmware_version := or .firmware_version "master" -}}
0003 {{ $suite :=  or .suite "bionic" }}
0004 {{- $image := or .image "mycroft-mark2-rpi4.img" -}}
0005 
0006 architecture: {{ $architecture }}
0007 
0008 actions:
0009   - action: filesystem-deploy
0010     description: Deploying filesystem into image
0011 
0012   - action: run
0013     description: Creating ramdisk
0014     chroot: true
0015     script: ../scripts/93-create_ramdisk.sh
0016 
0017   - action: run
0018     description: Creating swap file
0019     chroot: true
0020     script: ../scripts/94-create_swap.sh
0021 
0022   - action: run
0023     description: Create bmap file
0024     postprocess: true
0025     command: bmaptool create {{ $image }} > {{ $image }}.img.bmap
0026 
0027   - action: run
0028     description: Compress image
0029     postprocess: true
0030     command: gzip -f9 {{ $image }}