Merge pull request #25 from Feandil/proc_config

When using /proc/config.gz, indicate it more clearly
This commit is contained in:
Stéphane Lesimple 2018-01-09 09:19:36 +01:00 committed by GitHub
commit 7b05105a54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -209,7 +209,9 @@ if [ -n "$opt_kernel" ]; then
else
/bin/echo "Will use no vmlinux image (accuracy might be reduced"
fi
if [ -n "$opt_config" ]; then
if [ -n "$dumped_config" ]; then
/bin/echo -e "Will use kconfig \033[35m/proc/config.gz\033[0m"
elif [ -n "$opt_config" ]; then
/bin/echo -e "Will use kconfig \033[35m$opt_config\033[0m"
else
/bin/echo "Will use no kconfig (accuracy might be reduced)"