aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-08-23 08:24:11 -0700
committerBin Meng <bmeng.cn@gmail.com>2018-08-30 11:23:14 +0800
commita0913cdf7b7ef1a9f622294cf7a9e97ea9eb72f2 (patch)
treefd28d07c8a25389f0c5f1aadaa5b8872323cd21b
parent1fdeacd32c6335acb7bd5f00c3f177013d971d3d (diff)
downloadu-boot-a0913cdf7b7ef1a9f622294cf7a9e97ea9eb72f2.zip
u-boot-a0913cdf7b7ef1a9f622294cf7a9e97ea9eb72f2.tar.gz
u-boot-a0913cdf7b7ef1a9f622294cf7a9e97ea9eb72f2.tar.bz2
x86: efi: payload: Turn on acpi in the kernel command line
Now that we have full Linux kernel boot support on EFI payload, avoid pass "acpi=off" to the kernel command line. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--include/configs/x86-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/x86-common.h b/include/configs/x86-common.h
index cc621cb..f0b027e 100644
--- a/include/configs/x86-common.h
+++ b/include/configs/x86-common.h
@@ -107,7 +107,7 @@
#define CONFIG_BOOTFILE "bzImage"
#define CONFIG_LOADADDR 0x1000000
#define CONFIG_RAMDISK_ADDR 0x4000000
-#ifdef CONFIG_GENERATE_ACPI_TABLE
+#if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
#define CONFIG_OTHBOOTARGS "othbootargs=\0"
#else
#define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0"