diff options
author | 2020-09-23 16:29:11 +0800 | |
---|---|---|
committer | 2020-09-28 09:55:25 +0800 | |
commit | 887da6a9f0eec608297f635d8e9de2cdef4bffd5 (patch) | |
tree | efe2b008df430e8af4ee4cf2d40644001aa267e0 | |
parent | 6bfb2769b48ee15f46b619a805567eac3a1f9418 (diff) | |
download | meta-zephyr-887da6a9f0eec608297f635d8e9de2cdef4bffd5.tar.gz meta-zephyr-887da6a9f0eec608297f635d8e9de2cdef4bffd5.tar.bz2 meta-zephyr-887da6a9f0eec608297f635d8e9de2cdef4bffd5.zip |
acrn.conf: set tune corei7-64
Added CONFIG_X86_64 since ACRN hypervisor supports x86_64 capable
platforms only.
Ref:
https://github.com/zephyrproject-rtos/zephyr/commit/d0126a037d23484feebba00d2c0eac27e6393fef
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
-rw-r--r-- | conf/machine/acrn.conf | 3 | ||||
-rw-r--r-- | conf/machine/include/tune-corei7-common.inc | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/conf/machine/acrn.conf b/conf/machine/acrn.conf index 96a7d66..c044933 100644 --- a/conf/machine/acrn.conf +++ b/conf/machine/acrn.conf @@ -3,8 +3,7 @@ #@DESCRIPTION: Machine for Zephyr BOARD acrn require conf/machine/include/qemu.inc -require conf/machine/include/tune-i586.inc - +require conf/machine/include/tune-corei7-common.inc ZEPHYR_INHERIT_CLASSES += "zephyr-qemuboot" ARCH_acrn = "x86" diff --git a/conf/machine/include/tune-corei7-common.inc b/conf/machine/include/tune-corei7-common.inc new file mode 100644 index 0000000..7ad9516 --- /dev/null +++ b/conf/machine/include/tune-corei7-common.inc @@ -0,0 +1,3 @@ +DEFAULTTUNE ?= "corei7-64" +require conf/machine/include/tune-corei7.inc +require conf/machine/include/x86-base.inc |