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 boot { 32 active y 33 type linux 34 len 8064 35 } 36 37 # /dev/sdX4 38 # (extended partion begins) 39 40 # /dev/sdX5 41 third_party { 42 type linux 43 len 8064 44 } 45 46 # /dev/sdX6 47 inst_data { 48 type linux 49 } 50 51 # /dev/sdX7 52 inst_cache { 53 type linux 54 } 55 } 56} 57