diff options
author | Richard Maw <richard.maw@codethink.co.uk> | 2012-06-12 14:50:03 +0100 |
---|---|---|
committer | Richard Maw <richard.maw@codethink.co.uk> | 2012-06-12 14:50:03 +0100 |
commit | 27d413efb9ba8a45549cbb2ce8864dedef74ecc9 (patch) | |
tree | 6df5154b723d66585a748b5121dae792a764152b | |
parent | 81f7c769ddd9445f2643da61dfc0b2bc1d85eca9 (diff) | |
download | linux-27d413efb9ba8a45549cbb2ce8864dedef74ecc9.tar.gz |
linux: add morphology based on the vexpress
-rw-r--r-- | linux.morph | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/linux.morph b/linux.morph new file mode 100644 index 000000000000..0b0db764f010 --- /dev/null +++ b/linux.morph @@ -0,0 +1,22 @@ +{ + "name": "linux", + "kind": "chunk", + "configure-commands": [ + "make armada_xp_defconfig", + "scripts/config -e BTRFS_FS", + "scripts/config -e BTRFS_FS_POSIX_ACL", + "scripts/config -d BTRFS_FS_CHECK_INTEGRITY", + "scripts/config -e DEVTMPFS", + "scripts/config -e DEVTMPFS_MOUNT", + "scripts/config --set-str UEVENT_HELPER_PATH ''", + "scripts/config -e IKCONFIG", + "scripts/config -e IKCONFIG_PROC" + ], + "build-commands": [ + "make zImage" + ], + "install-commands": [ + "mkdir -p \"$DESTDIR\"/boot", + "cp arch/arm/boot/zImage \"$DESTDIR\"/boot/zImage" + ] +} |