android_img_data_layout.conf revision 4e56fb1d129fed6761571951c221b0e107e0b1eb
1device {
2    scheme mbr
3
4    # bytes in a disk "block", must be a power of 2!
5    sector_size 512
6
7    # What LBA should the partitions start at?
8    start_lba 2048
9
10    # Autodetect disk size if == 0
11    num_lba 800000
12
13    partitions {
14        # /dev/sdX1
15        sysloader {
16            active y
17            type linux
18            # 8 cyls in length... about 8M
19            len 8064
20        }
21
22        # /dev/sdX2
23        recovery {
24            active y
25            type linux
26            # 8 cyls in length... about 8M
27            len 8064
28        }
29
30        # /dev/sdX3
31        inst_boot {
32            active y
33            type linux
34        }
35
36        # /dev/sdX4
37        # (extended partion begins)
38
39        # /dev/sdX5
40        third_party {
41            type linux
42            len 8064
43        }
44
45        # /dev/sdX6
46        inst_system {
47            type linux
48        }
49
50        # /dev/sdX7
51        inst_data {
52            type linux
53        }
54
55        # /dev/sdX7
56        cache {
57            type linux
58            len 8064
59        }
60
61    }
62}
63