2010-04-18 19:46:59

by Gene Heskett

[permalink] [raw]
Subject: Module.symvers file

Greetings all;

I just found that a make all in 2.6.34-rc4 will generate the Module.symvers
file. But my normal build and install does not.

What do I need to add to my regular 'makeit' file in order to have this file
built by a normal build?

Thanks.

--
Cheers, Gene
"There are four boxes to be used in defense of liberty:
soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
Over the shoulder supervision is more a need of the manager than the
programming task.


2010-04-19 13:11:14

by Michal Marek

[permalink] [raw]
Subject: Re: Module.symvers file

On 18.4.2010 21:46, Gene Heskett wrote:
> Greetings all;
>
> I just found that a make all in 2.6.34-rc4 will generate the Module.symvers
> file. But my normal build and install does not.

You need to run make vmlinux and make modules (or simply make all) to
generate a full list of exported symbols. Only doing one of the steps
will generate a partial list, obviously.

Michal