You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: os-boot/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,15 @@ The Sail model implements a very simple platform based on the one implemented by
7
7
## Build your own ELF
8
8
9
9
```bash
10
-
make -j4 -C linux
10
+
make -C linux -j4
11
11
```
12
12
13
13
This will generate `os-boot/linux/build/fw_payload.elf`.
14
14
15
15
### Boot ELF
16
16
17
17
```bash
18
-
make sail
18
+
make -C linux sail
19
19
```
20
20
21
21
You should see the OpenSBI banner after a few seconds. Eventually it will crash when it fails to find an `init` process which the image does not currently include.
0 commit comments