Skip to content
Snippets Groups Projects
apertis-image-uboot.yaml 3.20 KiB
{{ $architecture := or .architecture "arm64" }}
{{ $type := or .type "minimal" }}
{{ $mirror := or .mirror "https://repositories.apertis.org/apertis/" }}
{{ $suite := or .suite "18.12" }}
{{ $timestamp := or .timestamp "00000000.0" }}
{{ $ospack := or .ospack (printf "ospack_%s-%s-%s_%s" $suite $architecture $type $timestamp) }}
{{ $image := or .image (printf "apertis-%s-%s-%s_%s" $suite  $type $architecture $timestamp) }}

{{ $cmdline := or .cmdline " rootwait ro fsck.mode=auto fsck.repair=yes" }}

{{ $demopack := or .demopack "disabled" }}
{{ if eq $type "minimal" }}
{{ $demopack := "disabled" }}
{{ end }}

architecture: {{ $architecture }}

actions:
  - action: unpack
    description: Unpack {{ $ospack }}
    compression: gz
    file: {{ $ospack }}.tar.gz

  # Add multimedia demo pack
  # Provide URL via '-t demopack:"https://images.apertis.org/media/multimedia-demo.tar.gz"'
  # to add multimedia demo files
  {{ if ne $demopack "disabled" }}
  - action: download
    url: {{ $demopack }}
    name: mediademo

  - action: unpack
    origin: mediademo
  {{ end }}

  - action: image-partition
    imagename: {{ $image }}.img
{{ if eq $type "minimal" }}
    imagesize: 4G
{{ else }}
    imagesize: 15G
{{end}}
    partitiontype: gpt

    mountpoints:
      - mountpoint: /
        partition: system
        flags: [ boot ]
        options: [ rw ]
      - mountpoint: /boot
        partition: boot
      - mountpoint: /home
        partition: general_storage

    partitions:
      - name: boot
        fs: ext2
        start: 0%
        end: 256M
        flags: [ boot ]
      - name: system
        fs: btrfs
        start: 256M
{{ if eq $type "minimal" }}
        end: 2048M
{{ else }}
        end: 8192M
{{end}}
      - name: general_storage
        fs: btrfs