aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer.dabbelt@eecs.berkeley.edu>2015-10-19 13:50:56 -0700
committerPalmer Dabbelt <palmer.dabbelt@eecs.berkeley.edu>2015-10-19 13:50:56 -0700
commit9eea7e0c1101fde6ef1beec0e0caefc0a1507208 (patch)
treefe13da116bef9aaae9ce7aa6e5ee92609cbe9e57 /README.md
parent43be1eb6501cbf94ca9eb568be3f7d77525fba48 (diff)
downloadriscv-tools-9eea7e0c1101fde6ef1beec0e0caefc0a1507208.zip
riscv-tools-9eea7e0c1101fde6ef1beec0e0caefc0a1507208.tar.gz
riscv-tools-9eea7e0c1101fde6ef1beec0e0caefc0a1507208.tar.bz2
Don't suggest "make -j", but instead "make -j16"
Suggested by #12.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index bf3165b..a253285 100644
--- a/README.md
+++ b/README.md
@@ -520,7 +520,7 @@ specify the `ARCH=riscv` in each invocation of `make`.
This line is no exception. If you want to speed up the process, you can pass the
`-j [number]` option to make.
- $ make -j ARCH=riscv
+ $ make -j16 ARCH=riscv
Congratulations! You've just cross-compiled the Linux kernel
for RISC-V! However, there are a few more things to take care of before we boot
@@ -588,7 +588,7 @@ _BusyBox menuconfig interface. Looks familiar, eh?_
Once you've finished, make BusyBox. You don't need to specify
`$ARCH`, because we've passed the name of the cross-compiler prefix.
- $ make -j
+ $ make -j16
Once that completes, you now have a BusyBox binary
cross-compiled to run on RISC-V. Now we'll need a way for the kernel to access
@@ -845,7 +845,7 @@ BusyBox as a static binary (no shared libs)" in BusyBox Settings
Then, rebuild and reinstall BusyBox into `mnt/bin`.
- O$ make -j
+ O$ make -j16
O$ cd $TOP/linux-3.14.33/mnt
O$ cp $TOP/busybox-1.21.1/busybox bin