Changeset 2561
- Timestamp:
- 08/08/08 07:16:29 (4 months ago)
- Files:
-
- 1 modified
-
pcbsd/trunk/PCInstall/pcinstall.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk/PCInstall/pcinstall.cpp
r2555 r2561 1664 1664 case 0: 1665 1665 PartLetter = "a"; 1666 Type = "UFS2"; 1666 tmp = comboFileSystem->currentText(); 1667 if ( tmp.indexOf("ZFS") == -1) 1668 { 1669 Type = tmp; 1670 } else { 1671 Type = "UFS2"; 1672 } 1667 1673 break; 1668 1674 case 1: … … 1671 1677 break; 1672 1678 case 2: 1679 PartLetter = "d"; 1680 Type = comboFileSystem->currentText(); 1681 break; 1682 case 3: 1673 1683 PartLetter = "e"; 1674 1684 Type = comboFileSystem->currentText(); 1675 1685 break; 1676 case 3:1686 case 4: 1677 1687 PartLetter = "f"; 1678 1688 Type = comboFileSystem->currentText(); 1679 1689 break; 1680 case 4:1690 case 5: 1681 1691 PartLetter = "g"; 1682 1692 Type = comboFileSystem->currentText(); 1683 1693 break; 1684 case 5:1694 case 6: 1685 1695 PartLetter = "h"; 1686 1696 Type = comboFileSystem->currentText();
