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

0001 {{- $image := or .image "mycroft-mark2-respeaker.img" -}}
0002 {{ $suite :=  "bionic" }}
0003 
0004 architecture: armhf
0005 
0006 actions:
0007   - action: run
0008     description: Add respeaker apt repo
0009     chroot: true
0010     command: echo "deb http://respeaker.seeed.io/deb stretch main" > /etc/apt/sources.list.d/respeaker.list
0011 
0012   - action: run
0013     description: Add neon apt repo
0014     chroot: true
0015     command: echo "deb https://archive.neon.kde.org/unstable bionic main" > /etc/apt/sources.list.d/neon.list
0016 
0017   - action: run
0018     description: Add xneon apt repo
0019     chroot: true
0020     command: echo "deb http://archive.xenon.pangea.pub/unstable bionic main" > /etc/apt/sources.list.d/xenon.list
0021 
0022   - action: apt
0023     packages:
0024       - libmali-rk-utgard-400-r7p0
0025       - linux-firmware-image-4.4.138-respeaker-r0
0026       - linux-image-4.4.138-respeaker-r0
0027       - re-bluetooth
0028       - re-wifi
0029       - rk-firmware
0030       - xserver-xorg-video-armsoc-bsp-rock64
0031 
0032   - action: overlay
0033     source: ../overlays/respeaker
0034 
0035   # partition table
0036   - action: image-partition
0037     imagename: {{ $image }}
0038     imagesize: 8GB
0039     partitiontype: msdos
0040     mountpoints:
0041       - mountpoint: /
0042         partition: ROOTFS
0043     partitions:
0044       - name: BOOT
0045         fs: fat32
0046         start: 32768s
0047         end: 237567s
0048         flags: [ boot ]
0049       - name: ROOTFS
0050         fs: ext4
0051         start: 237568s
0052         end: 100%
0053         flags: [ boot ]
0054 
0055 #TODO after filesystem?
0056   - action: raw
0057     origin: filesystem
0058     source: /opt/u-boot/respeakerv2/idbloader.img
0059     offset: {{ sector 64 }}
0060 
0061   - action: raw
0062     origin: filesystem
0063     source: /opt/u-boot/respeakerv2/uboot.img
0064     offset: {{ sector 16384 }}
0065 
0066   - action: raw
0067     origin: filesystem
0068     source: /opt/u-boot/respeakerv2/trust.img
0069     offset: {{ sector 24576 }}
0070