-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathubuntu24-aarch64-minimal-raw.yml
More file actions
87 lines (76 loc) · 2.23 KB
/
ubuntu24-aarch64-minimal-raw.yml
File metadata and controls
87 lines (76 loc) · 2.23 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
image:
name: minimal-os-image-ubuntu
version: "24.04"
target:
os: ubuntu
dist: ubuntu24
arch: aarch64
imageType: raw
# Sample list of additional package repositories; replace codename, url, and pkey values as needed
packageRepositories:
- codename: "company-internal"
url: "<URL>"
pkey: "<PUBLIC_KEY_URL>" # Uncomment and replace in real config
component: "main"
- codename: "dev-tools"
url: "<URL>"
pkey: "<PUBLIC_KEY_URL>" # Uncomment and replace in real config
- codename: "intel-openvino"
url: "<URL>"
pkey: "<PUBLIC_KEY_URL>" # Uncomment and replace in real config
component: "restricted"
disk:
name: Minimal_ubuntu_arm_Raw # 1:1 mapping to the systemConfigs name
artifacts:
-
type: raw # image file format, valid value [raw, vhd, vhdx, qcow2, vmdk, vdi]
compression: gz # image compression format (optional)
size: 4GiB # 4G, 4GB, 4096 MiB also valid. (Required for raw)
partitionTableType: gpt # Partition table type, valid value: [gpt, mbr]
partitions: # Required for raw, optional for ISO, not needed for rootfs.
- id: boot
type: esp
flags:
- esp
- boot
start: 1MiB
end: 100MiB
fsType: fat32
mountPoint: /efi
mountOptions: umask=0077
- id: rootfs
type: linux-root-amd64
start: 1025MiB
end: 3583MiB
fsType: ext4
mountPoint: /
mountOptions: defaults
- id: extendedboot
type: xbootldr
start: 101MiB
end: 1024MiB
fsType: vfat
mountPoint: /boot
mountOptions: defaults
systemConfig:
name: minimal
description: Minimal ubuntu image
immutability:
enabled: false # default is true
# To enable Secure Boot, provide the actual file paths for your environment below and uncomment the relevant lines.
# secureBootDBKey: "<SECURE_BOOT_DB_KEY_PATH>"
# secureBootDBCrt: "<SECURE_BOOT_DB_CRT_PATH>"
# secureBootDBCer: "<SECURE_BOOT_DB_CER_PATH>"
packages:
- ubuntu-minimal
- systemd-boot
- dracut-core
- systemd
- cryptsetup-bin
- openssh-server
- systemd-resolved
kernel:
version: "6.17"
cmdline: "console=ttyS0,115200 console=tty0 loglevel=7"
packages:
- linux-image-generic-hwe-24.04