README.md: few minor updates

Change-Id: I7207ab2cf6ca5b69b464e0c41d2dd0ce3e80b674
This commit is contained in:
Balazs Gerofi
2019-03-07 13:12:39 +09:00
parent 03a85825ed
commit 8880710fad

View File

@@ -96,19 +96,19 @@ sudo chmod a+r /boot/System.map-`uname -r`
##### 4. Obtain sources and compile the kernel ##### 4. Obtain sources and compile the kernel
Clone the source code and set up ihk symlink (this is currently required): Clone the source code:
~~~~ ~~~~
mkdir -p ~/src/ihk+mckernel/ mkdir -p ~/src/ihk+mckernel/
cd ~/src/ihk+mckernel/ cd ~/src/ihk+mckernel/
git clone -r git@github.com:RIKEN-SysSoft/mckernel.git git clone --recursive git@github.com:RIKEN-SysSoft/mckernel.git
~~~~ ~~~~
Configure and compile: Configure and compile:
~~~~ ~~~~
mkdir -p build && cd build mkdir -p build && cd build
cmake -DCMAKE_INSTALL_PREFIX=${HOME}/ihk+mckernel $HOME/src/mckernel cmake -DCMAKE_INSTALL_PREFIX=${HOME}/ihk+mckernel $HOME/src/ihk+mckernel/mckernel
make -j install make -j install
~~~~ ~~~~