Skip to content
Snippets Groups Projects
Commit 09f4018b authored by Felix Fietkau's avatar Felix Fietkau
Browse files

x86: Fix CONFIG_X86_GRUB_SERIAL=""


With

    .config:CONFIG_X86_GRUB_SERIAL=""

which (AFAICT) is the way to tell GRUB not to use a serial console, in

    target/linux/x86/image/Makefile:ifneq ($(CONFIG_X86_GRUB_SERIAL),)

$(CONFIG_X86_GRUB_SERIAL) expands to `""' (a literal double double-quote),
making the condition unconditionally false.

This patch fixes the situation by passing CONFIG_X86_GRUB_SERIAL through
qstrip before testing.

Signed-off-by: default avatarTamas TEVESZ <ice@extreme.hu>

SVN-Revision: 37749
parent 7b05fe59
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment