[oe-commits] [openembedded-core] 14/39: kernel.bbclass: allow uncompressed initramfs archives

git at git.openembedded.org git at git.openembedded.org
Thu Dec 8 10:33:12 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 7dbdb4ea91aa027866da2bd46c65fe65a25c848f
Author: Andreas Oberritter <obi at opendreambox.org>
AuthorDate: Thu Dec 1 00:36:47 2016 +0100

    kernel.bbclass: allow uncompressed initramfs archives
    
    The code failed to copy the initramfs in case it was a plain
    cpio archive.
    
    Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/kernel.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 17e85a4..71d543b 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -165,7 +165,7 @@ copy_initramfs() {
 	mkdir -p ${B}/usr
 	# Find and use the first initramfs image archive type we find
 	rm -f ${B}/usr/${INITRAMFS_IMAGE}-${MACHINE}.cpio
-	for img in cpio.gz cpio.lz4 cpio.lzo cpio.lzma cpio.xz; do
+	for img in cpio cpio.gz cpio.lz4 cpio.lzo cpio.lzma cpio.xz; do
 		if [ -e "${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE}-${MACHINE}.$img" ]; then
 			cp ${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE}-${MACHINE}.$img ${B}/usr/.
 			case $img in

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list