You should read The Linux kernel in a nutshell, here is a direct link to a compressed version;
http://www.kernel.org/pub/linux/kern...kn_pdf.tar.bz2
One need to create a configuration for the kernel, you seem to have missed this step. For the Red Hat family the steps in order are;
make mrproper
make oldconfig
make menuconfig
make
make modules_install
make install
The
make oldconfig will create a configuration based on your hardware. The
make menuconfig step is where one can check and make additional tweaks and/or changes before building.
After one is done and are happy with the new kernel then one can go back and run
make rpm. One can then install this kernel rpm package only to the rpm database if desired. No need to install what is already installed.
rpm -ivh --justdb kernel*.rpm
.