diff options
| -rw-r--r-- | Documentation/kbuild/kbuild.txt | 8 | ||||
| -rw-r--r-- | scripts/package/builddeb | 3 |
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. | |||
| 51 | The output directory can also be specificed using "O=...". | 51 | The output directory can also be specificed using "O=...". |
| 52 | Setting "O=..." takes precedence over KBUILD_OUTPUT. | 52 | Setting "O=..." takes precedence over KBUILD_OUTPUT. |
| 53 | 53 | ||
| 54 | KBUILD_DEBARCH | ||
| 55 | -------------------------------------------------- | ||
| 56 | For the deb-pkg target, allows overriding the normal heuristics deployed by | ||
| 57 | deb-pkg. Normally deb-pkg attempts to guess the right architecture based on | ||
| 58 | the UTS_MACHINE variable, and on some architectures also the kernel config. | ||
| 59 | The value of KBUILD_DEBARCH is assumed (not checked) to be a valid Debian | ||
| 60 | architecture. | ||
| 61 | |||
| 54 | ARCH | 62 | ARCH |
| 55 | -------------------------------------------------- | 63 | -------------------------------------------------- |
| 56 | Set ARCH to the architecture to be built. | 64 | Set 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 |
