0

I'm installing dahdi on my Fedora 15 machine and when I try to build, I receive the following error

You do not appear to have the sources for the 2.6.38.6-27.fc15.x86_64 kernel installed.

The problem is, I cannot find that kernel source anywhere! yum provides kernel-devel* gives me a couple of kernel versions older and newer than this version. Does anybody know what the repository is for this kernel? Thanks

tkcsam
  • 101
  • 2

2 Answers2

1

You neither need nor want the kernel source. Install the appropriate kernel-devel package (upgrading the current kernel first if required) and try building again.

Ignacio Vazquez-Abrams
  • 45,939
  • 6
  • 79
  • 84
0

Perhaps the mirror you were using (or yum had selected) was incomplete? I see your kernel-devel package here:

https://kojipkgs.fedoraproject.org/packages/kernel/2.6.38.6/27.fc15/x86_64/

To get it manually (may use "curl" instead of "wget"):

wget https://kojipkgs.fedoraproject.org/packages/kernel/2.6.38.6/27.fc15/x86_64/kernel-devel-2.6.38.6-27.fc15.x86_64.rpm
rpm -U kernel-devel-2.6.38.6-27.fc15.x86_64.rpm
rm kernel-devel-2.6.38.6-27.fc15.x86_64.rpm -fv
Dan Armstrong
  • 821
  • 4
  • 6