summaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-bsp/images
diff options
context:
space:
mode:
authorAndrea Adami <andrea.adami@gmail.com>2020-04-21 17:19:31 +0200
committerKhem Raj <raj.khem@gmail.com>2020-04-21 13:03:35 -0700
commitbf41d89325f1135f928f444ddb91163de91f4313 (patch)
treed3662a29585f0e7150d3e0ea642d0726b75fbc66 /meta-initramfs/recipes-bsp/images
parentff19c7c5694f79271ae26543562e5563d4250559 (diff)
downloadmeta-openembedded-bf41d89325f1135f928f444ddb91163de91f4313.tar.gz
meta-initramfs: put images and initrdscripts in recipes-core
Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-bsp/images')
-rw-r--r--meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb22
-rw-r--r--meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb26
-rw-r--r--meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb12
3 files changed, 0 insertions, 60 deletions
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb
deleted file mode 100644
index be7350ade2..0000000000
--- a/meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb
+++ /dev/null
@@ -1,22 +0,0 @@
1# Simple initramfs image. Mostly used for live images.
2DESCRIPTION = "Small image capable of booting a device. The kernel includes \
3the Minimal RAM-based Initial Root Filesystem (initramfs), which one can use \
4to check the hardware efficiently."
5
6PACKAGE_INSTALL = "initramfs-debug busybox base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}"
7
8# Do not pollute the initrd image with rootfs features
9IMAGE_FEATURES = ""
10
11export IMAGE_BASENAME = "initramfs-debug-image"
12IMAGE_LINGUAS = ""
13
14LICENSE = "MIT"
15
16IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}"
17inherit core-image
18
19IMAGE_ROOTFS_SIZE = "8192"
20IMAGE_ROOTFS_EXTRA_SPACE = "0"
21
22BAD_RECOMMENDATIONS += "busybox-syslog"
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb
deleted file mode 100644
index 9a686f366f..0000000000
--- a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb
+++ /dev/null
@@ -1,26 +0,0 @@
1SUMMARY = "Initramfs image for kexecboot kernel"
2DESCRIPTION = "This image provides kexecboot (linux as bootloader) and helpers."
3
4inherit image
5
6IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}"
7
8# avoid circular dependencies
9EXTRA_IMAGEDEPENDS = ""
10KERNELDEPMODDEPEND = ""
11
12# We really need just kexecboot, kexec and ubiattach
13IMAGE_INSTALL = "kexecboot kexec mtd-utils-ubifs"
14
15# Do not pollute the initrd image with rootfs features
16IMAGE_FEATURES = ""
17
18IMAGE_LINGUAS = ""
19
20FEED_DEPLOYDIR_BASE_URI = ""
21LDCONFIGDEPEND = ""
22IMAGE_ROOTFS_EXTRA_SPACE = "0"
23
24# disable runtime dependency on run-postinsts -> update-rc.d
25ROOTFS_BOOTSTRAP_INSTALL = ""
26
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
deleted file mode 100644
index 3a8d9f7438..0000000000
--- a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb
+++ /dev/null
@@ -1,12 +0,0 @@
1require initramfs-kexecboot-image.bb
2
3SUMMARY = "Initramfs image for kexecboot kernel (klibc-static binaries)"
4
5# We really need just kexecboot, kexec and ubiattach
6# statically compiled against klibc
7IMAGE_INSTALL = "kexecboot-klibc kexec-klibc ubiattach-klibc"
8
9python () {
10 if d.getVar('TARGET_ARCH') == "nios2":
11 raise bb.parse.SkipRecipe("'nios2' not supported arch")
12}