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

kernel: add patch and config #18

Merged
merged 1 commit into from
Apr 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions kernel/configs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## 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 -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
```