diff options
author | Sooyoung Ha <yoosah.ha@samsung.com> | 2016-09-08 17:24:15 +0900 |
---|---|---|
committer | Sooyoung Ha <yoosah.ha@samsung.com> | 2016-09-08 17:25:28 +0900 |
commit | 570eecc99dbc2f5594185d876206109467ceb3f0 (patch) | |
tree | e75c72b664008b09bf8874fbdb31119411f16aa2 | |
parent | 4e79738b72feb20c43f51af4bd65c4fbfbbc685e (diff) | |
download | emulator-kernel-570eecc99dbc2f5594185d876206109467ceb3f0.tar.gz emulator-kernel-570eecc99dbc2f5594185d876206109467ceb3f0.tar.bz2 emulator-kernel-570eecc99dbc2f5594185d876206109467ceb3f0.zip |
config: modify processor family type
The platform SWAP module knew the processor as 686(aka pentinum pro)
but emulator kernel had been changed as pentium 4.
It could cause the DA module fault, so I revert it to pentium pro.
Change-Id: Ia68fc9f0ed118e41cff53e6784444880b0d02ffa
Signed-off-by: Sooyoung Ha <yoosah.ha@samsung.com>
-rw-r--r-- | arch/x86/configs/tizen_emul_defconfig | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/x86/configs/tizen_emul_defconfig b/arch/x86/configs/tizen_emul_defconfig index 5ea5598632c3..b1d0470a96ef 100644 --- a/arch/x86/configs/tizen_emul_defconfig +++ b/arch/x86/configs/tizen_emul_defconfig @@ -374,11 +374,11 @@ CONFIG_NO_BOOTMEM=y # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set -# CONFIG_M686 is not set +CONFIG_M686=y # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set -CONFIG_MPENTIUM4=y +# CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set # CONFIG_MK8 is not set @@ -395,8 +395,9 @@ CONFIG_MPENTIUM4=y # CONFIG_MCORE2 is not set # CONFIG_MATOM is not set CONFIG_X86_GENERIC=y -CONFIG_X86_INTERNODE_CACHE_SHIFT=7 -CONFIG_X86_L1_CACHE_SHIFT=7 +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +# CONFIG_X86_PPRO_FENCE is not set CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_USE_PPRO_CHECKSUM=y CONFIG_X86_TSC=y |