From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Shevchenko Date: Tue, 14 Feb 2017 17:47:12 +0300 Subject: [U-Boot] [PATCH v1 1/3] x86: Introduce INTEL_MID quirk option Message-ID: <20170214144714.96516-1-andriy.shevchenko@linux.intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Intel Mobile Internet Device (MID) platforms have special treatment in some cases, such as CPU enumeration or boot parameters configuration. Here we introduce specific quirk option for such cases. It is supposed to be selected by Intel MID platform boards, for example, Intel Edison. Signed-off-by: Andy Shevchenko --- arch/x86/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 5f9597b230..ba57bcfca4 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -80,6 +80,10 @@ config VENDOR_INTEL endchoice +# subarchitectures-specific options below +config INTEL_MID + bool + # board-specific options below source "board/advantech/Kconfig" source "board/congatec/Kconfig" -- 2.11.0