[oe-commits] [openembedded-core] 26/40: initramfs-boot: create /dev/console

git at git.openembedded.org git at git.openembedded.org
Fri Jan 11 10:40:23 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 490d6fbd14805b6c72b525fbe8c9c6e08d796597
Author: Jacob Kroon <jacob.kroon at gmail.com>
AuthorDate: Tue Dec 25 10:20:34 2018 +0100

    initramfs-boot: create /dev/console
    
    The Yocto kernel expects a proper /dev/console to exist before running init,
    otherwise booting will fail with the message:
    
      Kernel panic - not syncing: /dev/console is missing or not a character device!
      Please ensure your rootfs is properly configured
    
    Add similar fix as was done for initramfs-framework and initramfs-live-boot
    in commits
    
      0352841cd92f6316bcac092e2fff9d28c352b36b
      1b64664f0c388f41084f5db6e46e3e68c53fb6d9
    
    Signed-off-by: Jacob Kroon <jacob.kroon at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb
index 7ae7969..29ec5ec 100644
--- a/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb
+++ b/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb
@@ -9,8 +9,13 @@ S = "${WORKDIR}"
 
 do_install() {
         install -m 0755 ${WORKDIR}/init-boot.sh ${D}/init
+
+        # Create device nodes expected by some kernels in initramfs
+        # before even executing /init.
+        install -d ${D}/dev
+        mknod -m 622 ${D}/dev/console c 5 1
 }
 
 inherit allarch
 
-FILES_${PN} += " /init "
+FILES_${PN} += "/init /dev/console"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list