From 8024cc0c2fdd7a5788779f71c720aebddf0428ac Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Wed, 19 Sep 2018 07:00:45 -0700 Subject: [PATCH] Update boards.txt.py and platform.io build --- tools/boards.txt.py | 2 +- tools/platformio-build.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/boards.txt.py b/tools/boards.txt.py index a8b8a71070..295f4ace47 100755 --- a/tools/boards.txt.py +++ b/tools/boards.txt.py @@ -1172,7 +1172,7 @@ def flash_map (flashsize_kb, spiffs_kb = 0): print("PROVIDE ( _SPIFFS_page = 0x%X );" % page) print("PROVIDE ( _SPIFFS_block = 0x%X );" % block) print("") - print('INCLUDE "eagle.app.v6.common.ld"') + print('INCLUDE "local.eagle.app.v6.common.ld"') if ldgen: sys.stdout.close() diff --git a/tools/platformio-build.py b/tools/platformio-build.py index 1ddefc419b..d387f93ffa 100644 --- a/tools/platformio-build.py +++ b/tools/platformio-build.py @@ -168,7 +168,7 @@ def scons_patched_match_splitext(path, suffixes=None): # Build the eagle.app.v6.common.ld linker file app_ld = env.Command( - join("$BUILD_DIR", "ld", "eagle.app.v6.common.ld"), + join("$BUILD_DIR", "ld", "local.eagle.app.v6.common.ld"), join(FRAMEWORK_DIR, "tools", "sdk", "ld", "eagle.app.v6.common.ld.h"), env.VerboseAction( "$CC -CC -E -P -D%s $SOURCE -o $TARGET" % current_vtables,