You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
285 B
13 lines
285 B
#
|
|
# 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)
|
|
|