0

I've built a custom kernel using kernel.org, it has no .rpm file. How do I manually:

  1. Install the Modules to /lib/modules (make moduleinstall or something?)
  2. Make the initial ramdisk
  3. Update grub

I haven't seen any documentation on how to do this for CentOS.

dongle26
  • 179
  • 1
  • 1
  • 5

1 Answers1

2
  1. make modules
    make modules_install
    
  2. mkinitrd /boot/initrd-x.y.z.t.img x.y.z.t

  3. make install
quanta
  • 50,327
  • 19
  • 152
  • 213