From patchwork Wed Nov 4 15:19:45 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Morton X-Patchwork-Id: 57609 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id nA4FKPQw007140 for ; Wed, 4 Nov 2009 15:20:35 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755897AbZKDPU3 (ORCPT ); Wed, 4 Nov 2009 10:20:29 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755917AbZKDPU3 (ORCPT ); Wed, 4 Nov 2009 10:20:29 -0500 Received: from smtp1.linux-foundation.org ([140.211.169.13]:53386 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755897AbZKDPU2 (ORCPT ); Wed, 4 Nov 2009 10:20:28 -0500 Received: from imap1.linux-foundation.org (imap1.linux-foundation.org [140.211.169.55]) by smtp1.linux-foundation.org (8.14.2/8.13.5/Debian-3ubuntu1.1) with ESMTP id nA4FJlKw011553 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 4 Nov 2009 07:19:48 -0800 Received: from localhost.localdomain (localhost [127.0.0.1]) by imap1.linux-foundation.org (8.13.5.20060308/8.13.5/Debian-3ubuntu1.1) with ESMTP id nA4FJjwc030665; Wed, 4 Nov 2009 07:19:46 -0800 Message-Id: <200911041519.nA4FJjwc030665@imap1.linux-foundation.org> Subject: [patch 4/4] kconfig CROSS_COMPILE option To: linux-kbuild@vger.kernel.org Cc: akpm@linux-foundation.org, roland@redhat.com, sam@ravnborg.org From: akpm@linux-foundation.org Date: Wed, 04 Nov 2009 07:19:45 -0800 MIME-Version: 1.0 X-Spam-Status: No, hits=-3.518 required=5 tests=AWL, BAYES_00, OSDL_HEADER_SUBJECT_BRACKETED X-Spam-Checker-Version: SpamAssassin 3.2.4-osdl_revision__1.47__ X-MIMEDefang-Filter: lf$Revision: 1.188 $ X-Scanned-By: MIMEDefang 2.63 on 140.211.169.13 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org diff -puN Makefile~kconfig-cross_compile-option Makefile --- a/Makefile~kconfig-cross_compile-option +++ a/Makefile @@ -177,11 +177,14 @@ SUBARCH := $(shell uname -m | sed -e s/i # CROSS_COMPILE can be set on the command line # make CROSS_COMPILE=ia64-linux- # Alternatively CROSS_COMPILE can be set in the environment. +# A third alternative is to store a setting in .config so that plain +# "make" in the configured kernel build directory always uses that. # Default value for CROSS_COMPILE is not to prefix executables # Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile export KBUILD_BUILDHOST := $(SUBARCH) ARCH ?= $(SUBARCH) CROSS_COMPILE ?= +CROSS_COMPILE ?= $(CONFIG_CROSS_COMPILE:"%"=%) # Architecture as present in compile.h UTS_MACHINE := $(ARCH) diff -puN init/Kconfig~kconfig-cross_compile-option init/Kconfig --- a/init/Kconfig~kconfig-cross_compile-option +++ a/init/Kconfig @@ -76,6 +76,14 @@ config INIT_ENV_ARG_LIMIT variables passed to init from the kernel command line. +config CROSS_COMPILE + string "Cross-compiler tool prefix" + help + Same as running 'make CROSS_COMPILE=prefix-' but stored for + default make runs in this kernel build directory. You don't + need to set this unless you want the configured kernel build + directory to select the cross-compiler automatically. + config LOCALVERSION string "Local version - append to kernel release" help