mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-05 07:03:02 +02:00
On amd64, we use grub instead of U-Boot, because yours truly can't figure out how to handle ACPI handover to the kernel. The resulting image is now called disk.img instead of the old mmc.img, since we can use it over any interface (e.g. virtio or SCSI).
67 lines
740 B
Plaintext
67 lines
740 B
Plaintext
@BOOTIMG@
|
|
|
|
image aux.ext4 {
|
|
mountpoint = "/aux"
|
|
temporary = true
|
|
size = @AUXSIZE@
|
|
|
|
ext4 {
|
|
label = "aux"
|
|
}
|
|
}
|
|
|
|
image cfg.ext4 {
|
|
empty = true
|
|
temporary = true
|
|
size = @CFGSIZE@
|
|
|
|
ext4 {
|
|
label = "cfg"
|
|
}
|
|
}
|
|
|
|
image var.ext4 {
|
|
empty = true
|
|
temporary = true
|
|
size = @VARSIZE@
|
|
|
|
ext4 {
|
|
label = "var"
|
|
}
|
|
}
|
|
|
|
image disk.img {
|
|
size = @TOTALSIZE@
|
|
hdimage {
|
|
partition-table-type = "gpt"
|
|
}
|
|
|
|
@BOOTPART@
|
|
|
|
partition aux {
|
|
offset = @AUXOFFS@
|
|
image = "aux.ext4"
|
|
}
|
|
|
|
partition primary {
|
|
image = "rootfs.squashfs"
|
|
size = @IMGSIZE@
|
|
}
|
|
|
|
partition secondary {
|
|
image = "rootfs.squashfs"
|
|
size = @IMGSIZE@
|
|
}
|
|
|
|
partition cfg {
|
|
image = "cfg.ext4"
|
|
}
|
|
|
|
partition var {
|
|
image = "var.ext4"
|
|
}
|
|
}
|
|
|
|
# Silence genimage warnings
|
|
config {}
|