wguo
wguo

Reputation: 55

how to compile TCP_cubic.c

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

Answers (1)

Joshua
Joshua

Reputation: 43197

Make your changes, go to the linux directory (top level of the kernel source), and do

make modules bzImage

Upvotes: 1

Related Questions