Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(636)

Unified Diff: build_kernel_image.sh

Issue 6290011: add quiet to arm bootargs (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git@master
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build_kernel_image.sh
diff --git a/build_kernel_image.sh b/build_kernel_image.sh
index 08cca4c726bc1f57f9982bc60f10575ddb6ce90f..5db6bca155ae418247a687473ae709aa6def3b5c 100755
--- a/build_kernel_image.sh
+++ b/build_kernel_image.sh
@@ -217,7 +217,7 @@ elif [[ "${FLAGS_arch}" = "arm" ]]; then
script_size=16
# Build boot script image
- echo -n 'setenv bootargs ${bootargs} ' > "${kernel_script}"
+ echo -n 'setenv bootargs ${bootargs} quiet ' > "${kernel_script}"
Kenneth Waters 2011/01/26 18:42:27 use echo quiet >> "${FLAGS_working_dir}/boot.confi
tr '\n' ' ' <"${FLAGS_working_dir}/boot.config" >> "${kernel_script}"
echo >> "${kernel_script}"
printf 'read ${devtype} ${devnum}:${kernelpart} ${loadaddr} %x %x\n' \
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698