[oe-commits] [openembedded-core] 06/27: runqemu: Remove disabling of high resolution timer

git at git.openembedded.org git at git.openembedded.org
Tue Oct 29 09:08:45 UTC 2019


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

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

commit f71b1a96529d658d1c6c7dc04dca1957ea647e4e
Author: Joerg Vehlow <joerg.vehlow at aox-tech.de>
AuthorDate: Fri Oct 11 08:03:57 2019 +0200

    runqemu: Remove disabling of high resolution timer
    
    The option 'highres=off' sneaked itself into the runqemu script for all
    configurations, where the root filesystem type is not 'cpio' or 'cpio.gz'.
    See: https://bugzilla.yoctoproject.org/show_bug.cgi?id=13590
    
    Signed-off-by: Joerg Vehlow <joerg.vehlow at aox-tech.de>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 scripts/runqemu | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index 46087b8..a05facd 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -1198,12 +1198,12 @@ class BaseConfig(object):
 
                 # All branches above set vm_drive.
                 self.rootfs_options = '%s -no-reboot' % vm_drive
-            self.kernel_cmdline = 'root=%s rw highres=off' % (self.get('QB_KERNEL_ROOT'))
+            self.kernel_cmdline = 'root=%s rw' % (self.get('QB_KERNEL_ROOT'))
 
         if self.fstype == 'nfs':
             self.rootfs_options = ''
             k_root = '/dev/nfs nfsroot=%s:%s,%s' % (self.nfs_server, os.path.abspath(self.rootfs), self.unfs_opts)
-            self.kernel_cmdline = 'root=%s rw highres=off' % k_root
+            self.kernel_cmdline = 'root=%s rw' % k_root
 
         if self.fstype == 'none':
             self.rootfs_options = ''

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


More information about the Openembedded-commits mailing list