Skip to content

Commit 7af893e

Browse files
committed
cleanup: fix typos
Signed-off-by: Julia Vassiliki <julia.vassiliki@unsw.edu.au>
1 parent 8d18c1f commit 7af893e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

DEVELOPER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ By default `dev_build.py` will use the the Microkit tool directory from source (
149149
However, in some cases it is desirable to test the Microkit tool built into the SDK.
150150
In this case pass `--tool-from-sdk` to use the tool that is built into the SDK.
151151

152-
Finally, by default the `dev_build.py` script relies on the default Makefile dependecy resolution.
152+
Finally, by default the `dev_build.py` script relies on the default Makefile dependency resolution.
153153
However, in some cases it is useful to force a rebuild while doing SDK development.
154154
For example, the `Makefile` can't know about the state of the Microkit tool source code.
155155
To support this a `--rebuild` option is provided.

docs/manual.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Rather than a single `main` entry point, a program has four distinct entry point
6161
On ARM and RISC-V, the individual programs are combined to produce a single bootable *system image*.
6262
The format of the image is suitable for loading by the target board's bootloader.
6363

64-
On x86-64, there are two ELF images invovled. One for the seL4 kernel, and one for the initialiser that
64+
On x86-64, there are two ELF images involved. One for the seL4 kernel, and one for the initialiser that
6565
setups up the Microkit system. These are loaded by a Multiboot 2 compliant bootloader.
6666

6767
The Microkit tool, which is provided as part of the SDK, is used to generate the system image(s).
@@ -1412,7 +1412,7 @@ Microkit will produce a raw binary file by default, so when using U-Boot run the
14121412

14131413
Support is available for the Radxa Rock3b platform which is based on the Rockchip rk3568 SoC.
14141414

1415-
Since the platform relies on some closed-source binary blobs for first stage bootloader and then ARM's TrustZone A, we need to compile the U-Boot including these images. Detailed instructions on how to do that are avalilable [here](https://docs.sel4.systems/Hardware/rock3b.html).
1415+
Since the platform relies on some closed-source binary blobs for first stage bootloader and then ARM's TrustZone A, we need to compile the U-Boot including these images. Detailed instructions on how to do that are available [here](https://docs.sel4.systems/Hardware/rock3b.html).
14161416

14171417
Once the proper U-Boot image is in place, you can simply load the `loader.img` on the board and run it like that (this is assuming you have the TFTP server set up):
14181418

loader/src/riscv/cpus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* seL4 on but an additional S-mode only monitor core, this is the case on certain
2121
* CPUs such as the SiFive U74. The problematic part is that the monitor core has
2222
* a hart ID of zero and hart IDs are not guaranteed to be contiguous.
23-
* This is why we must explitly list all the hart IDs that we want to boot on.
23+
* This is why we must explicitly list all the hart IDs that we want to boot on.
2424
* To figure this out for your platform, the best way is to look at the Device Tree,
2525
* each CPU will have a 'reg' field where the value is the hart ID.
2626
*/

tool/microkit/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ fn main() -> Result<(), String> {
871871
}
872872

873873
// Patch the list of untypeds we used to simulate object allocation into the initialiser.
874-
// At runtime the intialiser will validate what we simulated against what the kernel gives it. If they deviate
874+
// At runtime the initialiser will validate what we simulated against what the kernel gives it. If they deviate
875875
// we will have problems! For example, if we simulated with more memory than what's actually available, the initialiser
876876
// can crash.
877877
capdl_initialiser.add_expected_untypeds(&kernel_boot_info.untyped_objects);

tool/microkit/src/sdf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ impl ProtectionDomain {
10061006
return Err(value_error(
10071007
xml_sdf,
10081008
node,
1009-
"seL4 has not been built as a hypervisor, virtual machiens are disabled".to_string()
1009+
"seL4 has not been built as a hypervisor, virtual machines are disabled".to_string()
10101010
));
10111011
}
10121012
if virtual_machine.is_some() {

0 commit comments

Comments
 (0)