mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
Commit 609d5a9ab9e58bb1c2bcc2145399fbc8b701b85a added additional initramfs functionality and created an additional task on kernel.bbclass Adding this task was missed on the linux-dummy recipe, which causes task dependency issues due to image.bbclass depending on "virtual/kernel:do_bundle_initramfs". This change adds a dummy task which resolves the dependency issue. (From OE-Core rev: c0a8c5c07e0dd6f0ae302e9a4dcf7973e73e68e1) Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
569 B
BlitzBasic
37 lines
569 B
BlitzBasic
SECTION = "kernel"
|
|
DESCRIPTION = "Dummy Linux kernel"
|
|
LICENSE = "GPL"
|
|
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
PROVIDES += "virtual/kernel"
|
|
|
|
PACKAGES_DYNAMIC += "^kernel-module-.*"
|
|
PACKAGES_DYNAMIC += "^kernel-image-.*"
|
|
|
|
#COMPATIBLE_MACHINE = "your_machine"
|
|
|
|
PR = "r1"
|
|
|
|
SRC_URI = "file://COPYING.GPL"
|
|
S = "${WORKDIR}"
|
|
|
|
do_configure() {
|
|
:
|
|
}
|
|
|
|
do_compile () {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
:
|
|
}
|
|
|
|
do_bundle_initramfs() {
|
|
:
|
|
}
|
|
do_bundle_initramfs[nostamp] = "1"
|
|
addtask bundle_initramfs after do_compile
|
|
|