diff options
author | Jeevan Shriram <jshriram@codeaurora.org> | 2020-03-03 09:33:40 -0800 |
---|---|---|
committer | Jeevan Shriram <jshriram@codeaurora.org> | 2020-03-03 09:38:39 -0800 |
commit | 22facdee227c13930f3091f6749d0b3921a0ce25 (patch) | |
tree | 896f0bc81f7087764f21db8b0381702aa00b7484 | |
parent | d5c37efdde6724977baa5286f53622cd6bec5b29 (diff) |
kernel/build: remove kernel sha generation on the kernel project
kernel sha is no more being used for storing the prebuilt images.
Change-Id: I2afb2e72b591d480ba0436929f7a2a3e6848801b
-rwxr-xr-x | buildkernel.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/buildkernel.sh b/buildkernel.sh index d11e7b5..e355150 100755 --- a/buildkernel.sh +++ b/buildkernel.sh @@ -247,14 +247,6 @@ copy_all_to_prebuilt() cp -p -r ${OUT_DIR}/${KERNEL_SCRIPTS} ${PREBUILT_OUT} } -extract_kernel_sha1() -{ - CUR_DIR=$(pwd) - cd ${KERNEL_DIR} - git rev-list --max-count=1 HEAD > ${KERN_SHA1_LOC} - cd ${CUR_DIR} -} - copy_from_prebuilt() { PREBUILT_OUT=$1 @@ -367,7 +359,6 @@ else modules_install copy_all_to_prebuilt ${KERNEL_BINS} archive_kernel_modules - extract_kernel_sha1 fi exit 0 |