From patchwork Fri Dec 8 13:13:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yegor Yefremov X-Patchwork-Id: 846221 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ytXqX09gqz9s74 for ; Sat, 9 Dec 2017 00:13:59 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 634A789EF5; Fri, 8 Dec 2017 13:13:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fdXs9zuT3Cf9; Fri, 8 Dec 2017 13:13:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id CA12789EE4; Fri, 8 Dec 2017 13:13:56 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 909F11C408B for ; Fri, 8 Dec 2017 13:13:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 8CA16308D6 for ; Fri, 8 Dec 2017 13:13:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iPIndq9YsCqH for ; Fri, 8 Dec 2017 13:13:55 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.visionsystems.de (mail.visionsystems.de [213.209.99.202]) by silver.osuosl.org (Postfix) with ESMTP id 0518D3080E for ; Fri, 8 Dec 2017 13:13:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.visionsystems.de (Postfix) with ESMTP id 98B82363AF0; Fri, 8 Dec 2017 14:13:53 +0100 (CET) Received: from mail.visionsystems.de ([127.0.0.1]) by localhost (mail.visionsystems.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25017-09; Fri, 8 Dec 2017 14:13:53 +0100 (CET) Received: from visionsystems.de (kallisto.visionsystems.local [192.168.1.3]) by mail.visionsystems.de (Postfix) with ESMTP id 663A7363AEF; Fri, 8 Dec 2017 14:13:53 +0100 (CET) Received: from debian9.visionsystems.de ([192.168.1.170]) by visionsystems.de with Microsoft SMTPSVC(6.0.3790.4675); Fri, 8 Dec 2017 14:13:53 +0100 From: yegorslists@googlemail.com To: buildroot@buildroot.org Date: Fri, 8 Dec 2017 14:13:38 +0100 Message-Id: <20171208131338.11603-1-yegorslists@googlemail.com> X-Mailer: git-send-email 2.11.0 X-OriginalArrivalTime: 08 Dec 2017 13:13:53.0245 (UTC) FILETIME=[652DE0D0:01D37026] X-Virus-Scanned: amavisd-new at visionsystems.de Subject: [Buildroot] [PATCH] boot: uboot: fix typo X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: thomas.petazzoni@free-electrons.com MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From: Yegor Yefremov Replace "depend" with "depends". Signed-off-by: Yegor Yefremov --- boot/uboot/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in index 6331bcde08..2829d2ca5e 100644 --- a/boot/uboot/Config.in +++ b/boot/uboot/Config.in @@ -161,7 +161,7 @@ config BR2_TARGET_UBOOT_NEEDS_OPENSSL config BR2_TARGET_UBOOT_NEEDS_ATF_BL31 bool "U-Boot needs ATF BL31" depends on BR2_TARGET_ARM_TRUSTED_FIRMWARE - depend on !BR2_TARGET_ARM_TRUSTED_FIRMWARE_UBOOT_AS_BL33 + depends on !BR2_TARGET_ARM_TRUSTED_FIRMWARE_UBOOT_AS_BL33 select BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31 help Some specific platforms (such as Allwinner A64/H5)