Link to home
Start Free TrialLog in
Avatar of ravitoravi
ravitoravi

asked on

linux kernel compilation

i have a doubt in kernel compliation.

we had make
make menuconfig
make dep
make clean
make bzImage

all these work fine , but make bzImage i get some error , i think so

but in make modules install

here we get error like
cpufreq.o file not found
and one more error

can any one help me , to get kernel compile

my e-mail id is : ravis@linux.net
ASKER CERTIFIED SOLUTION
Avatar of Duncan Roe
Duncan Roe
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of troopern
troopern

try doing a "make modules" before you do "make modules_install"
make module_install depends on make modules  therefore gmake should automatically run make modules before running make module_install without you having to tell it to...
troopern is right. Sorry willy134, there is no dependency relationship between any of the targets.
If you don't do everything in order, things go wrong.