Update common.sh

This commit is contained in:
Igor Pečovnik
2014-11-18 10:41:20 +01:00
parent 211e010aa1
commit afe9f02412

View File

@@ -255,7 +255,7 @@ echo "------ Writing boot loader."
if [[ $BOARD == "cubox-i" ]] ; then
dd if=$DEST/$BOOTSOURCE/SPL of=$LOOP bs=512 seek=2 status=noxfer
dd if=$DEST/$BOOTSOURCE/u-boot.img of=$LOOP bs=1K seek=42 status=noxfer
elif [[ $BOARD == "lime" || $BOARD == "lime2" ]]; then
elif [[ $BOARD == "lime2" ]]; then
dd if=$DEST/$BOOTSOURCE/spl/sunxi-spl.bin of=$LOOP bs=1024 seek=8 status=noxfer
dd if=$DEST/$BOOTSOURCE/u-boot.bin of=$LOOP bs=1024 seek=32 status=noxfer
else