1

I'm trying to compile latest stable kernel version 5.2.13 on centos 7(kernel 3.10.0). In make bzImage step, I got following error. How can I sort it out?

enter image description here

Mg Nyi Naing
  • 103
  • 3
  • 12

2 Answers2

1

It was sorted out by install openssl development package with following command on centos 7.

sudo yum install openssl-devel

Mg Nyi Naing
  • 103
  • 3
  • 12
0

Third party kernel RPMs exist for EL, mainline stable or long term support.

One of the well known repos specializing in kernel is elrepo. You don't have to use them, but they have been hacking on kernel packages for several years, their spec files might be useful.

Benefits of RPM packages include:

  • automatically installing BuildRequires when built with a tool like mock

  • installed the same way as your other packages

John Mahowald
  • 32,050
  • 2
  • 19
  • 34