Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 6988a046 authored by Robert Nelson's avatar Robert Nelson
Browse files

fix: install.sh


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent 87435088
No related merge requests found
......@@ -10,7 +10,7 @@ sys=$(uname -m)
wdir="$PWD"
if [ "x${sys}" = "xarmv7l" ] ; then
if [ -f ${wdir}/MLO ] && [ -f ${wdir}/u-boot-dtb.img ]
if [ -f ${wdir}/MLO ] && [ -f ${wdir}/u-boot-dtb.img ] ; then
if [ -b /dev/mmcblk0 ] ; then
echo "dd if=${wdir}/MLO of=/dev/mmcblk0 count=2 seek=1 bs=128k"
dd if=${wdir}/MLO of=/dev/mmcblk0 count=2 seek=1 bs=128k
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment