kernel: Commit without running hooks

The hooks are pulled from the impure environment and are often broken in
our environments. There is no reason to add extra metadata or verify the
commit message as its arbitrary to turn the tarball into a git repo.

(From OE-Core rev: dd52102a6c3f69d156bfcf85827123c96f18d5a1)

Signed-off-by: William A. Kennington III <wak@google.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
William A. Kennington III
2023-10-25 15:37:10 -07:00
committed by Richard Purdie
parent 494a25d861
commit 070582a248

View File

@@ -408,7 +408,7 @@ do_kernel_checkout() {
git init
check_git_config
git add .
git commit -q -m "baseline commit: creating repo for ${PN}-${PV}"
git commit -q -n -m "baseline commit: creating repo for ${PN}-${PV}"
git clean -d -f
fi