summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-06-12 09:21:41 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2012-06-12 09:21:41 +0100
commitd6da0fcabe24ae837560f42e6dd8ead0a87a450c (patch)
tree04a9d7cb43da910740791b9802927cbff649fe87
parenta116f97242e5b603043f60bbda4b8316dc900c4b (diff)
downloadlinux-d6da0fcabe24ae837560f42e6dd8ead0a87a450c.tar.gz
morph: set ARCH variable
It fails to build the zImage because No rule to make target `include/config/auto.conf' Previous times building have set ARCH=arm, so that may have been the problem.
-rw-r--r--linux.morph4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux.morph b/linux.morph
index f01b9a51846a..a283aedcd2cc 100644
--- a/linux.morph
+++ b/linux.morph
@@ -2,7 +2,7 @@
"name": "linux",
"kind": "chunk",
"configure-commands": [
- "make vexpress_defconfig",
+ "make ARCH=arm vexpress_defconfig",
"scripts/config -e BTRFS_FS",
"scripts/config -e BTRFS_FS_POSIX_ACL",
"scripts/config -e DEVTMPFS",
@@ -12,7 +12,7 @@
"scripts/config -e IKCONFIG_PROC"
],
"build-commands": [
- "make zImage"
+ "make ARCH=arm zImage"
],
"install-commands": [
"mkdir -p \"$DESTDIR\"/boot",