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 F3444C433F5 for ; Mon, 9 May 2022 13:01:58 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8A6DD83ECC; Mon, 9 May 2022 15:01:56 +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="Ky55lRZr"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 4BAA583EA4; Mon, 9 May 2022 15:01:55 +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 1069783ECC for ; Mon, 9 May 2022 15:01:52 +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 55A4D6134C; Mon, 9 May 2022 13:01:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 97872C385A8; Mon, 9 May 2022 13:01:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652101309; bh=w85sNZ/Lsa6BRp6vZZbxDg/h74l7zFlYrlcJbV06F8o=; h=From:To:Cc:Subject:Date:From; b=Ky55lRZr+mnG4njMG68xc8QHqU6lqId5TkMxwLGH8EIiv92PiZFF0TvpPa7UY38n9 Q7Uklaw/9Y2o6gJJEcgGCVEhz2spR+AU7+hKDeoCy6Hh7FYPiAVhe/3s/pzHQib6bF 0YiGa4MHxE8Q28o3sZFfyWWZVIpNaN/UXi95jTivbfuJsZN1NlH5USePanVo/s/FO6 yVyT0QCi++qh9u0+L52KMYQ/6vQPnxDdM9Tt2KpC179q3d81QH1sWnVw/86T/9+sUv iTMw53rmcSzRIvGha2Or6BI8PVWDrbfxRSuh9G3HYGmiHFwLfe/ftfk93mpHsSZ05W YXhIXPLRZlbFg== Received: by pali.im (Postfix) id D31CC1495; Mon, 9 May 2022 15:01:46 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Tom Rini , Vagrant Cascadian Cc: u-boot@lists.denx.de, maemo-leste@lists.dyne.org Subject: [PATCH] Nokia RX-51: Enable CONFIG_SUPPORT_RAW_INITRD Date: Mon, 9 May 2022 15:00:47 +0200 Message-Id: <20220509130047.2447-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 enable booting of Debian systems which use raw initrd image (instead of uInitrd created by mkimage). This change increase size of u-boot.bin binary by just 64 bytes. Signed-off-by: Pali Rohár --- Debian has for this support own custom patch: https://sources.debian.org/patches/u-boot/2022.04+dfsg-2/n900/bootz_and_raw_initrd.patch/ --- configs/nokia_rx51_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/nokia_rx51_defconfig b/configs/nokia_rx51_defconfig index d5688c7a212b..2e8068876eae 100644 --- a/configs/nokia_rx51_defconfig +++ b/configs/nokia_rx51_defconfig @@ -18,6 +18,7 @@ CONFIG_OPTIMIZE_INLINING=y CONFIG_LTO=y # CONFIG_SYS_MALLOC_F is not set # CONFIG_FIT is not set +CONFIG_SUPPORT_RAW_INITRD=y CONFIG_BOOTDELAY=30 CONFIG_AUTOBOOT_KEYED=y CONFIG_AUTOBOOT_MENU_SHOW=y -- 2.20.1