~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to examples/partitioning-demos/custom-partitioning-demo-gpt.yaml

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
storage:
2
 
    version: 1
3
 
    config:
4
 
      - id: sda
5
 
        type: disk
6
 
        ptable: gpt
7
 
        model: QEMU HARDDISK
8
 
        serial: QM00002
9
 
      - id: bios_boot_partition
10
 
        type: partition
11
 
        size: 1MB
12
 
        device: sda
13
 
        flag: bios_grub
14
 
      - id: sda1
15
 
        type: partition
16
 
        size: 8GB
17
 
        device: sda
18
 
      - id: sda2
19
 
        type: partition
20
 
        size: 1GB
21
 
        device: sda
22
 
      - id: sda1_root
23
 
        type: format
24
 
        fstype: ext4
25
 
        volume: sda1
26
 
      - id: sda2_home
27
 
        type: format
28
 
        fstype: ext4
29
 
        volume: sda2
30
 
      - id: sda1_mount
31
 
        type: mount
32
 
        path: /
33
 
        device: sda1_root
34
 
      - id: sda2_mount
35
 
        type: mount
36
 
        path: /home
37
 
        device: sda2_home