Replies: 1 comment
-
If i apply this patch, sdb shows on GUI diff --git a/pyanaconda/modules/storage/devicetree/model.py b/pyanaconda/modules/storage/devicetree/model.py
index 38aa16a6b0a5..3d24afbf9a86 100644
--- a/pyanaconda/modules/storage/devicetree/model.py
+++ b/pyanaconda/modules/storage/devicetree/model.py
@@ -397,6 +397,8 @@ class InstallerStorage(Blivet):
disks.append(d)
elif d.size > 0 and d.media_present:
disks.append(d)
+ elif d in self.mdmembers:
+ disks.append(d)
# Remove duplicate names from the list.
return sorted(set(disks), key=lambda d: d.name) It's just a workground, there are too much work to do(i guess, suppose). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Situation
I have a SSD(Before it was RAID mdmember), SATA interface,
ctrl+alt+f2
journalctl shows:However, There no sdb shows on Anaconda GUI
Installation Destination
window.Detail
I have two ssd
Now, SSD1 just retired from RAID0 arrry, I want to use SSD1 as a normal SSD:
If
ctrl+alt+F2
,lsblk
could see SSD1.Idea
Should we support
retired RAID mdmember
duringInstallation Destination
?Beta Was this translation helpful? Give feedback.
All reactions