summaryrefslogtreecommitdiffstats
path: root/target/board/generic_x86/disk_layout.conf
blob: 7b073eef5453b00dd177955317cb43cdf8925222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
device {
    path /dev/block/sda

    scheme mbr

    # bytes in a disk sector (== 1 LBA), must be a power of 2!
    sector_size 512

    # What LBA should the partitions start at?
    start_lba 2048

    # Autodetect disk size if == 0
    num_lba 0

    partitions {
        sysloader {
            active y
            type linux
            len 7M
        }

        recovery {
            active y
            type linux
            len 16M
        }

        boot {
            active y
            type linux
            len 8M
        }

        cache {
            type linux
            len 512M
        }

        system {
            type linux
            len 512M
        }

        third_party {
            type linux
            len 512M
        }

        data {
            type linux
            len -1
        }
    }
}