Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fc8e077
wip: added rbtree. scheduler rewrite start.
thomasw04 Feb 5, 2026
bae03f3
remove me
thomasw04 Mar 7, 2026
b742751
more scheduler rewrite
thomasw04 Mar 25, 2026
f06e9c2
more scheduler rewrite
thomasw04 Mar 25, 2026
3f44481
should work
thomasw04 Mar 26, 2026
0737bcc
make things more sane
thomasw04 Mar 26, 2026
b01b463
sanify
thomasw04 Mar 26, 2026
4d6de89
sanify
thomasw04 Mar 26, 2026
2f3d721
remove old options
thomasw04 Mar 26, 2026
5e11a88
fix lots of stuff
thomasw04 Mar 28, 2026
8816105
cleanup and fixes.
thomasw04 Mar 28, 2026
f69c956
spawn thread syscall
thomasw04 Mar 28, 2026
e0af649
wip
thomasw04 Mar 30, 2026
5f22c50
fixed rt sched.
thomasw04 Mar 31, 2026
9a86fef
fixed bug.
thomasw04 Apr 1, 2026
b5823f7
fix stuff
thomasw04 Apr 3, 2026
fce9a24
wip
thomasw04 Apr 3, 2026
4d57b77
simplyfied hal.
thomasw04 Apr 4, 2026
79183bc
fix warnings
thomasw04 Apr 4, 2026
e9badb8
Merge branch 'main' into rewrite/scheduler
thomasw04 Apr 4, 2026
e40cf62
Delete config.toml
thomasw04 Apr 4, 2026
7cc46c0
Merge branch 'rewrite/scheduler' of github.com:OsirisRTOS/osiris into…
thomasw04 Apr 4, 2026
6ac8567
fix devcontainer
thomasw04 Apr 4, 2026
7ad64ae
fix verify and fix config selection.
thomasw04 Apr 4, 2026
33d7207
format
thomasw04 Apr 4, 2026
93aa42d
update readme
thomasw04 Apr 4, 2026
99bdf37
fix bugs.
thomasw04 Apr 5, 2026
33086c7
fix bugs, inconsistencies and add more docs.
thomasw04 Apr 6, 2026
04b7156
add objcopy back.
thomasw04 Apr 6, 2026
28d59f8
actually fix bugs.
thomasw04 Apr 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
19 changes: 8 additions & 11 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
include = [
{ path = "../config.toml", optional = true }
]

[alias]
xtask = "--config xtasks/.cargo/config.toml run -p xtask --release --"

[env]

[build]
target = "host-tuple"

[target]

[target.'cfg(target_os = "none")']
rustflags = ["-C", "link-arg=--entry=main",]

[target.thumbv7em-none-eabi]
rustflags = ["-C", "relocation-model=ropi-rwpi"]
rustflags = [
"-C", "link-arg=--entry=main",
"-C", "link-arg=-Tprelude.ld",
"-C", "link-arg=-Tlink.ld",
]
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ symbols.map
compile_commands.json
.cache/
*.img
config.toml
167 changes: 145 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading