Skip to content

Commit

Permalink
fix:718pm修复bl异常
Browse files Browse the repository at this point in the history
  • Loading branch information
Dozingfiretruck committed Dec 9, 2024
1 parent 3c79f1f commit 4afb0aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootloader/bootloader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ target("ap_bootloader.elf",function()

if has_config("chip_target") then
chip_target = get_config("chip_target")
LIB_PRODUCT = ((chip_target == "ec718um" and "ec718um") or (chip_target == "ec718hm" and "ec718hm") or (chip_target == "ec718pm" and "ec718hm") or (chip_target=="ec718e"and"ec718p"or chip_target):sub(1,6))
LIB_PRODUCT = ((chip_target == "ec718um" and "ec718um") or (chip_target == "ec718hm" and "ec718hm") or (chip_target == "ec718pm" and "ec718pm") or (chip_target=="ec718e"and"ec718p"or chip_target):sub(1,6))
set_values("LIB_PRODUCT", LIB_PRODUCT)
end
if chip_target and lib_ps_plat then
Expand Down

0 comments on commit 4afb0aa

Please sign in to comment.