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 X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EC4C1C3E8C5 for ; Fri, 27 Nov 2020 19:14:02 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7A699221F1 for ; Fri, 27 Nov 2020 19:14:02 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="BdGbOHQ0" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7A699221F1 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To:Message-Id:Date: Subject:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=ohRymOAYcXss935mFYKoCQRdnYN2a/lw7N/8uZKUDM0=; b=BdGbOHQ0v91RYD4aBD8UVfYsA KRt6RY1aSxkWj9eqJ3nYtFHpchdHNGyY4sKA0JREggA90vcZLiqx+OJdoerCEMoyBtkYRreeoMLDa G0eODtZVRC4DqNjsCdGN+PG5k/Ywb0zf2tD4mIV1I2penRwbdwV3/JE5yqW3fINqUEzOxTArdEa2i OQipFTKz8iqElChLoSHhftUTI2Pas2JXptnIoQunpG8V0PoD8pCKqoNDEN6DGVTnveJVPKbTUmC5f UwMqOi4fB+u61sbj2BbWGH5xEAeUkQRwv0NDwoe6//ThehFNhmOUkP+82cPND9nkPcEh9E8T21FNA hFstr9w7g==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kijAo-0002ou-8t; Fri, 27 Nov 2020 19:12:50 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kijAm-0002oI-4O for linux-arm-kernel@lists.infradead.org; Fri, 27 Nov 2020 19:12:49 +0000 Received: from localhost.localdomain (unknown [95.146.230.165]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BDA81221F1; Fri, 27 Nov 2020 19:12:45 +0000 (UTC) From: Catalin Marinas To: Will Deacon , Tyler Hicks Subject: Re: [PATCH 0/2] arm64: Implement CONFIG_CMDLINE_EXTEND Date: Fri, 27 Nov 2020 19:12:43 +0000 Message-Id: <160650434702.20875.12520970127987518808.b4-ty@arm.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200921191557.350256-1-tyhicks@linux.microsoft.com> References: <20200921191557.350256-1-tyhicks@linux.microsoft.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20201127_141248_268068_22DA6162 X-CRM114-Status: GOOD ( 13.85 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Rob Herring , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Pavel Tatashin Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, 21 Sep 2020 14:15:55 -0500, Tyler Hicks wrote: > Provide the CONFIG_CMDLINE_EXTEND config option for arm64 kernels. This > config option can be used to extend the kernel command line parameters, > specified by the bootloader, with additional command line parameters > specified in the kernel configuration. > > This option addresses the following use cases: > > [...] Applied to arm64 (for-next/cmdline-extended), thanks! [1/2] arm64: kaslr: Refactor early init command line parsing https://git.kernel.org/arm64/c/52ec03f75d59 [2/2] arm64: Extend the kernel command line from the bootloader https://git.kernel.org/arm64/c/1e40d105dae5 -- Catalin _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel