diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2016-12-20 23:08:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 14:40:19 +0000 |
commit | 3378c322247f5c261f40d06480379da9a24e3082 (patch) | |
tree | 6c624a5bf54455e25adf0cacaf8d6bed608d6779 /meta | |
parent | 97237259a9acb9a1511823914dea52b9719fbafd (diff) | |
download | openembedded-core-3378c322247f5c261f40d06480379da9a24e3082.tar.gz openembedded-core-3378c322247f5c261f40d06480379da9a24e3082.tar.bz2 openembedded-core-3378c322247f5c261f40d06480379da9a24e3082.zip |
core-image-tiny-initramfs: Fix error message shown after a successful initrd boot
When booting core-image-tiny-initramfs, since we want to live on initrd,
on purpose, we never find a rootfs image to switch root to,
this causes init to show an error as it would with other images,
this patch replaces the message shown to the user, avoiding confusion
when it was indeed a successful boot.
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/images/core-image-tiny-initramfs.bb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/recipes-core/images/core-image-tiny-initramfs.bb b/meta/recipes-core/images/core-image-tiny-initramfs.bb index 846d58930e..184727ddf7 100644 --- a/meta/recipes-core/images/core-image-tiny-initramfs.bb +++ b/meta/recipes-core/images/core-image-tiny-initramfs.bb @@ -28,3 +28,15 @@ BAD_RECOMMENDATIONS += "busybox-syslog" # Use the same restriction as initramfs-live-install COMPATIBLE_HOST = "(i.86|x86_64).*-linux" + +python tinyinitrd () { + # Modify our init file so the user knows we drop to shell prompt on purpose + newinit = None + with open(d.expand('${IMAGE_ROOTFS}/init'), 'r') as init: + newinit = init.read() + newinit = newinit.replace('Cannot find $ROOT_IMAGE file in /run/media/* , dropping to a shell ', 'Poky Tiny Reference Distribution:') + with open(d.expand('${IMAGE_ROOTFS}/init'), 'w') as init: + init.write(newinit) +} + +IMAGE_PREPROCESS_COMMAND += "tinyinitrd;" |