Last active
February 1, 2017 18:24
-
-
Save czocher/4ad7a156a7c83d0a121a162b74035a8d to your computer and use it in GitHub Desktop.
Moving the Beagle Bone Black MLO file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Mount the eMMC boot partition | |
cd /media | |
mkdir boot | |
mount /dev/mmcblk1p1 ./boot | |
# Move the MLO file | |
mv ./boot/MLO ./boot/MLO_backup | |
# Unmount | |
umount ./boot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment