From 0bee6e9f95d36250e6df3a705c0142b216079104 Mon Sep 17 00:00:00 2001 From: zsdc Date: Thu, 27 Oct 2022 19:43:07 +0300 Subject: nvme: T4776: Fixed installation to NVME * fixed NVME drive names parser * replaced partition parser to take into account `p` suffixes on NVME partitions --- scripts/install/install-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/install/install-functions') diff --git a/scripts/install/install-functions b/scripts/install/install-functions index 458d2e63..b3ec42c1 100755 --- a/scripts/install/install-functions +++ b/scripts/install/install-functions @@ -176,7 +176,7 @@ select_drive () { # the first grep pattern looks for devices named c0d0, hda, and sda. drives=$(cat /proc/partitions | \ awk '{ if ($4!="name") { print $4 } }' | \ - egrep "c[0-9]d[0-9]$|[hsv]d[a-z]$|nvme[0-9]n[0-9]|mmcblk[0-9]" | \ + egrep "c[0-9]d[0-9]$|[hsv]d[a-z]$|nvme[0-9]n[0-9]$|mmcblk[0-9]" | \ egrep -v "^$" | sort) #this needs more testing to decide if better than above -- cgit v1.2.3