12 lines
244 B
Bash
12 lines
244 B
Bash
sudo umount -R $workdir/boot
|
|
|
|
# Remove boot folder, it is just a temporary mount point
|
|
sudo rm -rf $workdir/boot
|
|
|
|
sync
|
|
sudo umount -R $workdir
|
|
|
|
# Give it some time to unmount
|
|
printf 'Waiting 10 seconds to ensure successful unmount...'
|
|
sleep 10
|