forked from erfanoabdi/rootfs-builder-debos-android9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pinetab.yaml
55 lines (48 loc) · 1.3 KB
/
pinetab.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{{- $architecture := or .architecture "arm64" -}}
{{- $image := or .image "ubuntu-touch-pinetab.img" -}}
{{- $variant := or .variant "lima" -}}
{{- $debug := or .debug "off" -}}
architecture: {{ $architecture }}
actions:
- action: recipe
description: Pine64 common
recipe: pine64-common.yaml
variables:
architecture: {{ $architecture }}
variant: {{ $variant }}
debug: {{ $debug }}
- action: overlay
source: pine64/pinetab
destination: /
- action: image-partition
description: Creating image
imagename: {{ $image }}
imagesize: 4GB
partitiontype: msdos
mountpoints:
- mountpoint: /
partition: ROOTFS
partitions:
- name: ROOTFS
fs: ext4
start: 1M
end: 100%
flags: [ boot ]
- action: filesystem-deploy
description: Deploying filesystem into image
- action: raw
description: Installing bootloader
origin: u-boot
source: u-boot-sunxi-with-spl-pinephone.bin
offset: 8192
- action: recipe
description: Common Pine64 end-of-image tasks
recipe: pine64-common-end.yaml
variables:
architecture: {{ $architecture }}
- action: recipe
description: Polish the image
recipe: polish.yaml
variables:
architecture: {{ $architecture }}
image: {{ $image }}