From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 0CB16C7EE23 for ; Sun, 11 Jun 2023 12:54:08 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8EDDC86172; Sun, 11 Jun 2023 14:53:53 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="qg7r+RIS"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id D699885C98; Sun, 11 Jun 2023 14:53:48 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 2DE6B85E7D for ; Sun, 11 Jun 2023 14:53:44 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 91A7560DEC; Sun, 11 Jun 2023 12:53:42 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C1A79C4339E; Sun, 11 Jun 2023 12:53:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1686488021; bh=es3ErqCD2yY37PXNfiu2xdpPLld+ZOF1LLeCstfouEk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qg7r+RISgQeJ5CGVcMGUQOP+uAEAKNcrvLEEU6zWoz/D/8Dw43J29qu5YfsuDhGWr raqtRCLwowRA2w91o01yMvwjgBRgTBvmvL3dRvygbqkXFZfkisrQ9+sKhyWa8fiNok BVmg9shCpct73jqEPKFomB9cchEVy3OKr4Kbrn0A1wbR8KT/P4np3V6xWSvM4rAEpf xKAgtQJKYelgZswPtP255QntpIBwtrR5URlbgGZ5XIS14W3A0b7byunbwm3ccdD7SV m03C+ByYi9xiXZqWKdcWg3VYy6mFghdiLw1j27m5YcCoicsKx9bqh0Qowlyg6HDaXd NgGK3MrTueXFw== Received: by pali.im (Postfix) id C565BA5C; Sun, 11 Jun 2023 14:53:38 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Tom Rini , Stefan Roese Cc: u-boot@lists.denx.de Subject: [PATCH u-boot 1/3] Revert "video: Enable VIDEO_ANSI by default only with EFI" Date: Sun, 11 Jun 2023 14:53:22 +0200 Message-Id: <20230611125324.15860-2-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20230611125324.15860-1-pali@kernel.org> References: <20230611125324.15860-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean This reverts commit 72a0dd8bed010bef78028ae528763f9807758e6b. Signed-off-by: Pali Rohár --- drivers/video/Kconfig | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 1e2f4e6de4a5..52f7eac1e6a3 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -141,13 +141,10 @@ config VIDEO_BPP32 config VIDEO_ANSI bool "Support ANSI escape sequences in video console" - default y if EFI_LOADER + default y help Enable ANSI escape sequence decoding for a more fully functional - console. Functionality includes changing the text colour and moving - the cursor. These date from the 1970s and are still widely used today - to control a text terminal. U-Boot implements these by decoding the - sequences and performing the appropriate operation. + console. config VIDEO_MIPI_DSI bool "Support MIPI DSI interface" -- 2.20.1