[PATCH v4] kbuild, deb-pkg: support overriding userland architecture

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Asbjoern Sloth Toennesen
Date: Sunday, December 12, 2010 - 10:39 am

Usefull if building for sparc64 userland, because the
sparc and sparc64 userlands use the same 64-bit kernel,
making it impossible to always select the correct userland
architecture for the resulting debian package.

Might also be usefull, if you want a i386 userland with a amd64 kernel.

Example usage:
	make KBUILD_DEBARCH=i386 deb-pkg

LKML-reference: <alpine.DEB.2.02.1011051437500.13287@aurora.sdinet.de>
Signed-off-by: Asbjoern Sloth Toennesen <asbjorn@asbjorn.biz>
Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com>
Acked-by: maximilian attems <max@stro.at>
---
 Documentation/kbuild/kbuild.txt |    8 ++++++++
 scripts/package/builddeb        |    3 +++
 2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/Documentation/kbuild/kbuild.txt b/Documentation/kbuild/kbuild.txt
index 634c625..b146eb8 100644
--- a/Documentation/kbuild/kbuild.txt
+++ b/Documentation/kbuild/kbuild.txt
@@ -51,6 +51,14 @@ Specify the output directory when building the kernel.
 The output directory can also be specificed using "O=...".
 Setting "O=..." takes precedence over KBUILD_OUTPUT.
 
+KBUILD_DEBARCH
+--------------------------------------------------
+For the deb-pkg target, allows overriding the normal heuristics deployed by
+deb-pkg. Normally deb-pkg attempts to guess the right architecture based on
+the UTS_MACHINE variable, and on some architectures also the kernel config.
+The value of KBUILD_DEBARCH is assumed (not checked) to be a valid Debian
+architecture.
+
 ARCH
 --------------------------------------------------
 Set ARCH to the architecture to be built.
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 5d6be3f..ffe2419 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -54,6 +54,9 @@ create_package() {
 		echo "Please add support for $UTS_MACHINE to ${0} ..." >&2
 		echo "" >&2
 	esac
+	if [ -n "$KBUILD_DEBARCH" ] ; then
+		debarch="$KBUILD_DEBARCH"
+	fi
 	if [ -n "$debarch" ] ; then
 		forcearch="-DArchitecture=$debarch"
 	fi
-- 
1.7.2.3

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] kbuild, deb-pkg: fix Architecture field when cross ..., Asbjoern Sloth Toennesen, (Mon Nov 1, 4:31 pm)
Re: [PATCH] kbuild, deb-pkg: fix Architecture field when c ..., Asbjørn Sloth Tønnesen, (Wed Nov 3, 6:42 pm)
[PATCH] kbuild, deb-pkg: fix Architecture field when cross ..., Asbjoern Sloth Toennesen, (Wed Nov 3, 7:42 pm)
Re: [PATCH] kbuild, deb-pkg: fix Architecture field when c ..., Asbjørn Sloth Tønnesen, (Wed Nov 3, 8:38 pm)
[PATCH] kbuild, deb-pkg: fix Architecture field when cross ..., Asbjoern Sloth Toennesen, (Wed Nov 3, 8:44 pm)
Re: [PATCH] kbuild, deb-pkg: fix Architecture field when c ..., Asbjørn Sloth Tønnesen, (Thu Nov 4, 5:29 am)
Re: [PATCH] kbuild, deb-pkg: fix Architecture field when c ..., Asbjørn Sloth Tønnesen, (Thu Nov 4, 6:33 am)
[PATCH] kbuild, deb-pkg: select userland architectire base ..., Asbjoern Sloth Toennesen, (Fri Nov 5, 5:32 am)
Re: [PATCH] kbuild, deb-pkg: select userland architectire ..., maximilian attems, (Fri Nov 5, 5:41 am)
Re: [PATCH] kbuild, deb-pkg: select userland architectire ..., Asbjørn Sloth Tønnesen, (Fri Nov 5, 5:44 am)
Re: [PATCH] kbuild, deb-pkg: select userland architectire ..., Asbjørn Sloth Tønnesen, (Fri Nov 5, 6:29 am)
[PATCH] kbuild, deb-pkg: select userland architecture base ..., Asbjoern Sloth Toennesen, (Fri Nov 5, 6:30 am)
Re: [PATCH] kbuild, deb-pkg: select userland architecture ..., maximilian attems, (Fri Nov 5, 6:36 am)
Re: [PATCH] kbuild, deb-pkg: select userland architecture ..., Asbjørn Sloth Tønnesen, (Sat Nov 6, 12:04 pm)
[PATCH] kbuild, deb-pkg: support overriding userland archi ..., Asbjoern Sloth Toennesen, (Sat Nov 6, 12:05 pm)
Re: [PATCH] kbuild, deb-pkg: support overriding userland a ..., maximilian attems, (Fri Dec 3, 10:48 am)
Re: [PATCH] kbuild, deb-pkg: support overriding userland a ..., Asbjørn Sloth Tønnesen, (Fri Dec 3, 12:37 pm)
[PATCH v2] kbuild, deb-pkg: support overriding userland ar ..., Asbjoern Sloth Toennesen, (Wed Dec 8, 2:35 pm)
Re: [PATCH v2] kbuild, deb-pkg: support overriding userlan ..., Asbjørn Sloth Tønnesen, (Thu Dec 9, 8:23 am)
[PATCH v3] kbuild, deb-pkg: support overriding userland ar ..., Asbjoern Sloth Toennesen, (Thu Dec 9, 8:24 am)
Re: [PATCH v3] kbuild, deb-pkg: support overriding userlan ..., Asbjørn Sloth Tønnesen, (Thu Dec 9, 8:42 am)
[PATCH v4] kbuild, deb-pkg: support overriding userland ar ..., Asbjoern Sloth Toennesen, (Sun Dec 12, 10:39 am)