* System.out.println("partition table:"); for (int i = 0; i < 4; i++) {
* System.out.println("" + i + " " + mbr.getPartition(i)); }
*/
/* Format partition 0 */
part0 = new MappedFSBlockDeviceSupport(device, pte.getStartLba()
* bytesPerSector, pte.getNrSectors() * bytesPerSector);
GrubFatFormatter ff = createFormatter();
ff.setInstallPartition(0x0000FFFF);
ff.format(part0);
GrubBootSector part0bs = (GrubBootSector) ff.getBootSector();