mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
We've been removing PR values from recipes at upgrade time for a while. In general anyone maintaining a binary distro would end up having to curate these themselves so the values in OE-Core aren't really that useful anymore. In many ways it makes sense to clear out the remaining ones (which are mostly for 'config' recipes that are unlikely to increase in PV) and leave a clean slate for anyone implementing a binary distro config. References are left in meta-selftest since the tests there do involve them and their removal upon upgrade. (From OE-Core rev: d4c346e8ab8f3cae25d1b01c7331ed9f6d4f96ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
67 lines
1.3 KiB
Clojure
67 lines
1.3 KiB
Clojure
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 = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
PROVIDES += "virtual/kernel"
|
|
|
|
inherit deploy linux-dummy
|
|
|
|
PACKAGES_DYNAMIC += "^kernel-module-.*"
|
|
PACKAGES_DYNAMIC += "^kernel-image-.*"
|
|
PACKAGES_DYNAMIC += "^kernel-firmware-.*"
|
|
|
|
PACKAGES += "kernel-modules kernel-vmlinux"
|
|
FILES:kernel-modules = ""
|
|
ALLOW_EMPTY:kernel-modules = "1"
|
|
DESCRIPTION:kernel-modules = "Kernel modules meta package"
|
|
FILES:kernel-vmlinux = ""
|
|
ALLOW_EMPTY:kernel-vmlinux = "1"
|
|
DESCRIPTION:kernel-vmlinux = "Kernel vmlinux meta package"
|
|
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
COMPATIBLE_HOST = ".*-linux"
|
|
|
|
|
|
SRC_URI = "file://COPYING.GPL"
|
|
S = "${WORKDIR}"
|
|
|
|
do_configure() {
|
|
:
|
|
}
|
|
|
|
do_compile () {
|
|
:
|
|
}
|
|
|
|
do_compile_kernelmodules() {
|
|
:
|
|
}
|
|
|
|
do_shared_workdir () {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
:
|
|
}
|
|
|
|
do_bundle_initramfs() {
|
|
:
|
|
}
|
|
|
|
do_deploy() {
|
|
:
|
|
}
|
|
|
|
addtask bundle_initramfs after do_install before do_deploy
|
|
addtask deploy after do_install
|
|
addtask shared_workdir after do_compile before do_install
|
|
addtask compile_kernelmodules
|