Skip to content

Commit 3b81565

Browse files
authored
Add minimal-os image config for arm64 (microsoft#14001)
1 parent 47f1430 commit 3b81565

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"Disks": [
3+
{
4+
"PartitionTableType": "gpt",
5+
"MaxSize": 600,
6+
"Artifacts": [
7+
{
8+
"Name": "minimal-os",
9+
"Type": "vhdx"
10+
}
11+
],
12+
"Partitions": [
13+
{
14+
"ID": "boot",
15+
"Flags": [
16+
"esp",
17+
"boot"
18+
],
19+
"Start": 1,
20+
"End": 9,
21+
"FsType": "fat32"
22+
},
23+
{
24+
"ID": "rootfs",
25+
"Start": 9,
26+
"End": 0,
27+
"FsType": "ext4"
28+
}
29+
]
30+
}
31+
],
32+
"SystemConfigs": [
33+
{
34+
"Name": "Standard",
35+
"BootType": "efi",
36+
"PartitionSettings": [
37+
{
38+
"ID": "boot",
39+
"MountPoint": "/boot/efi",
40+
"MountOptions": "umask=0077"
41+
},
42+
{
43+
"ID": "rootfs",
44+
"MountPoint": "/"
45+
}
46+
],
47+
"PackageLists": [
48+
"packagelists/minimal-os-packages.json"
49+
],
50+
"KernelOptions": {
51+
"default": "kernel"
52+
}
53+
}
54+
]
55+
}

0 commit comments

Comments
 (0)