You are not logged in.
Pages: 1
I've been trying to setup my sound card and I keep running into problems, the following is the output I receive. My card is a SoundBlaster Audigy MP3+ card btw.
[root@phineas emu10k1-v0.20a]# make
make -Cscripts
Make[1]: Entering directory '/home/zb/Updates/emu10k1-v0.20a/scripts'
cc -I/lib/modules/'uname -r' /build/include get_version.c -o get_version
make -f /home/zb/Updates/emu10k1-v0.20a/scripts/Makefile.get_options:17: Makefile: No such file or directory
make[2]: *** No rule to make target 'Makefile'. Stop.
make[2[: Leaving directory '/usr/src/linux'
make[1]: ***[get_options] Error 2
make[1]: Leaving directory '/home/zb/Updates/emu10k1-v0.20a/scripts'
make: *** [opts] Error 2
[root@phineas emu10k1-v0.20a]#
Anyone got any ideas?
"America is all about speed. Hot, nasty, bad ass speed." - Eleanor Roosevelt
Registered Linux User 356244.
If you liked what you read, certify me at Advogato!
Offline
i don't have the source handy but from that output it seems that you do not have a valid makefile to compile the source. are you required to run "./configure" prior to make? sorry i am not familiar with setting up these cards so that is all i can think of.
AKA uknowme
I am not your friend
Offline
There's no configure file, you just type "make", then "make all", and then you type "make install" and it worx... usually lol. I haven't gotten it working on here yet, just curious as to if anyone knows whats up with the output.
"America is all about speed. Hot, nasty, bad ass speed." - Eleanor Roosevelt
Registered Linux User 356244.
If you liked what you read, certify me at Advogato!
Offline
Maybe I'm reading it wrong, but it might be looking for the kernel source in /usr/src/linux (understandable place to look for it). Because you compiled your kernel using abs the kernel source directory should be /usr/abs/base/kernel/src. Copy that to /usr/src/linux (renaming the src dir to linux) and then try to build again. That should fix your problem.
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
Any reason why you can't just use the module included in the kernel?
# modprobe emu10k1
Offline
I got an error at the beginning stating:
"Note: /etc/modules.conf is more recent than /lib/modules/2.4.20/modules.dep"
After that I received several unresolved symbols and it stated that insmod of emu10k1 failed. Any ideas?
"America is all about speed. Hot, nasty, bad ass speed." - Eleanor Roosevelt
Registered Linux User 356244.
If you liked what you read, certify me at Advogato!
Offline
Try running depmod first, then modprobe'ing it.
# depmod -a
# modprobe emu10k1
Offline
I got more "unresolved symbol" errors from running 'depmod -a'. Anymore suggestions? lol Oh and Xentac, when I went to find the src in the abs directory, it wasnt there... and I had run abs.
"America is all about speed. Hot, nasty, bad ass speed." - Eleanor Roosevelt
Registered Linux User 356244.
If you liked what you read, certify me at Advogato!
Offline
when I went to find the src in the abs directory, it wasnt there... and I had run abs.
first do a makepkg, in the /usr/abs/bake/kernel dir, and the kernel source will be downloaded, extracted and compiled. if you just CTRL+C it after it's been untarred you can copy the source to /usr/src/linux.
you can also download the kernel source and untar it in /usr/src/linux by hand
Offline
Are you running the stock kernel? You should not see any "unresolved symbol" errors during a 'depmod' run (not with the stock kernel anyway, I don't).
Offline
Pages: 1