From 9f544e77a295a7275d90259556e6a0bd72322a57 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Wed, 20 Feb 2013 09:32:07 -0800 Subject: [PATCH] fix(build_library): cleanup kernel cmdline don't be quiet, talk on tty0, and remove unneeded args Change-Id: I6d49d0b119528ecb8082d38e77066691039092cb --- build_library/create_legacy_bootloader_templates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_library/create_legacy_bootloader_templates.sh b/build_library/create_legacy_bootloader_templates.sh index 73bcb4cca3..bfdd1562ab 100755 --- a/build_library/create_legacy_bootloader_templates.sh +++ b/build_library/create_legacy_bootloader_templates.sh @@ -49,8 +49,8 @@ if [[ ${FLAGS_enable_rootfs_verification} -eq ${FLAGS_TRUE} ]]; then fi # Common kernel command-line args -common_args="quiet console=tty2 init=/sbin/init boot=local rootwait ro noresume" -common_args="${common_args} noswap loglevel=1 ${FLAGS_boot_args}" +common_args="init=/sbin/init console=tty0 boot=local rootwait ro noresume" +common_args="${common_args} noswap ${FLAGS_boot_args}" # Common verified boot command-line args verity_common="dm_verity.error_behavior=${FLAGS_verity_error_behavior}"