From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sam Ravnborg Subject: [PATCH 4/4] kbuild: document KBUILD_LDS, KBUILD_VMLINUX_INIT and KBUILD_VMLINUX_MAIN Date: Tue, 24 Apr 2012 21:45:18 +0200 Message-ID: <20120424194518.GD2311@merkur.ravnborg.org> References: <20120424194148.GA2216@merkur.ravnborg.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from smtp.snhosting.dk ([87.238.248.203]:33506 "EHLO smtp.domainteam.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757112Ab2DXTpT (ORCPT ); Tue, 24 Apr 2012 15:45:19 -0400 Content-Disposition: inline In-Reply-To: <20120424194148.GA2216@merkur.ravnborg.org> Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux arch , lkml , linux-kbuild , Michal Marek Cc: Richard Weinberger , "David S. Miller" , Arnaud Lacombe , Linus Torvalds >From 8e5298ec2fd86f90ce55503b02ccb67c30677611 Mon Sep 17 00:00:00 2001 From: Sam Ravnborg Date: Mon, 23 Apr 2012 23:06:25 +0200 Subject: [PATCH 4/4] kbuild: document KBUILD_LDS, KBUILD_VMLINUX_INIT and KBUILD_VMLINUX_MAIN Signed-off-by: Sam Ravnborg --- Documentation/kbuild/kbuild.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Documentation/kbuild/kbuild.txt b/Documentation/kbuild/kbuild.txt index 68e32bb..47038a2 100644 --- a/Documentation/kbuild/kbuild.txt +++ b/Documentation/kbuild/kbuild.txt @@ -214,3 +214,18 @@ KBUILD_BUILD_USER, KBUILD_BUILD_HOST These two variables allow to override the user@host string displayed during boot and in /proc/version. The default value is the output of the commands whoami and host, respectively. + +KBUILD_LDS +-------------------------------------------------- +The linker script with full path. Assigned by the top-level Makefile. + +KBUILD_VMLINUX_INIT +-------------------------------------------------- +All objects files for the init (first) part of vmlinux. +Files specified with KBUILD_VMLINUX_INIT are linked first. + +KBUILD_VMLINUX_MAIN +-------------------------------------------------- +All objects files for the main part of vmlinux. +KBUILD_VMLINUX_INIT and KBUILD_VMLINUX_MAIN together specify +all the object files used to link vmlinux. -- 1.7.10