Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

README.md: Add $ in commands #21

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cd helloworld/
mkdir .unikraft
git clone https://github.com/unikraft/unikraft .unikraft/unikraft
UK_DEFCONFIG=$(pwd)/.config.helloworld_qemu-x86_64 make defconfig
make -j(nproc)
make -j $(nproc)
/usr/bin/qemu-system-x86_64 -kernel build/helloworld_qemu-x86_64 -nographic
```

Expand All @@ -61,7 +61,7 @@ The same can be done for `AArch64`, by running the commands below:
```console
make properclean
UK_DEFCONFIG=$(pwd)/.config.helloworld_qemu-arm64 make defconfig
make -j(nproc)
make -j $(nproc)
/usr/bin/qemu-system-aarch64 -kernel build/helloworld_qemu-arm64 -nographic -machine virt -cpu cortex-a57
```

Expand Down