[linux-yocto] [PATCH 0/1] Modify some config that has been changed

2018-09-06 Thread Hongzhi.Song
Please merge to yocto-4.18 Hongzhi.Song (1): BSPs: Some required kernel config is not enabled as expected bsp/intel-x86/intel-x86-64.cfg | 7 --- bsp/intel-x86/intel-x86-acpi.cfg | 1 - bsp/intel-x86/intel-x86.cfg | 16 ++--

[linux-yocto] [PATCH 1/1] BSPs: Some required kernel config is not enabled as expected

2018-09-06 Thread Hongzhi.Song
The following configs were introduced from SDK, not contained by kernel. So we should drop them. CONFIG_X86_INTEL_SBI_APL CONFIG_SUPPORT_HDMI CONFIG_INTEL_PMIC_THERMAL CONFIG_PINCTRL_BAYTRAIL_DEVICE CONFIG_X86_INTEL_APLI_LHCRB_AIC3107 CONFIG_X86_INTEL_APLI_LHCRB_WM8731 CONFIG_BYT_LPSS_BRD Others

Re: [linux-yocto] [PATCH 1/1] BSPs: Some required kernel config is not enabled as expected

2018-09-06 Thread Anuj Mittal
On 09/06/2018 06:14 PM, Hongzhi.Song wrote: > The following configs were introduced from SDK, not contained by > kernel. So we should drop them. > CONFIG_X86_INTEL_SBI_APL > CONFIG_SUPPORT_HDMI > CONFIG_INTEL_PMIC_THERMAL > CONFIG_PINCTRL_BAYTRAIL_DEVICE > CONFIG_X86_INTEL_APLI_LHCRB_AIC3107 >

Re: [linux-yocto] [PATCH 1/1] BSPs: Some required kernel config is not enabled as expected

2018-09-06 Thread Hongzhi, Song
On 2018年09月06日 20:29, Bruce Ashfield wrote: On 2018-09-06 6:23 AM, Anuj Mittal wrote: On 09/06/2018 06:14 PM, Hongzhi.Song wrote: The following configs were introduced from SDK, not contained by kernel. So we should drop them. CONFIG_X86_INTEL_SBI_APL CONFIG_SUPPORT_HDMI

Re: [linux-yocto] [PATCH 1/1] BSPs: Some required kernel config is not enabled as expected

2018-09-06 Thread Bruce Ashfield
On 2018-09-06 6:23 AM, Anuj Mittal wrote: On 09/06/2018 06:14 PM, Hongzhi.Song wrote: The following configs were introduced from SDK, not contained by kernel. So we should drop them. CONFIG_X86_INTEL_SBI_APL CONFIG_SUPPORT_HDMI CONFIG_INTEL_PMIC_THERMAL CONFIG_PINCTRL_BAYTRAIL_DEVICE

[linux-yocto] [PATCH 6/9] features/tpm: fix conflict with configs and add dependency

2018-09-06 Thread Hongzhi.Song
CONFIG_HW_RANDOM_TPM must be equal to to CONFIG_TCG_TPM And CONFIG_HW_RANDOM_TPM depends on HW_RANDOM. drivers/char/tpm/Kconfig: if TCG_TPM config HW_RANDOM_TPM bool "TPM HW Random Number Generator support" depends on TCG_TPM && HW_RANDOM && !(TCG_TPM=y && HW_RANDOM=m) default y

[linux-yocto] [PATCH 2/9] bsp/intel-x86: Drop configs that has been removed by kernel

2018-09-06 Thread Hongzhi.Song
List the config and the commit id from kernel: CONFIG_ACPI_PROCFS, commit id: 7919010c422 CONFIG_EDAC_MM_EDAC, commit id: e3c4ff6d8c9 CONFIG_I7300_IDLE, commit id: b65ce83f2a CONFIG_CRYPTO_ZLIB, commit id: 110492183c4 CONFIG_PM_RUNTIME was switched to CONFIG_PM, commit id: 464ed18ebd

[linux-yocto] [PATCH 9/9] features/intel-pinctrl: Fix conflict with configs

