You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue related to mount of devices.
This because of subname is not p1 and p2 but just 1 and 2. Refer lsblk print below.
LSBLK Printout
sdb 8:16 1 29,7G 0 disk
├─sdb1 8:17 1 256M 0 part /media/juhani/boot
└─sdb2 8:18 1 29,5G 0 part /media/juhani/rootfs
Could is be possible to add additional parameter (MNT_DEVICE_SUB or just SUB)?
I'm using external conf file with export commands and mount and umount issues
are only reasons why I have to modify the Makefile.
Content of the Makefile
mount: ## Mount the current SD device
sudo mount $(MNT_DEVICE)p1 $(MNT_BOOT)
sudo mount $(MNT_DEVICE)p2 $(MNT_ROOT)
.PHONY: unmount
unmount: ## Unmount the current SD device
sudo umount $(MNT_DEVICE)p1 || true
sudo umount $(MNT_DEVICE)p2 || true
The text was updated successfully, but these errors were encountered:
I have an issue related to mount of devices.
This because of subname is not p1 and p2 but just 1 and 2. Refer lsblk print below.
LSBLK Printout
sdb 8:16 1 29,7G 0 disk
├─sdb1 8:17 1 256M 0 part /media/juhani/boot
└─sdb2 8:18 1 29,5G 0 part /media/juhani/rootfs
Could is be possible to add additional parameter (MNT_DEVICE_SUB or just SUB)?
I'm using external conf file with export commands and mount and umount issues
are only reasons why I have to modify the Makefile.
Content of the Makefile
mount: ## Mount the current SD device$(MNT_DEVICE)p1 $ (MNT_BOOT)$(MNT_DEVICE)p2 $ (MNT_ROOT)
sudo mount
sudo mount
.PHONY: unmount
unmount: ## Unmount the current SD device
sudo umount $(MNT_DEVICE)p1 || true
sudo umount $(MNT_DEVICE)p2 || true
The text was updated successfully, but these errors were encountered: