Skip to content
Snippets Groups Projects
Commit b433beab authored by Suhas Kunnath's avatar Suhas Kunnath
Browse files

[recipes-kernel] modify the recipe to create kernel.tar.bz2

compress zImage and dtb files to a single kernel.tar.bz2 file.
parent 80a9c31b
No related branches found
No related tags found
No related merge requests found
......@@ -4,4 +4,12 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRCREV = "1c7f6c63f9d0f4c3b8ba69236beea46345af821f"
COMPATIBLE_MACHINE = "(mx6|mx7|vesta)"
\ No newline at end of file
COMPATIBLE_MACHINE = "(mx6|mx7|vesta)"
do_compress () {
cd ${DEPLOY_DIR_IMAGE}
tar -hczvf kernel.tar.bz2 zImage zImage-310-00110-0003.dtb zImage-vesta-*.dtb
}
addtask compress after do_deploy before do_build
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment