* Rework the lib-builder for ESP-IDF v5.1 * Update package json with tolls matching the ESP-IDF version * fix: rainmaker examples crashing on s3 due to low stack memory. (#106) (#107) * Update scripts with the latest requirements * Update configs + SR Support * Add esp-elf-gdp to the list of packages * Fix RainMaker builds and new sr models path * Temporary force arduino branch for CI to work * fix target branch * Delete esp-dl component manifest for requiring IDF 4.4.x * Temporary changes to allow Cron CI to run * Support builds based on ESP-IDF tag * Push to esp32-arduino-libs * Update repository_dispatch.sh * Rework scripts to allow build when either dst needs it * Github complains when pushing to the libs repo * Authenticate to the libs repo * Attempt at splitting SDK from Arduino * Archive only the result and reorder deploy commands * Update cron.sh * Fix script and zip paths * Fix download URL and json merger * Change sdk folder structure and fix json generation * Switch output folder from sdk to esp32-arduino-libs * arduino_tinyusb: compile support for DFU mode (#116) * Update PlatformIO build script templates (#118) Adds support for new package with precompiled SDK libraries * Autogenerate PlatformIO manifest file for prebuilt SDK libs (#119) * Autogenerate PlatformIO manifest file for prebuilt SDK libs - Add a special Python script that generates "package.json" with IDF revision from the "version.txt" according to SemVer * Tidy up * Refactor manifest generator Now IDF version and commit hash are passed directly from Git client instead of reading from a pregenerated "version.txt" file * Move IDF definitions to be available with any build * Use more components from registry and add mp3 decoder * esp-sr component requires clearing before each build * revert ESP_SR from component manager * Build ESP_SR only for ESP32-S3 for now * [TinyUSB] Update esp32sx dcd and add dwc2 option * Workaround for recent change in ESP-Insights * Add initial support for ESP32-C6 * Run build tests on ESP32-C6 * Remove -mlongcalls for non-xtensa chips * Temp fix for ESP-Insights on C6 * Add support for ESP32H2 * Added tflite-micro component (#128) * Update build badge in README.md * Added tflite-micro component --------- Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com> * Make cron rebuild the libs if they need to be pushed to Arduino For when we change something in the lib-builder, but no new updates are available in ESP-IDF * Update build actions * Fix permissions * Do not build for obsolete Flash modes * Try separate detect for cron builds * Add permissions to github api * Try more basic commit detection * another try to pass vars and get commit * Update push.yml * Update config.sh * Enable builds again * Update build.sh * Combine the artifacts from all jobs * fix and test deploy check * Update push.yml * Disable Memprot to allow loading external elfs * Fix archive name * Disable coredump to flash * Enable SPI ETH KSZ8851SNL * Add temporary support for Arduino SPI Ethernet * Add a temporary fix for relative include in BT lib * Enable Classic BT HID Host and Device for ESP32 * Revert "Enable Classic BT HID Host and Device for ESP32" This reverts commit aa0040ad271d00ac507fd2b478ee143b6c118615. * C6 was added to ESP-SR * Update Ethernet and remove SR workaround * Pin RainMaker version * Update target branch * Add back cron.sh --------- Co-authored-by: Sanket Wadekar <67091512+sanketwadekar@users.noreply.github.com> Co-authored-by: Luca Burelli <pil@iol.it> Co-authored-by: Valerii Koval <valeros@users.noreply.github.com>
166 lines
6.1 KiB
Python
166 lines
6.1 KiB
Python
#!/usr/bin/env python
|
|
# python tools/gen_tools_json.py -i $IDF_PATH -j components/arduino/package/package_esp32_index.template.json -o out/
|
|
|
|
from __future__ import print_function
|
|
|
|
__author__ = "Hristo Gochkov"
|
|
__version__ = "2023"
|
|
|
|
import os
|
|
import shutil
|
|
import errno
|
|
import os.path
|
|
import json
|
|
import platform
|
|
import sys
|
|
import stat
|
|
import argparse
|
|
|
|
if sys.version_info[0] == 3:
|
|
unicode = lambda s: str(s)
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser(
|
|
prog = 'gen_tools_json',
|
|
description = 'Update Arduino package index with the tolls found in ESP-IDF')
|
|
parser.add_argument('-i', '--esp-idf', dest='idf_path', required=True, help='Path to ESP-IDF')
|
|
parser.add_argument('-j', '--pkg-json', dest='arduino_json', required=False, help='path to Arduino package json')
|
|
parser.add_argument('-o', '--out-path', dest='out_path', required=True, help='Output path to store the update package json')
|
|
args = parser.parse_args()
|
|
|
|
simple_output = False
|
|
if args.arduino_json == None:
|
|
print('Source was not selected')
|
|
simple_output = True
|
|
else:
|
|
print('Source {0}.'.format(args.arduino_json))
|
|
|
|
idf_path = args.idf_path;
|
|
arduino_json = args.arduino_json;
|
|
out_path = args.out_path;
|
|
|
|
# settings
|
|
arduino_tools = ["xtensa-esp32-elf","xtensa-esp32s2-elf","xtensa-esp32s3-elf","xtensa-esp-elf-gdb","riscv32-esp-elf","riscv32-esp-elf-gdb","openocd-esp32"]
|
|
|
|
# code start
|
|
farray = {"packages":[{"platforms":[{"toolsDependencies":[]}],"tools":[]}]}
|
|
if simple_output == False:
|
|
farray = json.load(open(arduino_json))
|
|
|
|
idf_tools = json.load(open(idf_path + '/tools/tools.json'))
|
|
for tool in idf_tools['tools']:
|
|
try:
|
|
tool_index = arduino_tools.index(tool['name'])
|
|
except:
|
|
continue
|
|
tool_name = tool['name']
|
|
tool_version = tool['versions'][0]['name']
|
|
if tool_name.endswith('-elf'):
|
|
tool_name += '-gcc'
|
|
print('Found {0}, version: {1}'.format(tool_name, tool_version))
|
|
|
|
if simple_output == False:
|
|
dep_found = False
|
|
dep_skip = False
|
|
for dep in farray['packages'][0]['platforms'][0]['toolsDependencies']:
|
|
if dep['name'] == tool_name:
|
|
if dep['version'] == tool_version:
|
|
print('Skipping {0}. Same version {1}'.format(tool_name, tool_version))
|
|
dep_skip = True
|
|
break
|
|
print('Updating dependency version of {0} from {1} to {2}'.format(tool_name, dep['version'], tool_version))
|
|
dep['version'] = tool_version
|
|
dep_found = True
|
|
if dep_skip == True:
|
|
continue
|
|
if dep_found == False:
|
|
print('Adding new dependency: {0} version {1}'.format(tool_name, tool_version))
|
|
deps = {
|
|
"packager": "esp32",
|
|
"name": tool_name,
|
|
"version": tool_version
|
|
}
|
|
farray['packages'][0]['platforms'][0]['toolsDependencies'].append(deps)
|
|
else:
|
|
print('Adding dependency: {0} version {1}'.format(tool_name, tool_version))
|
|
deps = {
|
|
"packager": "esp32",
|
|
"name": tool_name,
|
|
"version": tool_version
|
|
}
|
|
farray['packages'][0]['platforms'][0]['toolsDependencies'].append(deps)
|
|
|
|
systems = []
|
|
for arch in tool['versions'][0]:
|
|
if arch == 'name' or arch == 'status':
|
|
continue
|
|
tool_data = tool['versions'][0][arch]
|
|
|
|
system = {
|
|
"host": '',
|
|
"url": tool_data['url'],
|
|
"archiveFileName": os.path.basename(tool_data['url']),
|
|
"checksum": "SHA-256:"+tool_data['sha256'],
|
|
"size": str(tool_data['size'])
|
|
}
|
|
|
|
if arch == "win32":
|
|
system["host"] = "i686-mingw32";
|
|
elif arch == "win64":
|
|
system["host"] = "x86_64-mingw32";
|
|
elif arch == "macos-arm64":
|
|
system["host"] = "arm64-apple-darwin";
|
|
elif arch == "macos":
|
|
system["host"] = "x86_64-apple-darwin";
|
|
elif arch == "linux-amd64":
|
|
system["host"] = "x86_64-pc-linux-gnu";
|
|
elif arch == "linux-i686":
|
|
system["host"] = "i686-pc-linux-gnu";
|
|
elif arch == "linux-arm64":
|
|
system["host"] = "aarch64-linux-gnu";
|
|
elif arch == "linux-armel":
|
|
system["host"] = "arm-linux-gnueabihf";
|
|
elif arch == "linux-armhf":
|
|
# system["host"] = "arm-linux-gnueabihf";
|
|
continue
|
|
else :
|
|
continue
|
|
|
|
systems.append(system)
|
|
|
|
if simple_output == False:
|
|
tool_found = False
|
|
for t in farray['packages'][0]['tools']:
|
|
if t['name'] == tool_name:
|
|
t['version'] = tool_version
|
|
t['systems'] = systems
|
|
tool_found = True
|
|
print('Updating binaries of {0} to version {1}'.format(tool_name, tool_version))
|
|
if tool_found == False:
|
|
print('Adding new tool: {0} version {1}'.format(tool_name, tool_version))
|
|
tools = {
|
|
"name": tool_name,
|
|
"version": tool_version,
|
|
"systems": systems
|
|
}
|
|
farray['packages'][0]['tools'].append(tools)
|
|
else:
|
|
print('Adding tool: {0} version {1}'.format(tool_name, tool_version))
|
|
tools = {
|
|
"name": tool_name,
|
|
"version": tool_version,
|
|
"systems": systems
|
|
}
|
|
farray['packages'][0]['tools'].append(tools)
|
|
|
|
json_str = json.dumps(farray, indent=2)
|
|
out_file = out_path + "tools.json"
|
|
if simple_output == False:
|
|
out_file = out_path + os.path.basename(arduino_json)
|
|
|
|
with open(out_file, "w") as f:
|
|
f.write(json_str+"\n")
|
|
f.close()
|
|
# print(json_str)
|
|
print('{0} generated'.format(out_file))
|