~wesley-wiedenmeier/curtin/uefi-test

« back to all changes in this revision

Viewing changes to examples/tests/uefi.yaml

  • Committer: Wesley Wiedenmeier
  • Date: 2016-01-30 01:36:31 UTC
  • Revision ID: wesley.wiedenmeier@gmail.com-20160130013631-kwgx4e9fc6lo4oi0
Added uefi test file and config, not currently working due to issue with ovmf
boot device selection

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
storage:
 
2
    version: 1
 
3
    config:
 
4
      - id: disk1
 
5
        type: disk
 
6
        ptable: gpt
 
7
        name: main_disk
 
8
        path: /dev/vdb
 
9
        wipe: superblock
 
10
      #- id: disk2
 
11
        #type: disk
 
12
        #ptable: msdos
 
13
        #name: srv_disk
 
14
        #path: /dev/vdc
 
15
        #wipe: superblock
 
16
        #flag: boot
 
17
      - id: disk1esp
 
18
        type: partition
 
19
        size: 512MB
 
20
        device: disk1
 
21
        flag: esp
 
22
      - id: disk1p1
 
23
        type: partition
 
24
        size: 4GB
 
25
        device: disk1
 
26
      - id: disk1p2
 
27
        type: partition
 
28
        size: 4G
 
29
        device: disk1
 
30
      #- id: disk2p1
 
31
        #type: partition
 
32
        #size: 2G
 
33
        #device: disk2
 
34
      - id: esp
 
35
        type: format
 
36
        volume: disk1esp
 
37
        fstype: fat32
 
38
      - id: disk1p1_root
 
39
        type: format
 
40
        fstype: ext4
 
41
        volume: disk1p1
 
42
      - id: disk1p2_home
 
43
        type: format
 
44
        fstype: fat32
 
45
        volume: disk1p2
 
46
      #- id: disk2p1_srv
 
47
        #type: format
 
48
        #fstype: xfs
 
49
        #volume: disk2p1
 
50
      - id: disk1p1_mount
 
51
        type: mount
 
52
        path: /
 
53
        device: disk1p1_root
 
54
      - id: esp_mount
 
55
        type: mount
 
56
        path: /boot/efi
 
57
        device: esp
 
58
      - id: disk1p2_mount
 
59
        type: mount
 
60
        path: /home
 
61
        device: disk1p2_home
 
62
      #- id: disk2p1_mount
 
63
        #type: mount
 
64
        #path: /srv
 
65
        #device: disk2p1_srv