imx6: Fix pointing to msata/mmc bootdevs

Point to correct devices when booting from msata or MMC
Changes fetched from Gateworks git

Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
[Jo-Philipp Wich: rebased to apply against current LEDE version]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Koen Vandeputte 8 years ago committed by Jo-Philipp Wich
parent c34f953fef
commit dc765f64c5
  1. 8
      target/linux/imx6/image/bootscript-ventana

@ -1,4 +1,4 @@
echo "Gateworks Ventana OpenWrt Boot script v1.00"
echo "Gateworks Ventana OpenWrt Boot script v1.01"
# set some defaults
# set some defaults
@ -35,9 +35,9 @@ if test -n "$bootdev" ; then
echo "Using bootdev from env: $bootdev"
else
if itest.s "x${dtype}" == "xmmc" ; then
bootdev=mmcblk0
bootdev=mmcblk0p1
else
bootdev=sda
bootdev=sda1
fi
fi
@ -54,7 +54,7 @@ if itest.s "x${dtype}" == "xnand" ; then
else
echo "Booting from block device ${bootdev}..."
setenv fsload "${fs}load ${dtype} ${disk}:1"
setenv root "root=/dev/${bootdev}"
setenv root "root=/dev/${bootdev} rootfstype=${fs} rootwait rw"
fi
setenv bootargs "${bootargs}" "${root}" "${video}" "${extra}"

Loading…
Cancel
Save