[oe-commits] [openembedded-core] 18/20: runqemu: Enable virtio RNG for all platforms

git at git.openembedded.org git at git.openembedded.org
Fri Sep 9 11:08:36 UTC 2016


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

commit 51b001909f1856c45cf87091d6e4446c266d5786
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Sep 1 22:10:21 2016 +0100

    runqemu: Enable virtio RNG for all platforms
    
    We have problems where systems simply stop booting and hang. This is due
    to a lack of entropy which means ssh keys and networking can't be brought
    up. Adding in the virtio-rng passthrough support allows host entropy to
    pass into the guess and avoids these hangs.
    
    This is particularly problematic after the gnutls upgrade which starts
    using /dev/random instead of /dev/urandom but was an issue we'd occasionally
    seem before that.
    
    It particualrly affected x86 and ppc machines for some reason.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/runqemu | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/runqemu b/scripts/runqemu
index b9dbe97..fca8d1d 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -806,6 +806,9 @@ class BaseConfig(object):
 
         self.qemu_opt = "%s %s %s %s %s %s" % (qemu_bin, self.get('NETWORK_CMD'), self.qemu_opt_script, self.get('ROOTFS_OPTIONS'), self.get('QB_DTB'), self.get('QB_OPT_APPEND'))
 
+        # Enable virtio RNG else we can run out of entropy in guests
+        self.qemu_opt += " -device virtio-rng-pci"
+
         if self.serialstdio:
             logger.info("Interrupt character is '^]'")
             cmd = "stty intr ^]"

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


More information about the Openembedded-commits mailing list