scripts/kernel_bump: adjust commit messages

Due to the recent changes with the formality checks kernel_bump commit
messages no-longer pass them.

Adjust these messages to follow the updated checks:
- start the first word after prefix with lower-case
- reduce the overall subject length by removing the redundant 'kernel'

Signed-off-by: George Sapkin <george@sapk.in>
Link: https://github.com/openwrt/openwrt/pull/21012
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
George Sapkin 2025-12-01 16:57:00 +02:00 committed by Hauke Mehrtens
parent c9553caa0e
commit a703b9100e

View file

@ -162,14 +162,14 @@ bump_kernel()
git commit \ git commit \
--signoff \ --signoff \
--message "kernel/${platform_name}: Create kernel files for v${target_version} (from v${source_version})" \ --message "kernel/${platform_name}: create files for v${target_version} (from v${source_version})" \
--message 'This is an automatically generated commit.' \ --message 'This is an automatically generated commit.' \
--message 'When doing `git bisect`, consider `git bisect --skip`.' --message 'When doing `git bisect`, consider `git bisect --skip`.'
git checkout 'HEAD~' "${_target_dir}" git checkout 'HEAD~' "${_target_dir}"
git commit \ git commit \
--signoff \ --signoff \
--message "kernel/${platform_name}: Restore kernel files for v${source_version}" \ --message "kernel/${platform_name}: restore files for v${source_version}" \
--message "$(printf "This is an automatically generated commit which aids following Kernel patch\nhistory, as git will see the move and copy as a rename thus defeating the\npurpose.\n\nFor the original discussion see:\nhttps://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html")" --message "$(printf "This is an automatically generated commit which aids following Kernel patch\nhistory, as git will see the move and copy as a rename thus defeating the\npurpose.\n\nFor the original discussion see:\nhttps://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html")"
git switch "${initial_branch:?Unable to switch back to original branch. Quitting.}" git switch "${initial_branch:?Unable to switch back to original branch. Quitting.}"
GIT_EDITOR=true git merge --no-ff '__openwrt_kernel_files_mover' GIT_EDITOR=true git merge --no-ff '__openwrt_kernel_files_mover'