We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82ab134 + ca7db8e commit 380de79Copy full SHA for 380de79
usr/libexec/helper-scripts/get-backing-devices-for-mountpoint
@@ -140,7 +140,12 @@ def find_backing_items(path):
140
)
141
return output_objs
142
else:
143
- raise ValueError("Failed to look up backing item! (code 15)")
+ ## Out-commented. This may happen if mutliple filesystems are
144
+ ## mounted to the same location and the mount we're looking
145
+ ## for is shadowing an earlier mount. This scenario occurs
146
+ ## when booting in live mode under at least Trixie.
147
+ #raise ValueError("Failed to look up backing item! (code 15)")
148
+ continue
149
150
# If we get here, we weren't able to find the backing device.
151
raise ValueError("Failed to look up backing item! (code 16)")
0 commit comments