~smoser/curtin/trunk.bzr-dead

« back to all changes in this revision

Viewing changes to examples/partitioning-demos/custom-partitioning-demo-bcache.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
 
partitioning_commands:
2
 
 builtin: curtin block-meta custom
3
 
 
4
 
storage:
5
 
    version: 1
6
 
    config:
7
 
      - id: sda
8
 
        type: disk
9
 
        ptable: msdos
10
 
        model: QEMU HARDDISK
11
 
        serial: QM00002
12
 
      - id: sdb
13
 
        type: disk
14
 
        ptable: msdos
15
 
        model: QEMU HARDDISK
16
 
        serial: QM00003
17
 
      - id: sda1
18
 
        type: partition
19
 
        number: 1
20
 
        size: 7GB
21
 
        device: sda
22
 
        flag: boot
23
 
      - id: sda2
24
 
        type: partition
25
 
        number: 2
26
 
        size: 2GB
27
 
        device: sda
28
 
      - id: sdb1
29
 
        type: partition
30
 
        number: 1
31
 
        size: 1GB
32
 
        device: sdb
33
 
      - id: bcache0
34
 
        type: bcache
35
 
        backing_device: sda2
36
 
        cache_device: sdb1
37
 
      - id: sda1_root
38
 
        type: format
39
 
        fstype: ext4
40
 
        volume: sda1
41
 
      - id: bcache_home
42
 
        type: format
43
 
        fstype: ext4
44
 
        volume: bcache0
45
 
      - id: sda1_mount
46
 
        type: mount
47
 
        path: /
48
 
        device: sda1_root
49
 
      - id: home_mount
50
 
        type: mount
51
 
        path: /home
52
 
        device: bcache_home