diff options
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ad53c42..9793676 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,7 +6,7 @@ use sys_mount::{Mount, Unmount, UnmountFlags}; fn main() -> io::Result<()> { let _mount = Mount::builder() .fstype("fat") - .mount("/dev/disk/by-partuuid/00000000-01", "/boot") + .mount("/dev/mmcblk0p1", "/boot") .expect("can't mount boot partition"); let _mount = _mount.into_unmount_drop(UnmountFlags::DETACH); |