forked from droidian-releng/rootfs-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgsi_minimal_phone.yaml
40 lines (35 loc) · 1.02 KB
/
gsi_minimal_phone.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{{- $architecture := or .architecture "arm64" -}}
{{- $apilevel := or .apilevel "28" -}}
{{- $suite := "bookworm" -}}
{{- $version := or .version "nightly" -}}
{{- $username := or .username "droidian" -}}
{{- $password := or .password "1234" -}}
{{- $hostname := or .hostname "droidian" -}}
architecture: {{ $architecture }}
actions:
- action: recipe
description: create rootfs
recipe: gsi_base.yaml
variables:
architecture: {{ $architecture }}
apilevel: {{ $apilevel }}
suite: {{ $suite }}
username: {{ $username }}
password: {{ $password }}
hostname: {{ $hostname }}
- action: apt
chroot: true
description: install adaptation-hybris
packages:
- adaptation-hybris-api{{ $apilevel }}-phone
- droidian-phone
- droidian-minimal
{{ if eq $version "nightly" }}
- action: apt
chroot: true
description: install devtools (nightly)
packages:
- droidian-devtools
- droidian-quirks-regenerate-ssh-keys
- adaptation-hybris-devtools
{{end}}