-
Notifications
You must be signed in to change notification settings - Fork 50
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
Showing
2 changed files
with
71 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters