summaryrefslogtreecommitdiff
path: root/libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install
diff options
context:
space:
mode:
Diffstat (limited to 'libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install')
-rw-r--r--libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install8
1 files changed, 4 insertions, 4 deletions
diff --git a/libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install b/libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install
index 24ccc1acb..f9ebe141e 100644
--- a/libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install
+++ b/libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install
@@ -1,6 +1,6 @@
flash_instructions() {
- echo "# dd if=/boot/MLO of=/dev/mmcblk0 count=1 seek=1 conv=notrunc bs=128k"
- echo "# dd if=/boot/u-boot.img of=/dev/mmcblk0 count=2 seek=1 conv=notrunc bs=384k"
+ echo "# dd if=/boot/uboot-beaglebone-linux-libre/MLO of=/dev/mmcblk0 count=1 seek=1 conv=notrunc bs=128k"
+ echo "# dd if=/boot/uboot-beaglebone-linux-libre/u-boot.img of=/dev/mmcblk0 count=2 seek=1 conv=notrunc bs=384k"
}
flash_uboot() {
@@ -11,8 +11,8 @@ flash_uboot() {
echo "Do this now? [y|N]"
read -r shouldwe
if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then
- dd if=/boot/MLO of=$root count=1 seek=1 conv=notrunc bs=128k
- dd if=/boot/u-boot.img of=$root count=2 seek=1 conv=notrunc bs=384k
+ dd if=/boot/uboot-beaglebone-linux-libre/MLO of=$root count=1 seek=1 conv=notrunc bs=128k
+ dd if=/boot/uboot-beaglebone-linux-libre/u-boot.img of=$root count=2 seek=1 conv=notrunc bs=384k
else
echo "You can do this later by running:"
flash_instructions