From patchwork Wed Mar 13 20:46:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angelo Dureghello X-Patchwork-Id: 1056306 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=sysam.it Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44KWDD5Tbnz9s5c for ; Thu, 14 Mar 2019 12:22:50 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id CB4C9C21FDE; Thu, 14 Mar 2019 01:22:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.4 required=5.0 tests=RDNS_DYNAMIC autolearn=no autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 27417C21FB7; Thu, 14 Mar 2019 01:22:43 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 7CD6DC21FC8; Thu, 14 Mar 2019 01:22:41 +0000 (UTC) Received: from sysam.it (ec2-18-194-220-216.eu-central-1.compute.amazonaws.com [18.194.220.216]) by lists.denx.de (Postfix) with ESMTP id 246EBC21FB7 for ; Thu, 14 Mar 2019 01:22:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by sysam.it (Postfix) with ESMTP id 496872041B; Wed, 13 Mar 2019 20:47:20 +0000 (UTC) Received: from sysam.it ([127.0.0.1]) by localhost (sysam.it [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 53EFoUKlKVhu; Wed, 13 Mar 2019 20:47:19 +0000 (UTC) Received: from localhost.localdomain (host239-236-dynamic.51-79-r.retail.telecomitalia.it [79.51.236.239]) by sysam.it (Postfix) with ESMTPSA id 80A4D20409; Wed, 13 Mar 2019 20:47:19 +0000 (UTC) From: Angelo Dureghello To: trini@konsulko.com Date: Wed, 13 Mar 2019 21:46:51 +0100 Message-Id: <20190313204653.9115-11-angelo@sysam.it> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190313204653.9115-1-angelo@sysam.it> References: <20190313204653.9115-1-angelo@sysam.it> MIME-Version: 1.0 Cc: sjg.chromium.org@ip-172-31-46-226.eu-central-1.compute.internal, u-boot@lists.denx.de, Angelo Dureghello , alison.wang@freescale.com Subject: [U-Boot] [PATCH v5 11/13] m68k: add OF control support to m68k X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Add SUPPORT_OF_CONTROL at this stage, to avoid to break build bisectability. Signed-off-by: Angelo Dureghello --- Changes for v4: - new patch Changes for v5: - none --- arch/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/Kconfig b/arch/Kconfig index 2f3d07c13a..b67847941b 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -28,6 +28,7 @@ config M68K select HAVE_PRIVATE_LIBGCC select SYS_BOOT_GET_CMDLINE select SYS_BOOT_GET_KBD + select SUPPORT_OF_CONTROL config MICROBLAZE bool "MicroBlaze architecture"