[Feature][ZXW-88]merge P50 version
Only Configure: No
Affected branch: master
Affected module: unknown
Is it affected on both ZXIC and MTK: only ZXIC
Self-test: Yes
Doc Update: No
Change-Id: I34667719d9e0e7e29e8e4368848601cde0a48408
diff --git a/boot/common/scripts/Makefile b/boot/common/scripts/Makefile
index daaa447..f9e743a 100755
--- a/boot/common/scripts/Makefile
+++ b/boot/common/scripts/Makefile
@@ -67,6 +67,10 @@
board=vehicle_dc
endif
+ifeq ($(BOARD_TYPE),VEHICLE_DC_REF)
+board=vehicle_dc_ref
+endif
+
ifeq ($(BOARD_TYPE),MDL_MINI)
board=mdl_mini
endif
@@ -89,6 +93,9 @@
else ifeq ($(strip $(board)),$(filter $(board),vehicle_dc))
ram_text=0x27EF0000
V3T_RAM_TEXT_128M_UBOOT=y
+else ifeq ($(strip $(board)),$(filter $(board),vehicle_dc_ref))
+ ram_text=0x27EF0000
+ V3T_RAM_TEXT_128M_UBOOT=y
else
ram_text=0x21EF0000
endif
@@ -101,6 +108,10 @@
key_path=mdl
endif
+ifeq ($(strip $(board)),$(filter $(board),vehicle_dc_ref))
+ key_path=mdl
+endif
+
ifeq ($(strip $(board)),$(filter $(board),mdl_mini mifi_mini ufi_mini))
key_path=$(subst _mini,,$(board))
endif