From 0eeda639439a5a1293e784785e6a03394425a42c Mon Sep 17 00:00:00 2001 From: functor Date: Wed, 14 Mar 2018 18:30:23 -0400 Subject: [PATCH] The name of the file with additional kernel options must include the kernel series name. Otherwise the script in kernel/Dockerfile will not apply it. So the example file name should be `config-4.9.x-x86_64-foo` instead of `config-foo`. Signed-off-by: functor --- docs/kernels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kernels.md b/docs/kernels.md index 7430e5199..7fe5b72cd 100644 --- a/docs/kernels.md +++ b/docs/kernels.md @@ -160,7 +160,7 @@ The kernel build system has some provision to allow local customisation to the build. If you want to override/add some kernel config options, you can add a -file called `config-foo` and then invoke the build with `make +file called `config-4.9.x-x86_64-foo` and then invoke the build with `make EXTRA=-foo build_4.9.x-foo` and this will build an image with the additional kernel config options enabled.