Commit 810b2be6 authored by Steven Rostedt's avatar Steven Rostedt Committed by Steven Rostedt

kconfig: test for /boot/config-uname after /proc/config.gz in localconfig

Many distros put their config in /boot/config-`uname -r`, add a check
for that right after /proc/config.gz
Reported-by: default avatarAlan Jenkins <sourcejedi.lkml@googlemail.com>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent d08ca277
......@@ -53,6 +53,10 @@ my @searchconfigs = (
"file" => "/proc/config.gz",
"exec" => "zcat",
},
{
"file" => "/boot/config-$uname",
"exec" => "cat",
},
{
"file" => "/boot/vmlinuz-$uname",
"exec" => "scripts/extract-ikconfig",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment