Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Backport fix for >2TB drives
  • Loading branch information
Kris Moore committed Nov 7, 2013
1 parent f233898 commit 0e213ad
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src-qt4/pc-installgui/installer.cpp
Expand Up @@ -257,6 +257,9 @@ bool Installer::autoGenPartitionLayout(QString target, bool isDisk)
if( !ok )
return false;

// If over 1.99TB, we should use GPT mode
if ( totalSize > 1999900 )
loadGPT=true;

// If on amd64 lets use ZFS, it rox
if ( Arch == "amd64" ) {
Expand Down

0 comments on commit 0e213ad

Please sign in to comment.