Skip to content

Instantly share code, notes, and snippets.

@czocher
Last active February 1, 2017 18:24
Show Gist options
  • Save czocher/4ad7a156a7c83d0a121a162b74035a8d to your computer and use it in GitHub Desktop.
Save czocher/4ad7a156a7c83d0a121a162b74035a8d to your computer and use it in GitHub Desktop.
Moving the Beagle Bone Black MLO file
#!/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