Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
otk-gen-partition-table: support "raw" partitions without payload
This commit adds support for "raw" partitions without a "payload", i.e. no filesystem or LVM volume or similar. This is used for the PPC64/s390x partition table that looks like this: ``` otk.define: filesystem: modifications: # empty otk.external.otk-gen-partition-table: modifications: ${filesystem.modifications} properties: type: dos default_size: "10 GiB" uuid: "0x14fc63d2" partitions: - name: ppc-boot bootable: true size: "4 MiB" part_uuid: "" part_type: "41" - name: boot mountpoint: /boot label: boot size: "1 GiB" type: "xfs" fs_mntops: defaults part_uuid: "" - name: root mountpoint: / type: "xfs" size: "2 GiB" fs_mntops: defaults part_uuid: "" ``` Thanks to Florian Schüller for the initial implementation/research here. Co-authored-by: Florian Schüller <[email protected]>
- Loading branch information