- modify souce files(修改源文件)
- scripts/checkpatch --file(查看文件格式是否有问题)
- git status(检查需要提交的文件)
- git add (添加改动的文件到暂存区)
- git commit(提交修改并填写修改信息,修改信息要符合规范,否则patch会被拒绝)
- git format-patch -s HEAD~1(生成补丁)
- scripts/checkpatch.pl (检查patch是否有错误或告警)
- git apply --check patchfile(检查patch是否能打上)
- git send-email --to= --cc=(发邮件给维护者)