Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
kernel: add patch and config
Browse files Browse the repository at this point in the history
Add config file for x86 KVM.
Add 9p patch to always use cached inode.

fixes #17

Signed-off-by: Julio Montes <julio.montes@intel.com>
  • Loading branch information
Julio Montes committed Apr 25, 2018
1 parent d0085e8 commit 437251e
Show file tree
Hide file tree
Showing 3 changed files with 2,682 additions and 0 deletions.
22 changes: 22 additions & 0 deletions kernel/configs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## How to use config files

config files must be copied in the kernel source code directory and renamed to `.config`

For example:

```
cp x86_kata_kvm_4.14.x linux-4.14.22/.config
pushd linux-4.14.22
make ARCH=x86_64
make -j4
```

## How to modify config files

```
cp x86_kata_kvm_4.14.x linux-4.14.22/.config
pushd linux-4.14.22
make menuconfig
popd
cp linux-4.14.22/.config x86_kata_kvm_4.14.x
```

0 comments on commit 437251e

Please sign in to comment.