1SUMMARY = "Initramfs image for kexecboot kernel"
2DESCRIPTION = "This image provides kexecboot (linux as bootloader) and helpers."
3
4# Some BSPs use IMAGE_FSTYPES_<machine override> which would override
5# an assignment to IMAGE_FSTYPES so we need anon python
6python () {
7    d.setVar("IMAGE_FSTYPES", d.getVar("INITRAMFS_FSTYPES"))
8}
9
10inherit image
11
12# avoid circular dependencies
13EXTRA_IMAGEDEPENDS = ""
14KERNELDEPMODDEPEND = ""
15
16# We really need just kexecboot, kexec and ubiattach
17IMAGE_INSTALL = "kexecboot kexec mtd-utils-ubifs"
18
19# Do not pollute the initrd image with rootfs features
20IMAGE_FEATURES = ""
21
22IMAGE_LINGUAS = ""
23
24FEED_DEPLOYDIR_BASE_URI = ""
25LDCONFIGDEPEND = ""
26IMAGE_ROOTFS_EXTRA_SPACE = "0"
27
28# disable runtime dependency on run-postinsts -> update-rc.d
29ROOTFS_BOOTSTRAP_INSTALL = ""
30
31