ee016e605c
* Consolidate variant scripts * Rename Marlin-local boards * Simplify variants where possible * Rename variants * CHITU_F103 and MEEB_3DP: Maple platform `platformio-build-stm32f1.py` uses the 'board' name, not 'board_build.variant' so folder names match 'board' and not `board_build.variant`.
14 lines
285 B
Python
14 lines
285 B
Python
#
|
|
# buildroot/share/PlatformIO/scripts/custom_board.py
|
|
#
|
|
import marlin
|
|
board = marlin.env.BoardConfig()
|
|
|
|
address = board.get("build.address", "")
|
|
if address:
|
|
marlin.relocate_firmware(address)
|
|
|
|
ldscript = board.get("build.ldscript", "")
|
|
if ldscript:
|
|
marlin.custom_ld_script(ldscript)
|