diff options
author | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2018-01-02 16:45:04 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-04 12:57:42 +0000 |
commit | c9b64a112329ac77f4f40f13fd43ecd0a2907356 (patch) | |
tree | 610f2e845e8897b39a2a15a72294fb32716f6f48 /meta | |
parent | d3f629e7dc1643c16cbd487212c0afa387a4b847 (diff) | |
download | poky-c9b64a112329ac77f4f40f13fd43ecd0a2907356.tar.gz |
kernel-fitimage.bbclass: Fix bad image type replacement for microblaze
When using kernel-fitimage class with microblaze, the image type has to be
linux.bin not zImage. This patch fixes the bad image type replacement
for microblaze
(From OE-Core rev: 4e0903e2f71658d595ccb1fa9dddf0f73b373f7e)
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel-fitimage.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 9baf399f2e..a50f8a18ee 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b/meta/classes/kernel-fitimage.bbclass | |||
@@ -14,6 +14,8 @@ python __anonymous () { | |||
14 | replacementtype = "vmlinuz.bin" | 14 | replacementtype = "vmlinuz.bin" |
15 | elif uarch == "x86": | 15 | elif uarch == "x86": |
16 | replacementtype = "bzImage" | 16 | replacementtype = "bzImage" |
17 | elif uarch == "microblaze": | ||
18 | replacementtype = "linux.bin" | ||
17 | else: | 19 | else: |
18 | replacementtype = "zImage" | 20 | replacementtype = "zImage" |
19 | 21 | ||