RockPro64: allow PCIe NVMe internal SSD (#185)

The RockPro64 board has a PCIe slot that can be used with a slim
NVMe M.2 SSD drive. This makes attaching an external drive unnecessary
and can allow for a nice compact form factor.

The partition naming scheme is a bit different. While on regular USB
drives partitions are called e.g. /dev/sda1, on an NVMe drive the
partition is called /dev/nvme0n1p1 (note the appendix 'p1' instead
of '1')

This commit extends the script 'mount_drive.tcl' to
* recognize blockdevices starting with 'nvme' in findBlockDevices()
* use the variable $blockPartition in createMyNodeFsOnBlockDevice() to
  allow for the different partition naming scheme
This commit is contained in:
Stadicus 2020-02-12 06:05:37 +01:00 committed by GitHub
parent 5b3a4037ac
commit bb3a9714a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ proc findBlockDevices {hardDrivesName} {
set hardDrives {}
foreach dev $devs {
if [regexp "sd.*|hd.*|vd.*" $dev] {
if [regexp "sd.*|hd.*|vd.*|nvme.*" $dev] {
lappend hardDrives $dev
}
}
@ -71,12 +71,18 @@ proc createMyNodeFsOnBlockDevice {blockDevice} {
runCommand /usr/bin/format_drive.sh ${blockDevice}
after 5000
puts "Formatting new partition ${blockDevice}1"
runCommand mkfs.ext4 -F -L myNode /dev/${blockDevice}1
if [regexp "nvme.*" $blockDevice] {
set blockPartition ${blockDevice}p1
} else {
set blockPartition ${blockDevice}1
}
runCommand mount /dev/${blockDevice}1 /mnt/hdd -o errors=continue
puts "Formatting new partition ${blockPartition}"
runCommand mkfs.ext4 -F -L myNode /dev/${blockPartition}
runCommand mount /dev/${blockPartition} /mnt/hdd -o errors=continue
runCommand date >/mnt/hdd/.mynode
runCommand echo /dev/${blockDevice}1 > /tmp/.mynode_drive
runCommand echo /dev/${blockPartition} > /tmp/.mynode_drive
}] {
puts "Formatting on ${blockDevice} failed: $::errorInfo"
return 0