当前位置:   article > 正文

linux内核的补丁生成与应用

linux内核的补丁生成与应用

修改linux内核源码生成补丁文件

进入目录修改源码:

$ cd /home/jiejie/linux-imx/
  • 1

查看修改的内容

$ git status 

On branch imx_4.1.15_2.0.0_ga
Your branch is ahead of 'origin/imx_4.1.15_2.0.0_ga' by 5 commits.
  (use "git push" to publish your local commits)

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        arch/arm/configs/imx_v7_jie_defconfig
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

记录修改

$ git add .

$ git commit  -m "add jiejie imx_v7_jie_defconfig file"

[imx_4.1.15_2.0.0_ga 39b3787cbadf] add jiejie imx_v7_jie_defconfig file
 1 file changed, 4293 insertions(+)
 create mode 100644 arch/arm/configs/imx_v7_jie_defconfig
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

生成补丁文件

  1. 生成两个commit间的修改(包含两个commit)
git format-patch <r1>..<r2>
如:
git format-patch xxxxx..xxxxx -o patch
  • 1
  • 2
  • 3
  1. 生成单个commit的补丁
git format-patch -1 <r1>
  • 1
  1. 从指定commit后的修改(不包含该commit)
git format-patch <r1>
  • 1

生成补丁

$ git format-patch 30278abfe0977b1d2f065271ce1ea23c0e2d1b6e
  • 1

可以看到生成的补丁在当前目录下。

给linux内核源码打补丁

进入目录:

$ cd /home/jiejie/linux-imx/
  • 1

查看git分支、版本、log

$ git branch 
* imx_4.1.15_2.0.0_ga
  • 1
  • 2

确认log

$ git log
# commit 30278abfe0977b1d2f065271ce1ea23c0e2d1b6e
# Author: Robby Cai <robby.cai@nxp.com>
# Date:   Thu May 4 14:52:24 2017 +0800
  • 1
  • 2
  • 3
  • 4

打补丁前确保内容没有被yocto修改,如果修改了就还原。

$ git status
  • 1

还原

$ git reset --hard imx_4.1.15_2.0.0_ga
# HEAD is now at 30278ab MLK-14762 ARM: dts: imx6sll-evk: correct gpio pin for lcd power control
  • 1
  • 2

打补丁

$ git am "补丁"
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/804730
推荐阅读
相关标签
  

闽ICP备14008679号