Merge pull request #84 from perqin/master

Support NVMe disk drives
This commit is contained in:
eloaders 2019-10-30 20:26:55 +01:00 committed by GitHub
commit fc3eb651a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@ Function _inits()
For Avail_HDD = 1 To Dir("/sys/block/", "sr*").Count
Finfosys.ComboBox4.Add(Dir("/sys/block/", "sr*")[Avail_HDD - 1])
Next
For Avail_HDD = 1 To Dir("/sys/block/", "nvme*").Count
Finfosys.ComboBox4.Add(Dir("/sys/block/", "nvme*")[Avail_HDD - 1])
Next
End
Function _init_2()