Reputation: 55
I'm very new to the Linux kernel. I need modify the tcp cubic algorithm. What's the best way to recompile tcp_cubic.c? Download the kernel source file and recompile the entire kernel?
Upvotes: 0
Views: 659
Reputation: 43197
Make your changes, go to the linux directory (top level of the kernel source), and do
make modules bzImage
Upvotes: 1