Skip to content
Snippets Groups Projects
apertis-image-uboot.yaml 3.17 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" }}

{{ $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
{{ if eq $type "minimal" }}
        start: 2048M
{{ else }}
        start: 8192M
{{end}}
        end: -4M

  - action: filesystem-deploy
    description: Deploying ospack onto image

  - action: run
    description: Add kernel parameters
    chroot: true
    command: sed -i '1 s/$/{{ $cmdline }}/' /etc/kernel/cmdline

  - action: apt
    description: Kernel and system packages
    packages:
      - kmod
      - linux-base
      - initramfs-tools
{{ if eq $architecture "armhf" }}
      - linux-image-armmp
{{ else }}
      - linux-image-{{$architecture}}
{{ end }}
      - btrfs-tools
      - u-boot-menu

  - action: run
    description: "Save installed package status"
    chroot: false
    command: gzip -c "${ROOTDIR}/var/lib/dpkg/status" > "${ARTIFACTDIR}/{{ $image }}.pkglist.gz"

  - action: run
    description: Cleanup /var/lib
    script: scripts/remove_var_lib_parts.sh

  - action: run
    description: List files on {{ $image }}
    chroot: false
    script: scripts/list-files "$ROOTDIR" | gzip > "${ARTIFACTDIR}/{{ $image }}.filelist.gz"

  - action: run
    description: Create block map for {{ $image }}.img
    postprocess: true
    command: bmaptool create {{ $image }}.img > {{ $image }}.img.bmap

  - action: run
    description: Compress {{ $image }}.img
    postprocess: true
    command: gzip -f {{ $image }}.img

  - action: run
    description: Checksum for {{ $image }}.img.gz
    postprocess: true
    command: sha256sum {{ $image }}.img.gz > {{ $image }}.img.gz.sha256