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.
1 parent 9e883a8 commit 7c7e176Copy full SHA for 7c7e176
src/cmd/boot_service/mod.rs
@@ -532,7 +532,7 @@ async fn setup_rootfs_dm_verity(root_hash: &str, lower_dm_device: &str) -> Resul
532
async {
533
tokio::task::spawn_blocking(|| {
534
liblmod::modprobe(
535
- "dm_verity".to_string(),
+ "dm-verity".to_string(),
536
"".to_string(),
537
liblmod::Selection::Current,
538
)
@@ -542,7 +542,7 @@ async fn setup_rootfs_dm_verity(root_hash: &str, lower_dm_device: &str) -> Resul
542
}
543
Ok(())
544
})
545
- .context("Failed to load kernel module 'dm_verity'")
+ .context("Failed to load kernel module 'dm-verity'")
546
547
.await??;
548
0 commit comments