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:
Daniel Verkamp 2018-10-12 15:24:56 -07:00 committed by chrome-bot
parent 56f283b297
commit 6c765fd2ac

View file

@ -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
}