make.sh: add big endian sha256 for rk3368h
Should be the same as rk3368, otherwise the loader will verify trust.img failed when secure boot is enabled. Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I25ba5b7ad8a1673e09db1167ff780fe0c8c5a95f
This commit is contained in:
parent
ea9b5c12f7
commit
85975b101c
2
make.sh
2
make.sh
|
|
@ -390,7 +390,7 @@ fixup_platform_configure()
|
|||
if [ $RKCHIP = "PX30" -o $RKCHIP = "RK3326" -o $RKCHIP = "RK3308" -o $RKCHIP = "RK1808" ]; then
|
||||
PLATFORM_RSA="--rsa 3"
|
||||
# RK3368 use rk big endian SHA256, it's pack magic is "2"
|
||||
elif [ $RKCHIP = "RK3368" ]; then
|
||||
elif [ $RKCHIP = "RK3368" -o $RKCHIP = "RK3368H" ]; then
|
||||
PLATFORM_SHA="--sha 2"
|
||||
# other platforms use default configure
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in New Issue