Skip to content

Commit 067589b

Browse files
committed
Add tutorial 17
1 parent 8d87d2c commit 067589b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+9801
-1
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ max_line_length = 100
1313
[Dockerfile]
1414
indent_size = 4
1515

16-
[Makefile]
16+
[{Makefile,*.mk}]
1717
indent_style = tab
1818
indent_size = 8
1919

17_kernel_symbols/.cargo/config.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.'cfg(target_os = "none")']
2+
runner = "target/kernel_test_runner.sh"
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.rulers": [100],
4+
"rust-analyzer.cargo.target": "aarch64-unknown-none-softfloat",
5+
"rust-analyzer.cargo.features": ["bsp_rpi3"],
6+
"rust-analyzer.checkOnSave.allTargets": false,
7+
"rust-analyzer.checkOnSave.extraArgs": ["--lib", "--bins"],
8+
"rust-analyzer.lens.debug": false,
9+
"rust-analyzer.lens.run": false
10+
}

17_kernel_symbols/Cargo.lock

+96
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

17_kernel_symbols/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[workspace]
2+
3+
members = [
4+
"libraries/*",
5+
"kernel",
6+
"kernel_symbols"
7+
]
8+
9+
[profile.release]
10+
lto = true

0 commit comments

Comments
 (0)