Bug 116557 - Sequencer module not loaded
Summary: Sequencer module not loaded
Status: RESOLVED FIXED
Alias: None
Product: SUSE LINUX 10.0
Classification: openSUSE
Component: Sound (show other bugs)
Version: RC 1
Hardware: Other All
: P5 - None : Normal
Target Milestone: ---
Assignee: Takashi Iwai
QA Contact: E-mail List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-09-12 16:42 UTC by Stefan Brüns
Modified: 2005-09-16 09:39 UTC (History)
0 users

See Also:
Found By: Other
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stefan Brüns 2005-09-12 16:42:12 UTC
On my laptop, there is no module for sequencer loaded, 
as /proc/asound/seq/drivers is empty. 
 
loading snd-seq-dummy helps 
 
Driver: intel_8x0 
 
lspci -v 
00:1f.5 Multimedia audio controller: Intel Corporation 82801CA/CAM AC'97 Audio 
Controller (rev 02) 
        Subsystem: Cirrus Logic Crystal WMD Audio Codec 
lspci -vn 
00:1f.5 Class 0401: 8086:2485 (rev 02) 
        Subsystem: 1013:5959
Comment 1 Takashi Iwai 2005-09-12 19:02:27 UTC
Fixed on rc3.
snd-seq module is loaded in alsasound init script when $LOAD_SEQUENCER=yes.
Comment 2 Stefan Brüns 2005-09-15 17:55:27 UTC
Sorry, no, it is not ...    
after reboot:    
   
$> ls -la /proc/asound/seq/    
insgesamt 0    
dr-xr-xr-x  2 root root 0 2005-09-15 19:42 .    
dr-xr-xr-x  5 root root 0 2005-09-15 19:42 ..    
   
Please have a look at the alsasound script:   
   
---   
load_sequencer() {   
  if [ x"$LOAD_SEQUENCER" = xyes -a -r /proc/asound/seq/drivers ];  
then   
  ...  
  fi  
}  
   
---   
   
I think this has to be   
if [ x"$LOAD_SEQUENCER" = xyes ]; then /sbin/modprobe snd-seq;   
  if [ -r /proc/asound/seq/drivers ]; then   
  ...   
  fi   
fi   
--   
/proc/asound/seq/drivers only comes into existence after loading  
snd-seq 
Comment 3 Takashi Iwai 2005-09-15 19:24:32 UTC
You are looking at a wrong version.  It was fixed.
Comment 4 Stefan Brüns 2005-09-16 01:28:46 UTC
In RC1 it is not fixed 
$> rpm -qf /etc/init.d/alsasound 
alsa-1.0.9-21 
Comment 5 Takashi Iwai 2005-09-16 09:39:18 UTC
Read the comment #3 carefully.