@kvell007/embed-labs-cli 0.1.0-alpha.58 → 0.1.0-alpha.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/local-toolchain.js +9 -7
- package/dist/local-toolchain.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -338,10 +338,10 @@ Current local workflows are intentionally guarded:
|
|
|
338
338
|
evidence without opening probes or starting debug sessions.
|
|
339
339
|
- RP2350 UF2 flashing requires a mounted UF2 volume, a `.uf2` artifact, a ready
|
|
340
340
|
flash plan, and explicit `--approve`.
|
|
341
|
-
- TaishanPi
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
341
|
+
- TaishanPi initialization image flashing resolves the installed local SDK
|
|
342
|
+
image set by default. `embed flash run --board taishanpi --approve` writes
|
|
343
|
+
through Local Bridge only after the ready plan validates `rkdeveloptool`,
|
|
344
|
+
`parameter.txt`, and all required images.
|
|
345
345
|
|
|
346
346
|
These commands should be treated as current local evidence and planning tools,
|
|
347
347
|
not broad hardware support claims.
|
package/dist/index.js
CHANGED
|
@@ -1228,6 +1228,7 @@ function flashBody(parsed, includeApproval) {
|
|
|
1228
1228
|
variant_id: stringFlag(parsed, "variant"),
|
|
1229
1229
|
hardware_profile_id: stringFlag(parsed, "hardware-profile"),
|
|
1230
1230
|
profile_id: stringFlag(parsed, "profile"),
|
|
1231
|
+
local_device_id: stringFlag(parsed, "local-device-id") ?? stringFlag(parsed, "device-id"),
|
|
1231
1232
|
image_dir: stringFlag(parsed, "image-dir"),
|
|
1232
1233
|
artifact_path: stringFlag(parsed, "artifact"),
|
|
1233
1234
|
target_volume_path: stringFlag(parsed, "target-volume")
|