diff options
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 46087b8d6a..a05facd0db 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -1198,12 +1198,12 @@ class BaseConfig(object): | |||
1198 | 1198 | ||
1199 | # All branches above set vm_drive. | 1199 | # All branches above set vm_drive. |
1200 | self.rootfs_options = '%s -no-reboot' % vm_drive | 1200 | self.rootfs_options = '%s -no-reboot' % vm_drive |
1201 | self.kernel_cmdline = 'root=%s rw highres=off' % (self.get('QB_KERNEL_ROOT')) | 1201 | self.kernel_cmdline = 'root=%s rw' % (self.get('QB_KERNEL_ROOT')) |
1202 | 1202 | ||
1203 | if self.fstype == 'nfs': | 1203 | if self.fstype == 'nfs': |
1204 | self.rootfs_options = '' | 1204 | self.rootfs_options = '' |
1205 | k_root = '/dev/nfs nfsroot=%s:%s,%s' % (self.nfs_server, os.path.abspath(self.rootfs), self.unfs_opts) | 1205 | k_root = '/dev/nfs nfsroot=%s:%s,%s' % (self.nfs_server, os.path.abspath(self.rootfs), self.unfs_opts) |
1206 | self.kernel_cmdline = 'root=%s rw highres=off' % k_root | 1206 | self.kernel_cmdline = 'root=%s rw' % k_root |
1207 | 1207 | ||
1208 | if self.fstype == 'none': | 1208 | if self.fstype == 'none': |
1209 | self.rootfs_options = '' | 1209 | self.rootfs_options = '' |