index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | examples/disk_layouts-sample.json | 38 |
diff --git a/examples/disk_layouts-sample.json b/examples/disk_layouts-sample.json new file mode 100644 index 00000000..ca10415c --- /dev/null +++ b/examples/disk_layouts-sample.json @@ -0,0 +1,38 @@ +{ + "/dev/loop0": { + "partitions": [ + { + "boot": true, + "encrypted": false, + "filesystem": { + "format": "fat32" + }, + "format": true, + "mountpoint": "/boot", + "size": "513MB", + "start": "5MB", + "type": "primary" + }, + { + "btrfs": { + "subvolumes": { + "@.snapshots": "/.snapshots", + "@home": "/home", + "@log": "/var/log", + "@pkgs": "/var/cache/pacman/pkg" + } + }, + "encrypted": true, + "filesystem": { + "format": "btrfs" + }, + "format": true, + "mountpoint": "/", + "size": "100%", + "start": "518MB", + "type": "primary" + } + ], + "wipe": true + } +}
\ No newline at end of file |