Home | History | Annotate | Download | only in diskinstaller
      1 device {
      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 }
     51