mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
32b4237a27
test case: zaurus.inc
IMAGE_FSTYPES ?= "tar.gz jffs2 jffs2.sum ubi ubifs"
IMAGE_FSTYPES_collie ?= "tar.gz jffs2 jffs2.sum"
INITRAMFS_FSTYPES ?= "cpio.gz cpio.xz"
The last assignment IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" did in fact
reset the value to IMAGE_FSTYPES_collie, thus not producing cpio.gz / cpio.xz.
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit cdce92b4e9)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
31 lines
800 B
BlitzBasic
31 lines
800 B
BlitzBasic
SUMMARY = "Initramfs image for kexecboot kernel"
|
|
DESCRIPTION = "This image provides kexecboot (linux as bootloader) and helpers."
|
|
|
|
# Some BSPs use IMAGE_FSTYPES_<machine override> which would override
|
|
# an assignment to IMAGE_FSTYPES so we need anon python
|
|
python () {
|
|
d.setVar("IMAGE_FSTYPES", d.getVar("INITRAMFS_FSTYPES"))
|
|
}
|
|
|
|
inherit image
|
|
|
|
# avoid circular dependencies
|
|
EXTRA_IMAGEDEPENDS = ""
|
|
KERNELDEPMODDEPEND = ""
|
|
|
|
# We really need just kexecboot, kexec and ubiattach
|
|
IMAGE_INSTALL = "kexecboot kexec mtd-utils-ubifs"
|
|
|
|
# Do not pollute the initrd image with rootfs features
|
|
IMAGE_FEATURES = ""
|
|
|
|
IMAGE_LINGUAS = ""
|
|
|
|
FEED_DEPLOYDIR_BASE_URI = ""
|
|
LDCONFIGDEPEND = ""
|
|
IMAGE_ROOTFS_EXTRA_SPACE = "0"
|
|
|
|
# disable runtime dependency on run-postinsts -> update-rc.d
|
|
ROOTFS_BOOTSTRAP_INSTALL = ""
|
|
|