From: Andreas Oberritter <obi@opendreambox.org>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 5/5] kernel.bbclass: fix kernel_do_compile for KERNEL_IMAGETYPE = "vmlinux.gz" on mips
Date: Thu, 1 Dec 2016 00:36:51 +0100 [thread overview]
Message-ID: <1480549011-12168-5-git-send-email-obi@opendreambox.org> (raw)
In-Reply-To: <1480549011-12168-1-git-send-email-obi@opendreambox.org>
The target directory didn't exist.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
---
meta/classes/kernel.bbclass | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index b21cdbc..d07f69c 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -264,6 +264,7 @@ kernel_do_compile() {
oe_runmake ${typeformake} CC="${KERNEL_CC}" LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS} $use_alternate_initrd
for type in ${KERNEL_IMAGETYPES} ; do
if test "${typeformake}.gz" = "${type}"; then
+ mkdir -p "${KERNEL_OUTPUT_DIR}"
gzip -9c < "${typeformake}" > "${KERNEL_OUTPUT_DIR}/${type}"
break;
fi
--
2.7.4
prev parent reply other threads:[~2016-11-30 23:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-30 23:36 [PATCH 1/5] kernel.bbclass: allow uncompressed initramfs archives Andreas Oberritter
2016-11-30 23:36 ` [PATCH 2/5] kernel.bbclass: Use real filenames in kernel packages Andreas Oberritter
2016-11-30 23:36 ` [PATCH 3/5] kernel.bbclass: Avoid wildcards for kernel images Andreas Oberritter
2016-11-30 23:36 ` [PATCH 4/5] kernel.bbclass: do not copy bundled initramfs to /boot Andreas Oberritter
2016-11-30 23:36 ` Andreas Oberritter [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1480549011-12168-5-git-send-email-obi@opendreambox.org \
--to=obi@opendreambox.org \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox