summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2013-02-26 15:10:20 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2013-02-26 15:10:20 +0000
commit587641c6973db1a81ab9dc18b8c49e307501d106 (patch)
tree51e01f13b121cacc13cbefb8d94941e0acea9efb
parent4f1aecf5a8595a1e0d429bff35b945375dc83394 (diff)
downloadlinux-baserock/arm/bjdooks/linux37-be8-1.tar.gz
This is taken from baserock/arm/calxeda_highbank at ref: 970c008c0abc11f5465f59432a590221211d5e43 Changed to enable BE8 on LE (big endian, with little-endian U-Boot).
-rw-r--r--linux.morph35
1 files changed, 35 insertions, 0 deletions
diff --git a/linux.morph b/linux.morph
new file mode 100644
index 000000000000..ce9be147a6a1
--- /dev/null
+++ b/linux.morph
@@ -0,0 +1,35 @@
+{
+ "name": "linux",
+ "kind": "chunk",
+ "configure-commands": [
+ "make multi_v7_defconfig",
+ "scripts/config -e CPU_BIG_ENDIAN",
+ "scripts/config -e CPU_ENDIAN_BE8",
+ "scripts/config -e CPU_BE8_BOOT_LE",
+ "scripts/config -e IP_MULTICAST",
+ "scripts/config -e IP_PNP",
+ "scripts/config -e IP_PNP_DHCP",
+ "scripts/config -e IP_PNP_BOOTP",
+ "scripts/config -e NETWORK_FILESYSTEMS",
+ "scripts/config -e NFS_FS",
+ "scripts/config -e NFS_V3",
+ "scripts/config -e ROOT_NFS",
+ "scripts/config -e LOCKD",
+ "scripts/config -e LOCKD_V4",
+ "scripts/config -e NFS_COMMON",
+ "scripts/config -e SUNRPC",
+ "scripts/config -e BTRFS_FS",
+ "scripts/config -e DEVTMPFS_MOUNT",
+ "scripts/config --set-str UEVENT_HELPER_PATH ''",
+ "scripts/config -e IKCONFIG",
+ "scripts/config -e IKCONFIG_PROC",
+ "yes '' | make oldconfig"
+ ],
+ "build-commands": [
+ "make zImage"
+ ],
+ "install-commands": [
+ "mkdir -p \"$DESTDIR\"/boot",
+ "cp arch/arm/boot/zImage \"$DESTDIR\"/boot/zImage"
+ ]
+}