From e0b7551f7bb66b68be752600783859cd1f22e78c Mon Sep 17 00:00:00 2001 From: Olof Johansson Date: Wed, 26 Jan 2011 14:31:26 -0800 Subject: [PATCH] add quiet to arm bootargs Not printing on the uart makes a huge difference in boot time performance. Since it's easy to re-enable again for those debugging boot time issues, let's disable it by default. It's how x86 does it as well. Change-Id: Idb4af8d98434e70ee1389b3579c220da34be9c3b BUG=chromium-os:11351 TEST=Build image and boot system Review URL: http://codereview.chromium.org/6290011 --- build_kernel_image.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build_kernel_image.sh b/build_kernel_image.sh index 08cca4c726..7e3a88175c 100755 --- a/build_kernel_image.sh +++ b/build_kernel_image.sh @@ -110,6 +110,10 @@ fi cat < "${FLAGS_working_dir}/boot.config" root=${FLAGS_root} +quiet +loglevel=1 +rootwait +ro dm_verity.error_behavior=${FLAGS_verity_error_behavior} dm_verity.max_bios=${FLAGS_verity_max_ios} dm_verity.dev_wait=${dev_wait} @@ -131,17 +135,13 @@ if [[ "${FLAGS_arch}" = "x86" ]]; then mkdir -p ${FLAGS_working_dir} cat < "${FLAGS_working_dir}/config.txt" -quiet console=tty2 init=/sbin/init add_efi_memmap boot=local -rootwait -ro noresume noswap i915.modeset=1 -loglevel=1 cros_secure kern_guid=%U tpm_tis.force=1