aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/kbuild/kbuild.txt8
-rw-r--r--scripts/package/builddeb3
2 files changed, 11 insertions, 0 deletions
diff --git a/Documentation/kbuild/kbuild.txt b/Documentation/kbuild/kbuild.txt
index 634c625da8ce..b146eb86e498 100644
--- a/Documentation/kbuild/kbuild.txt
+++ b/Documentation/kbuild/kbuild.txt
@@ -51,6 +51,14 @@ Specify the output directory when building the kernel.
51The output directory can also be specificed using "O=...". 51The output directory can also be specificed using "O=...".
52Setting "O=..." takes precedence over KBUILD_OUTPUT. 52Setting "O=..." takes precedence over KBUILD_OUTPUT.
53 53
54KBUILD_DEBARCH
55--------------------------------------------------
56For the deb-pkg target, allows overriding the normal heuristics deployed by
57deb-pkg. Normally deb-pkg attempts to guess the right architecture based on
58the UTS_MACHINE variable, and on some architectures also the kernel config.
59The value of KBUILD_DEBARCH is assumed (not checked) to be a valid Debian
60architecture.
61
54ARCH 62ARCH
55-------------------------------------------------- 63--------------------------------------------------
56Set ARCH to the architecture to be built. 64Set ARCH to the architecture to be built.
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 5d6be3f5e7f7..ffe24194b763 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -54,6 +54,9 @@ create_package() {
54 echo "Please add support for $UTS_MACHINE to ${0} ..." >&2 54 echo "Please add support for $UTS_MACHINE to ${0} ..." >&2
55 echo "" >&2 55 echo "" >&2
56 esac 56 esac
57 if [ -n "$KBUILD_DEBARCH" ] ; then
58 debarch="$KBUILD_DEBARCH"
59 fi
57 if [ -n "$debarch" ] ; then 60 if [ -n "$debarch" ] ; then
58 forcearch="-DArchitecture=$debarch" 61 forcearch="-DArchitecture=$debarch"
59 fi 62 fi