diff options
-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 |