diff options
author | Brooks Swinnerton <bswinnerton@gmail.com> | 2018-11-05 21:01:47 -0500 |
---|---|---|
committer | Brooks Swinnerton <bswinnerton@gmail.com> | 2018-11-05 21:01:47 -0500 |
commit | 645875f060705d8e12235d5d444c9fc8d4a615fa (patch) | |
tree | 24283ddc6b0ea30753609c4161e9fa078634fca2 | |
parent | 7b7136592a921f2a3bdc75b483429687e244722c (diff) | |
download | vyatta-cfg-system-645875f060705d8e12235d5d444c9fc8d4a615fa.tar.gz vyatta-cfg-system-645875f060705d8e12235d5d444c9fc8d4a615fa.zip |
T967: Use similar partition scheme for nvme disks
In the absence of this commit, the installer hangs right after:
> How big of a root partition should I create?
-rwxr-xr-x | scripts/install/install-get-partition | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install/install-get-partition b/scripts/install/install-get-partition index d6bb5524..e44fcec1 100755 --- a/scripts/install/install-get-partition +++ b/scripts/install/install-get-partition @@ -699,7 +699,7 @@ create_partitions() { fi # set the partition number on the device. - if [ -n "$( echo $ldrive | grep -E "cciss|ida" )" ]; then + if [ -n "$( echo $ldrive | grep -E "cciss|ida|nvme" )" ]; then # if this is a cciss ROOT_PARTITION=$ldrive"p1" else |