File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
esp32_p4_function_ev_board Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -45,12 +45,14 @@ def remove_esp_lvgl_port(bsp_path):
4545 del deps ["lvgl/lvgl" ]
4646 except KeyError :
4747 print ("{}: no lvgl dependency found" .format (str (bsp_path )))
48- manager .manifest_tree ["description" ] = manager .manifest_tree ["description" ] + ' with no graphical library'
48+
49+ manager .manifest .description = manager .manifest .description + ' with no graphical library'
4950
5051 # Add 'noglib' tag
51- tags = manager .manifest_tree .get ("tags" , [])
52- tags .append ("noglib" )
53- manager .manifest_tree ["tags" ] = list (set (tags )) # make unique
52+ tags = manager .manifest .tags or []
53+ if "noglib" not in tags :
54+ tags .append ("noglib" )
55+ manager .manifest .tags = tags
5456
5557 manager .dump ()
5658 return 0
Original file line number Diff line number Diff line change 11
2- version : " 2.0.0~1 "
2+ version : " 2.0.0~2 "
33description : Board Support Package (BSP) for ESP32-P4-EYE
44url : https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_p4_eye
55
Original file line number Diff line number Diff line change 1- version : " 5.1.0~1 "
1+ version : " 5.1.0~2 "
22description : Board Support Package (BSP) for ESP32-P4 Function EV Board (preview)
33url : https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_p4_function_ev_board
44
You can’t perform that action at this time.
0 commit comments