mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 01:36:38 +01:00
The same change has already been applied to kernel.bbclass in commit 55989cb5: [ kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix race ] The dummy kernel should comply with it. (From OE-Core rev: 0897fd6feb19b545af2ebc148a2f6f99341841a9) Signed-off-by: Ming Liu <ming.liu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
51 lines
972 B
BlitzBasic
51 lines
972 B
BlitzBasic
SUMMARY = "Dummy Linux kernel"
|
|
DESCRIPTION = "Dummy Linux kernel, to be selected as the preferred \
|
|
provider for virtual/kernel to satisfy dependencies for situations \
|
|
where you wish to build the kernel externally from the build system."
|
|
SECTION = "kernel"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
PROVIDES += "virtual/kernel"
|
|
|
|
PACKAGES_DYNAMIC += "^kernel-module-.*"
|
|
PACKAGES_DYNAMIC += "^kernel-image-.*"
|
|
PACKAGES_DYNAMIC += "^kernel-firmware-.*"
|
|
|
|
PACKAGES += "kernel-modules"
|
|
FILES_kernel-modules = ""
|
|
ALLOW_EMPTY_kernel-modules = "1"
|
|
DESCRIPTION_kernel-modules = "Kernel modules meta package"
|
|
|
|
#COMPATIBLE_MACHINE = "your_machine"
|
|
|
|
PR = "r1"
|
|
|
|
SRC_URI = "file://COPYING.GPL"
|
|
S = "${WORKDIR}"
|
|
|
|
do_configure() {
|
|
:
|
|
}
|
|
|
|
do_compile () {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
:
|
|
}
|
|
|
|
do_bundle_initramfs() {
|
|
:
|
|
}
|
|
|
|
do_deploy() {
|
|
:
|
|
}
|
|
|
|
addtask bundle_initramfs after do_install before do_deploy
|
|
addtask deploy after do_install
|
|
|