mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
73 lines
884 B
Plaintext
73 lines
884 B
Plaintext
@BOOTIMG@
|
|
|
|
image cfg.ext4 {
|
|
empty = true
|
|
temporary = true
|
|
size = @CFGSIZE@
|
|
|
|
ext4 {
|
|
label = "cfg"
|
|
use-mke2fs = true
|
|
}
|
|
}
|
|
|
|
image var.ext4 {
|
|
empty = true
|
|
temporary = true
|
|
size = @VARSIZE@
|
|
|
|
ext4 {
|
|
label = "var"
|
|
use-mke2fs = true
|
|
}
|
|
}
|
|
|
|
image disk.img {
|
|
temporary = true
|
|
size = @TOTALSIZE@
|
|
hdimage {
|
|
partition-table-type = "gpt"
|
|
}
|
|
|
|
@BOOTPART@
|
|
|
|
partition aux {
|
|
offset = @AUXOFFS@
|
|
image = "aux.ext4"
|
|
partition-uuid = @AUXUUID@
|
|
}
|
|
|
|
partition primary {
|
|
image = "rootfs.squashfs"
|
|
size = @IMGSIZE@
|
|
partition-uuid = @PRIMARYUUID@
|
|
}
|
|
|
|
partition secondary {
|
|
image = "rootfs.squashfs"
|
|
size = @IMGSIZE@
|
|
partition-uuid = @SECONDARYUUID@
|
|
}
|
|
|
|
partition cfg {
|
|
image = "cfg.ext4"
|
|
}
|
|
|
|
partition var {
|
|
image = "var.ext4"
|
|
}
|
|
}
|
|
|
|
image @QCOWIMG@ {
|
|
qemu {
|
|
format = "qcow2"
|
|
}
|
|
|
|
partition disk {
|
|
image = "disk.img"
|
|
}
|
|
}
|
|
|
|
# Silence genimage warnings
|
|
config {}
|