This repository was archived by the owner on Jan 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
MCU Workflow example with RP2350 #305
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| FROM quay.io/jumpstarter-dev/jumpstarter:latest | ||
|
|
||
| RUN curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/download/v0.27.0/probe-rs-tools-installer.sh | sh | ||
|
|
||
| #RUN dnf install -y rustup gcc systemd-devel | ||
| #RUN rustup-init -y | ||
| #ENV PATH="$PATH:$HOME/.cargo/bin" | ||
| #RUN ~/.cargo/bin/rustup target add thumbv8m.main-none-eabihf | ||
| #RUN ~/.cargo/bin/cargo install --locked probe-rs-tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| FROM quay.io/jumpstarter-dev/jumpstarter-devspace:latest | ||
|
|
||
| USER root | ||
| RUN dnf install -y gcc systemd-devel gdb | ||
| USER 10001 | ||
| RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Or also use dnf as above?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ubi9 does not include rustup, just the packaged stuff. fedora does but not sure if there is a devspaces developer base. |
||
| ENV PATH="$PATH:$HOME/.cargo/bin" | ||
| RUN ~/.cargo/bin/rustup target add thumbv8m.main-none-eabihf | ||
| RUN ~/.cargo/bin/cargo install --locked probe-rs-tools | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| [project] | ||
| name = "jumpstarter-mcu-rp2350" | ||
| version = "0.1.0" | ||
| description = "Example that uses jumpstarter to debug/develop on a MCU target" | ||
| authors = [ | ||
| { name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" }, | ||
| { name = "Kirk Brauer", email = "kbrauer@hatci.com" }, | ||
| { name = "Nick Cao", email = "ncao@redhat.com" }, | ||
| ] | ||
| readme = "README.md" | ||
| license = { text = "Apache-2.0" } | ||
| requires-python = ">=3.11" | ||
| dependencies = [ | ||
| "jumpstarter-all" | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.