2018-09-06 Thread Hongzhi.Song
CONFIG_PINCTRL_INTEL is selected by CONFIG_PINCTRL_SUNRISEPOINT. If CONFIG_PINCTRL_INTEL want to be set 'y', then CONFIG_PINCTRL_SUNRISEPOINT must be set 'y'. Signed-off-by: Hongzhi.Song --- features/intel-pinctrl/intel-pinctrl.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[linux-yocto] [PATCH 7/9] features/thermal: Add dependency for kernel option

2018-09-06 Thread Hongzhi.Song
The dependency of CONFIG_INTEL_BXT_PMIC_THERMAL was switched from CONFIG_INTEL_SOC_PMIC to CONFIG_INTEL_SOC_PMIC_BXTWC. Commit id:b5238b41858 Signed-off-by: Hongzhi.Song --- features/thermal/coretemp.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/features/thermal/coretemp.cfg

[linux-yocto] [PATCH 0/9] Some configs is not set as expected

2018-09-06 Thread Hongzhi.Song
Please merge these patches to yocto-4.18 Hongzhi.Song (9): intel-x86: Drop configs which are not defined in kernel bsp/intel-x86: Drop configs that has been removed by kernel features/hostapd: drop obsolete configs features: drop the obsolete kernel option features/mmc: modify

[linux-yocto] [PATCH 4/9] features: drop the obsolete kernel option

2018-09-06 Thread Hongzhi.Song
CONFIG_MMC_BLOCK_BOUNCE has been removed by kernel. Commit id: de3ee99b097d. Signed-off-by: Hongzhi.Song --- features/mmc/mmc-block.cfg | 1 - features/soc/x1000/x1000.cfg | 1 - 2 files changed, 2 deletions(-) diff --git a/features/mmc/mmc-block.cfg b/features/mmc/mmc-block.cfg index

[linux-yocto] [PATCH 1/9] intel-x86: Drop configs which are not defined in kernel

2018-09-06 Thread Hongzhi.Song
The following configs were introduced from SDK, not defined by kernel. So we should drop them. CONFIG_X86_INTEL_SBI_APL CONFIG_SUPPORT_HDMI CONFIG_INTEL_PMIC_THERMAL CONFIG_PINCTRL_BAYTRAIL_DEVICE CONFIG_X86_INTEL_APLI_LHCRB_AIC3107 CONFIG_X86_INTEL_APLI_LHCRB_WM8731 CONFIG_BYT_LPSS_BRD

Re: [linux-yocto] [PATCH 0/1] clean up rt config

2018-09-06 Thread Bruce Ashfield
On 2018-09-05 3:08 AM, Anuj Mittal wrote: Hi Bruce, This one removes aufs entry from preempt-rt config. Helps kernels that don't apply the aufs patches. Since CONFIG_AUFS_FS is 'n' by default and there's no one enabling it in kernel-cache, this will not result in any change in behavior. Yep,

Re: [linux-yocto] [yocto-4.14][yocto-4.9][PATCH] rt: drop obselete configuration options

2018-09-06 Thread Bruce Ashfield
merged to 4.14 and 4.9. Bruce On 2018-09-04 10:54 PM, Anuj Mittal wrote: From: Bruce Ashfield Signed-off-by: Bruce Ashfield Signed-off-by: Anuj Mittal --- ktypes/preempt-rt/preempt-rt.cfg | 2 -- 1 file changed, 2 deletions(-) diff --git a/ktypes/preempt-rt/preempt-rt.cfg

Re: [linux-yocto] [PATCH 0/9] Some configs is not set as expected

2018-09-06 Thread Bruce Ashfield
On 2018-09-06 10:00 AM, Hongzhi.Song wrote: Please merge these patches to yocto-4.18 Thanks for the expanded explanations in the logs. Everything looks fine to me, but I'll let this sit for a day or so to see if there are any more comments. Bruce Hongzhi.Song (9): intel-x86: Drop

[linux-yocto] [PATCH 8/9] bsp/intel-x86: Rename CONFIG_R8723BE to CONFIG_RTL8723BE

2018-09-06 Thread Hongzhi.Song
CONFIG_R8723BE was written wrongly. CONFIG_RTL8723BE is right. Signed-off-by: Hongzhi.Song --- bsp/intel-x86/intel-x86.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/intel-x86/intel-x86.cfg b/bsp/intel-x86/intel-x86.cfg index 4d7f150c..01eda2db 100644 ---