summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-30 20:27:25 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-30 20:27:25 -0300
commit7ccae603d093a24ee325b3262522d5aa661210fb (patch)
treef0cd58cea2aed9a05bba5a6751a71cb90ece4e3c /libre
parent7d085c4da75b92b70970ba273f9358aa8e1f4f9b (diff)
uboot-beaglebone-linux-libre-2015.04-1.1: fix path in uboot-beaglebone-linux-libre.install
Diffstat (limited to 'libre')
-rw-r--r--libre/uboot-beaglebone-linux-libre/PKGBUILD2
-rw-r--r--libre/uboot-beaglebone-linux-libre/uboot-beaglebone-linux-libre.install8
2 files changed, 5 insertions, 5 deletions
diff --git a/libre/uboot-beaglebone-linux-libre/PKGBUILD b/libre/uboot-beaglebone-linux-libre/PKGBUILD
index 49c791d07..d021ceb61 100644
--- a/libre/uboot-beaglebone-linux-libre/PKGBUILD
+++ b/libre/uboot-beaglebone-linux-libre/PKGBUILD
@@ -7,7 +7,7 @@ buildarch=4
_pkgname=linux-libre
pkgname=uboot-beaglebone-${_pkgname}
pkgver=2015.04
-pkgrel=1
+pkgrel=1.1
pkgdesc="U-Boot for Beaglebone and Beaglebone Black (built for the linux-libre kernel package)"
arch=('armv7h')
url="http://git.denx.de/u-boot.git/"
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