mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-01-28 19:29:20 +00:00
aarch64: remove reboot=k kernel cmdline option
The "reboot" option is specific to x86 (reboot=k forces use of the i8042 keyboard controller to initiate a reset). Remove the unnecessary option from the aarch64 command line. BUG=None TEST=Stop and restart VM on Kevin Change-Id: Ic91c9a03491a6620d6f88ea0ada12f637f402840 Signed-off-by: Daniel Verkamp <dverkamp@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1279268 Reviewed-by: Sonny Rao <sonnyrao@chromium.org> Reviewed-by: Stephen Barber <smbarber@chromium.org>
This commit is contained in:
parent
56f283b297
commit
6c765fd2ac
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ impl AArch64 {
|
|||
fn get_base_linux_cmdline() -> kernel_cmdline::Cmdline {
|
||||
let mut cmdline = kernel_cmdline::Cmdline::new(sys_util::pagesize());
|
||||
cmdline
|
||||
.insert_str("console=ttyS0 reboot=k panic=1")
|
||||
.insert_str("console=ttyS0 panic=1")
|
||||
.unwrap();
|
||||
cmdline
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue