aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 349f792..3930240 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,7 @@ zig build -Dplatform=<PLATFORM>
Replace `<PLATFORM>` with the platform you want to build for.
Supported options include `qemu` and `lpi4a`.
-See the `src/lib/cfg/platform` directory for the full list.
+See the `src/cfg/platform` directory for the full list.
You can also use any other Zig build mode, e.g. `--release=fast`.
@@ -59,7 +59,7 @@ You may `strip(1)` this file if you want to.
### init executable
The init executable is expected to be a statically linked ELF
-(with program headers) at `src/lib/cfg/init`. It is embedded in the kernel
+(with program headers) at `src/cfg/init`. It is embedded in the kernel
binary to avoid running (filesystem) drivers in S-mode, meaning that a kernel
rebuild is required to apply modifications.
@@ -283,14 +283,14 @@ You can use the `hwi(1)` command to convert from the textual representation
to the binary representation:
```
-hwi < src/lib/cfg/platform/<PLATFORM>.txt > src/lib/cfg/platform/<PLATFORM>.hwi
+hwi < src/cfg/platform/<PLATFORM>.txt > src/cfg/platform/<PLATFORM>.hwi
```
Omitting the stdin pipe allows you to type out the textual representation
manually:
```
-hwi > src/lib/cfg/platform/<PLATFORM>.hwi
+hwi > src/cfg/platform/<PLATFORM>.hwi
```
Press Control+D after finishing the last line (and pressing Enter)