diff options
author | Dmitry Eremin-Solenikov <dmitry_eremin@mentor.com> | 2015-04-02 18:23:02 +0300 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-04-13 12:55:51 +0200 |
commit | f3efc4f94fce21e0d659a758a2b33794fc41bf52 (patch) | |
tree | 16effae99a31eec1a47ef66416f2e700e3c9f737 /meta-initramfs/recipes-bsp | |
parent | a94da017797e82d62484ffbced93108ce5830de1 (diff) | |
download | meta-openembedded-f3efc4f94fce21e0d659a758a2b33794fc41bf52.tar.gz |
initramfs-debug-image: tiny debugging initramfs image
A tiny initramfs image suitable for initial bringup of the hardware.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin@mentor.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-bsp')
-rw-r--r-- | meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb new file mode 100644 index 000000000..8e87c19a2 --- /dev/null +++ b/meta-initramfs/recipes-bsp/images/initramfs-debug-image.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | # Simple initramfs image. Mostly used for live images. | ||
2 | DESCRIPTION = "Small image capable of booting a device. The kernel includes \ | ||
3 | the Minimal RAM-based Initial Root Filesystem (initramfs), which one can use \ | ||
4 | to check the hardware efficiently." | ||
5 | |||
6 | PACKAGE_INSTALL = "initramfs-debug busybox base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}" | ||
7 | |||
8 | # Do not pollute the initrd image with rootfs features | ||
9 | IMAGE_FEATURES = "" | ||
10 | |||
11 | export IMAGE_BASENAME = "initramfs-debug-image" | ||
12 | IMAGE_LINGUAS = "" | ||
13 | |||
14 | LICENSE = "MIT" | ||
15 | |||
16 | IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" | ||
17 | inherit core-image | ||
18 | |||
19 | IMAGE_ROOTFS_SIZE = "8192" | ||
20 | |||
21 | BAD_RECOMMENDATIONS += "busybox-syslog" | ||