Hello All,

I am doing some development work which very often includes editing some linux kernel files. After making these changes, i am required to re-compile the kernel for the changes to take effect in the kernel. Most of the times, the changed files are of driver/pci/ directory.

For re-compiling the kernel, I do following steps.

make clean
make bzImage
make install


Are these steps enough for the made changes to take effect properly ? Can you suggest some steps which I am missing here.

Thanks.