From 9eea7e0c1101fde6ef1beec0e0caefc0a1507208 Mon Sep 17 00:00:00 2001 From: Palmer Dabbelt Date: Mon, 19 Oct 2015 13:50:56 -0700 Subject: Don't suggest "make -j", but instead "make -j16" Suggested by #12. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.md') 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 -- cgit v1.1