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 CF0CAC433F5 for ; Mon, 9 May 2022 09:14:11 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5A40E83DE7; Mon, 9 May 2022 11:14:09 +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="CP5bM1W4"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id E44DB83DEB; Mon, 9 May 2022 11:14:03 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 2D88783DE0 for ; Mon, 9 May 2022 11:14:00 +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 5FC2E614AB; Mon, 9 May 2022 09:13:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9ADADC385A8; Mon, 9 May 2022 09:13:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652087637; bh=BMfrdesQckJrXney1hAHnrul5d0JMKBKBqovgEX/YwA=; h=From:To:Cc:Subject:Date:From; b=CP5bM1W4kvbP0ke8GpHOd7hFl1/q+WHJ4U6w0bMhDt3PB8veUiujaug3H55NVt1fk cBvfWvcmGvlyx3rVDrz9snIaSqP4nvZr5bOMc+ydmE+ITyXh+/FEQPVUCeV6kUDfxg 8wMjiekERuTOPPuuRB2EnqRetE3I9aVXQMt1VRBEeH9JDOWWLPdhtMJXC44UpvmZYB GnP95waVKRU18e8rtIOW0VlSyqQPx2WKxMo+7iPLhnfDP1meYNNA1tlDj3ToG3gB9N zgj2IfzclvQooxq6lRKzOWOTTm+93p/awW78ajbtJ7+pNh38+wvJ5T0dAfz1vQm7LA xwebTE+StWbgw== Received: by pali.im (Postfix) id 7167C1495; Mon, 9 May 2022 11:13:54 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese , Marek Behun Cc: u-boot@lists.denx.de Subject: [PATCH] arm: mvebu: turris_{omnia,mox}: Enable CONFIG_NETCONSOLE Date: Mon, 9 May 2022 11:12:46 +0200 Message-Id: <20220509091246.4215-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 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.5 at phobos.denx.de X-Virus-Status: Clean This allows to use U-Boot console on Turris devices via network. Signed-off-by: Pali Rohár --- configs/turris_mox_defconfig | 1 + configs/turris_omnia_defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/turris_mox_defconfig b/configs/turris_mox_defconfig index bcd3699a4fab..c1bd1de4a91c 100644 --- a/configs/turris_mox_defconfig +++ b/configs/turris_mox_defconfig @@ -56,6 +56,7 @@ CONFIG_ENV_IS_IN_SPI_FLASH=y CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_ARP_TIMEOUT=200 CONFIG_NET_RETRY_COUNT=50 +CONFIG_NETCONSOLE=y CONFIG_SCSI_AHCI=y CONFIG_AHCI_PCI=y CONFIG_BUTTON=y diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig index 217e2603fdfb..3d5b6c2fdad7 100644 --- a/configs/turris_omnia_defconfig +++ b/configs/turris_omnia_defconfig @@ -68,6 +68,7 @@ CONFIG_USE_ETHPRIME=y CONFIG_ETHPRIME="ethernet@34000" CONFIG_ARP_TIMEOUT=200 CONFIG_NET_RETRY_COUNT=50 +CONFIG_NETCONSOLE=y CONFIG_SPL_OF_TRANSLATE=y CONFIG_AHCI_PCI=y CONFIG_AHCI_MVEBU=y -- 2.20.1