From e388e18b679cd3fd4d9aa24483110e77ea79bfcb Mon Sep 17 00:00:00 2001 From: Mandeep Singh Baines Date: Wed, 27 Apr 2011 13:53:39 -0700 Subject: [PATCH] build_kernel_image.sh: set default verity_depth to 0 verity_depth must be 0. No other values are supported. So changing the default to 0. Needs to go in before: http://codereview.chromium.org/6901005 BUG=chromium-os:14357 TEST=Ran build_image, mod_image_for_test.sh, mod_image_for_recovery.sh chromeos-install, and image_to_live.sh. Change-Id: I6208327d9ce68c9ba56d78e99bc145e34bee9d1d R=wad@chromium.org,scottz@chromium.org,gauravsh@chromium.org Review URL: http://codereview.chromium.org/6902061 --- build_kernel_image.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_kernel_image.sh b/build_kernel_image.sh index 59e37b48b3..34fb977fb1 100755 --- a/build_kernel_image.sh +++ b/build_kernel_image.sh @@ -64,8 +64,8 @@ DEFINE_string rootfs_hash "" \ DEFINE_integer verity_error_behavior 2 \ "Verified boot error behavior [0: I/O errors, 1: reboot, 2: nothing] \ (Default: 2)" -DEFINE_integer verity_tree_depth 1 \ - "Optional Verified boot hash tree depth. (Default: 1)" +DEFINE_integer verity_tree_depth 0 \ + "Optional Verified boot hash tree depth. (Default: 0)" DEFINE_integer verity_max_ios -1 \ "Optional number of outstanding I/O operations. (Default: -1)" DEFINE_string verity_hash_alg "sha1" \