From 12f08836cf84d26f83cd7aa4839c5d5eec113c32 Mon Sep 17 00:00:00 2001 From: Asbjoern Sloth Toennesen Date: Sun, 12 Dec 2010 17:39:40 +0000 Subject: [PATCH] --- yaml --- r: 227672 b: refs/heads/master c: 55f88eccf9c288eed2f93f9ca7d7fe4dd2da762e h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/Documentation/kbuild/kbuild.txt | 8 ++++++++ trunk/scripts/package/builddeb | 3 +++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 91bc240b57fe..dd651ac75886 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 10f26fa64200095af0e5d80a980e47877865e4b7 +refs/heads/master: 55f88eccf9c288eed2f93f9ca7d7fe4dd2da762e diff --git a/trunk/Documentation/kbuild/kbuild.txt b/trunk/Documentation/kbuild/kbuild.txt index 634c625da8ce..b146eb86e498 100644 --- a/trunk/Documentation/kbuild/kbuild.txt +++ b/trunk/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/trunk/scripts/package/builddeb b/trunk/scripts/package/builddeb index 5d6be3f5e7f7..ffe24194b763 100644 --- a/trunk/scripts/package/builddeb +++ b/trunk/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