how to export a modified kernel header

前端 未结 3 414
栀梦
栀梦 2021-01-14 08:51

I modified some files in the Linux kernel

include/linux/tcp.h
include/net/tcp.h 
net/ipv4/sysctl_net_ipv4.c
net/ipv4/tcp_output.c

Following

3条回答
  •  一生所求
    2021-01-14 09:17

    A. Copy them to somewhere the code expects to find them, such as a directory you then pass to the compiler via -I, and then make sure that the code actually includes them.

提交回复
热议问题