From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 186B42586CE; Wed, 24 Sep 2025 06:40:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758696017; cv=none; b=TY7RAqILjOcHpQeGc3V5gs1DK93h+tkXW9KkRUvnL8nR2EQbVa9l8sna0B68ReP80hDrEDxEivz492/cpr8JPsgDMre6WfOLe43kTeUSsUDnSE5kM7Foanpwf1bznvXP1M+X4rXNH7IP/FWXBDSEHb4Ai4ozsnpmadwxLOGpyZc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758696017; c=relaxed/simple; bh=TQaHoI4626NTyTWE4tbqLFumMdOdo16YJuaUptOKYG8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=g0b9HRzblrUgxQ6QryX0JoKKnNMTqctrZpJvh4WAA4T249HFLC/1GJ29bnwdG/OX1EPGeyF+mnYiD+UQlQ+/G3YblWYSv2ZbWuNqlwWNRHfrZ3QPzdsvB69dZs1p8np7NnNSjAkeARMR1wACoo9KcI54C5HDvpfXNDq+YQTBnd0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VK8mc7bX; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="VK8mc7bX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 59275C113CF; Wed, 24 Sep 2025 06:40:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1758696016; bh=TQaHoI4626NTyTWE4tbqLFumMdOdo16YJuaUptOKYG8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=VK8mc7bXsZjGta5PyK2DbHUfUgPd17n4+VoUjWNDFVnNTpSK/5HudMeOhUp/OsBfc E6d/+BwDjth3XrZEqUOJQ4veXQdbBxuc4d4GPc0pfVXoEZDTvutXYulAv3glM/Yc1T kjmRzu/nu6V49OmgLULWzXzjNDt5XczfTR/3gtZJ6e7Pnd6F3EGiFPS/Am2FKSUlFl 4p5jIYWo6JHwZEdG2U6KDhvWWkGA7N1OxquHxVKPVdrscSlmQ1QWGDXF9dExE/svEa Cr6DCjme0NCtDXM1JgWD41JgR5vFN2abXdaqJO5LUisg2a5nOWsMi0azr3oe0ammA5 ha7Pa1tGw2X0Q== Date: Wed, 24 Sep 2025 08:39:44 +0200 From: Nicolas Schier To: Alexey Gladkov Cc: Nathan Chancellor , Petr Pavlu , Luis Chamberlain , Sami Tolvanen , Daniel Gomez , linux-kernel@vger.kernel.org, linux-modules@vger.kernel.org, linux-kbuild@vger.kernel.org Subject: Re: [PATCH v8 8/8] kbuild: vmlinux.unstripped should always depend on .vmlinux.export.o Message-ID: References: <0e63a9c7741fe8217e4fd7c60afcf057ffa2ef5a.1758182101.git.legion@kernel.org> Precedence: bulk X-Mailing-List: linux-modules@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0e63a9c7741fe8217e4fd7c60afcf057ffa2ef5a.1758182101.git.legion@kernel.org> On Thu, Sep 18, 2025 at 10:05:52AM +0200, Alexey Gladkov wrote: > Since .vmlinux.export.c is used to add generated by modpost modaliases > for builtin modules the .vmlinux.export.o is no longer optional and > should always be created. The generation of this file is not dependent > on CONFIG_MODULES. > > Signed-off-by: Alexey Gladkov > --- > scripts/Makefile.vmlinux | 9 ++------- > scripts/link-vmlinux.sh | 5 +---- > 2 files changed, 3 insertions(+), 11 deletions(-) > Reviewed-by: Nicolas Schier -- Nicolas