]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu: Remove disabling of high resolution timer
authorJoerg Vehlow <joerg.vehlow@aox-tech.de>
Fri, 11 Oct 2019 06:03:57 +0000 (08:03 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 15 Oct 2019 13:11:08 +0000 (14:11 +0100)
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@aox-tech.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu

index 46087b8d6aceec17162066d031367d2ce8ac2093..a05facd0db6e5d631b36d4189eb940f36d952360 100755 (executable)
@@ -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 = ''