summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorGary Bisson <gary.bisson@boundarydevices.com>2016-11-07 17:54:00 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-11-07 22:09:37 +0100
commitadf31efcd433712f546f2a3bcdb18abe650db27b (patch)
tree2eddda7a4047136c32c27ae0138b3772c68623e6 /board
parent1832f13b6304152b7fe47547cd2870c695a59d74 (diff)
board/boundarydevices: fix boot partition number in bootscript
It was previously hardcoded to use the 1st partition although the bootpart variable was used to download kernel/dtb from any partition. Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'board')
-rw-r--r--board/boundarydevices/common/6x_bootscript.txt8
1 files changed, 3 insertions, 5 deletions
diff --git a/board/boundarydevices/common/6x_bootscript.txt b/board/boundarydevices/common/6x_bootscript.txt
index e8a08aa8a..2fc687aff 100644
--- a/board/boundarydevices/common/6x_bootscript.txt
+++ b/board/boundarydevices/common/6x_bootscript.txt
@@ -92,14 +92,12 @@ fi
setenv bootargs "${bootargs} console=${console},115200 vmalloc=400M consoleblank=0 rootwait fixrtc"
-bpart=1
-
if test "sata" = "${dtype}" ; then
- setenv bootargs "${bootargs} root=/dev/sda${bpart}" ;
+ setenv bootargs "${bootargs} root=/dev/sda${bootpart}" ;
elif test "usb" = "${dtype}" ; then
- setenv bootargs "${bootargs} root=/dev/sda${bpart}" ;
+ setenv bootargs "${bootargs} root=/dev/sda${bootpart}" ;
else
- setenv bootargs "${bootargs} root=/dev/mmcblk${disk}p${bpart}"
+ setenv bootargs "${bootargs} root=/dev/mmcblk${disk}p${bootpart}"
fi
if itest.s "x" != "x${disable_giga}" ; then