diff --git a/13_integrated_testing/.cargo/config b/13_integrated_testing/.cargo/config.toml similarity index 100% rename from 13_integrated_testing/.cargo/config rename to 13_integrated_testing/.cargo/config.toml diff --git a/13_integrated_testing/README.md b/13_integrated_testing/README.md index 5811a488..f4829121 100644 --- a/13_integrated_testing/README.md +++ b/13_integrated_testing/README.md @@ -346,7 +346,7 @@ you sit in front of an `x86` machine, whereas the RPi kernel is `AArch64`. Therefore, we need to install some hooks that make sure the test kernel gets executed inside `QEMU`, quite like it is done for the existing `make qemu` target that is in place since tutorial 1. The -first step is to add a new file to the project, `.cargo/config`: +first step is to add a new file to the project, `.cargo/config.toml`: ```toml [target.'cfg(target_os = "none")'] @@ -787,9 +787,9 @@ RUSTFLAGS="-C link-arg=-Tsrc/bsp/raspberrypi/link.ld -C target-cpu=cortex-a53 -D ## Diff to previous ```diff -diff -uNr 12_exceptions_part1_groundwork/.cargo/config 13_integrated_testing/.cargo/config ---- 12_exceptions_part1_groundwork/.cargo/config -+++ 13_integrated_testing/.cargo/config +diff -uNr 12_exceptions_part1_groundwork/.cargo/config.toml 13_integrated_testing/.cargo/config.toml +--- 12_exceptions_part1_groundwork/.cargo/config.toml ++++ 13_integrated_testing/.cargo/config.toml @@ -0,0 +1,2 @@ +[target.'cfg(target_os = "none")'] +runner = "target/kernel_test_runner.sh" diff --git a/14_exceptions_part2_peripheral_IRQs/.cargo/config b/14_exceptions_part2_peripheral_IRQs/.cargo/config.toml similarity index 100% rename from 14_exceptions_part2_peripheral_IRQs/.cargo/config rename to 14_exceptions_part2_peripheral_IRQs/.cargo/config.toml diff --git a/15_virtual_mem_part2_mmio_remap/.cargo/config b/15_virtual_mem_part2_mmio_remap/.cargo/config.toml similarity index 100% rename from 15_virtual_mem_part2_mmio_remap/.cargo/config rename to 15_virtual_mem_part2_mmio_remap/.cargo/config.toml