cmdline: update to use OVMF
Since now ACRN is using OVMF to launch UOS, it will greatly simplify setup steps if we could upstream kernel cmdline to RTVM/UOS/SOS kernel cmdline. We are using below cmdline for validation every day. Requested-by: "Xie, Nanlin" <nanlin.xie@intel.com>
This commit is contained in:
parent
a83fc273a7
commit
fa87062e55
|
@ -1,16 +1,28 @@
|
||||||
quiet
|
quiet
|
||||||
|
console=hvc0
|
||||||
console=tty0
|
console=tty0
|
||||||
console=ttyS0,115200n8
|
console=ttyS0
|
||||||
|
consoleblank=0
|
||||||
cryptomgr.notests
|
cryptomgr.notests
|
||||||
|
i915.avail_planes_per_pipe="64 448 8"
|
||||||
|
i915.enable_guc=0
|
||||||
|
i915.enable_guc_loading=0
|
||||||
|
i915.enable_guc_submission=0
|
||||||
|
i915.enable_hangcheck=0
|
||||||
i915.nuclear_pageflip=1
|
i915.nuclear_pageflip=1
|
||||||
|
ignore_loglevel
|
||||||
init=/usr/lib/systemd/systemd-bootchart
|
init=/usr/lib/systemd/systemd-bootchart
|
||||||
initcall_debug
|
initcall_debug
|
||||||
intel_iommu=igfx_off
|
intel_iommu=igfx_off
|
||||||
kvm-intel.nested=1
|
kvm-intel.nested=1
|
||||||
|
log_buf_len=16M
|
||||||
|
maxcpus=2
|
||||||
no_timer_check
|
no_timer_check
|
||||||
|
nohpet
|
||||||
noreplace-smp
|
noreplace-smp
|
||||||
rcu_nocbs=0-64
|
rcu_nocbs=0-64
|
||||||
rcupdate.rcu_expedited=1
|
rcupdate.rcu_expedited=1
|
||||||
rootfstype=ext4,btrfs,xfs
|
rootfstype=ext4,btrfs,xfs
|
||||||
|
rootwait
|
||||||
tsc=reliable
|
tsc=reliable
|
||||||
rw
|
rw
|
||||||
|
|
|
@ -1,19 +1,26 @@
|
||||||
quiet
|
quiet
|
||||||
console=tty0
|
console=tty0
|
||||||
console=ttyS0,115200n8
|
console=ttyS0,115200n8
|
||||||
|
consoleblank=0
|
||||||
cryptomgr.notests
|
cryptomgr.notests
|
||||||
|
hvlog=2M@0x1FE00000
|
||||||
i915.avail_planes_per_pipe=0x01010F
|
i915.avail_planes_per_pipe=0x01010F
|
||||||
i915.domain_plane_owners=0x011111110000
|
i915.domain_plane_owners=0x011111110000
|
||||||
|
i915.enable_guc=0
|
||||||
i915.enable_gvt=1
|
i915.enable_gvt=1
|
||||||
i915.nuclear_pageflip=1
|
i915.nuclear_pageflip=1
|
||||||
|
ignore_loglevel
|
||||||
init=/usr/lib/systemd/systemd-bootchart
|
init=/usr/lib/systemd/systemd-bootchart
|
||||||
initcall_debug
|
initcall_debug
|
||||||
intel_iommu=igfx_off
|
intel_iommu=igfx_off
|
||||||
kvm-intel.nested=1
|
kvm-intel.nested=1
|
||||||
|
memmap=2M$0x1FE00000
|
||||||
|
no_timer_check
|
||||||
no_timer_check
|
no_timer_check
|
||||||
noreplace-smp
|
noreplace-smp
|
||||||
rcu_nocbs=0-64
|
rcu_nocbs=0-64
|
||||||
rcupdate.rcu_expedited=1
|
rcupdate.rcu_expedited=1
|
||||||
rootfstype=ext4,btrfs,xfs
|
rootfstype=ext4,btrfs,xfs
|
||||||
|
rootwait
|
||||||
tsc=reliable
|
tsc=reliable
|
||||||
rw
|
rw
|
||||||
|
|
Loading…
Reference in New Issue