Skip to content

Commit af6603a

Browse files
committed
Merge branch 'release/v1.0.4'
2 parents c4f8dab + 816f12d commit af6603a

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

Diff for: builder/autotiler.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from SCons.Script import ARGUMENTS, Import
2121

22-
from platformio import util
22+
from platformio import fs
2323
from platformio.builder.tools.platformio import SRC_FILTER_DEFAULT
2424

2525
try:
@@ -84,7 +84,7 @@ def find_model(src_dir):
8484

8585
def build_autotiler(build_dir, generator, model_path):
8686
if isdir(build_dir):
87-
util.rmtree_(build_dir)
87+
fs.rmtree(build_dir)
8888

8989
# parse custom library path from `platformio.ini`
9090
tmpenv = env.Clone()
@@ -145,7 +145,7 @@ def generate_user_kernel(kernel_user_dir, program_path):
145145
args = [program_path]
146146
if "pulp-os" not in env.subst("$PIOFRAMEWORK"):
147147
args.append("-m")
148-
with util.cd(kernel_user_dir):
148+
with fs.cd(kernel_user_dir):
149149
env.Execute(env.VerboseAction(" ".join(args), "Running AutoTiler"))
150150
print("")
151151

Diff for: platform.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22
"name": "riscv_gap",
33
"title": "RISC-V GAP",
44
"description": "GreenWaves GAP8 IoT application processor enables the cost-effective development, deployment and autonomous operation of intelligent sensing devices that capture, analyze, classify and act on the fusion of rich data sources such as images, sounds or vibrations.",
5-
"url": "https://greenwaves-technologies.com/en/gap8-product/",
6-
"homepage": "https://platformio.org/platforms/riscv_gap",
5+
"homepage": "https://greenwaves-technologies.com/en/gap8-product/",
76
"license": "Apache-2.0",
7+
"keywords": [
8+
"dev-platform",
9+
"GreenWaves",
10+
"GAP8",
11+
"RISC-V"
12+
],
813
"engines": {
914
"platformio": "<5"
1015
},
1116
"repository": {
1217
"type": "git",
1318
"url": "https://github.com/platformio/platform-riscv_gap.git"
1419
},
15-
"version": "1.0.3",
20+
"version": "1.0.4",
1621
"packageRepositories": [
1722
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
1823
"http://dl.platformio.org/packages/manifest.json"
@@ -26,7 +31,7 @@
2631
"package": "framework-gap_sdk",
2732
"script": "builder/frameworks/pulp-os.py",
2833
"description": "PULP is a silicon-proven Parallel Ultra Low Power platform targeting high energy efficiencies. The platform is organized in clusters of RISC-V cores that share a tightly-coupled data memory",
29-
"url": "https://www.pulp-platform.org",
34+
"homepage": "https://www.pulp-platform.org",
3035
"title": "PULP OS"
3136
}
3237
},

0 commit comments

Comments
 (0)