diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-initramfs/recipes-bsp/images | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-initramfs/recipes-bsp/images')
-rw-r--r-- | meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb | 22 | ||||
-rw-r--r-- | meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb | 7 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb new file mode 100644 index 0000000000..35eb245cea --- /dev/null +++ b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-image.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Initramfs image for kexecboot kernel" | ||
2 | DESCRIPTION = "This image provides kexecboot (linux as bootloader) and helpers." | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
5 | |||
6 | IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" | ||
7 | |||
8 | # avoid circular dependencies | ||
9 | EXTRA_IMAGEDEPENDS = "" | ||
10 | |||
11 | # We really need just kexecboot, kexec and ubiattach | ||
12 | IMAGE_INSTALL = "kexecboot kexec mtd-utils-ubifs" | ||
13 | |||
14 | # Do not pollute the initrd image with rootfs features | ||
15 | IMAGE_FEATURES = "" | ||
16 | |||
17 | IMAGE_LINGUAS = "" | ||
18 | |||
19 | FEED_DEPLOYDIR_BASE_URI = "" | ||
20 | LDCONFIGDEPEND = "" | ||
21 | |||
22 | inherit image | ||
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb new file mode 100644 index 0000000000..df97511892 --- /dev/null +++ b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require initramfs-kexecboot-image.bb | ||
2 | |||
3 | SUMMARY = "Initramfs image for kexecboot kernel (klibc-static binaries)" | ||
4 | |||
5 | # We really need just kexecboot, kexec and ubiattach | ||
6 | # statically compiled against klibc | ||
7 | IMAGE_INSTALL = "kexecboot-klibc kexec-klibc ubiattach-klibc" | ||