Magellan Linux

Diff of /trunk/installer/hwdetection.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 766 by niro, Mon Oct 15 20:49:40 2007 UTC revision 767 by niro, Mon Sep 22 22:06:46 2008 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2  # $Header: /home/cvsd/magellan-cvs/magellan-src/installer/hwdetection.sh,v 1.7 2007-10-15 20:49:40 niro Exp $  # $Header: /home/cvsd/magellan-cvs/magellan-src/installer/hwdetection.sh,v 1.8 2008-09-22 22:06:46 niro Exp $
3    
4  ## hwdetection, needs >= sys-apps/hwinfo  ## hwdetection, needs >= sys-apps/hwinfo
5    
# Line 113  remove_duplicates() Line 113  remove_duplicates()
113   fi   fi
114   done   done
115    
116     unset list
117    
118   # remove all ':' and show the cleaned list   # remove all ':' and show the cleaned list
119   # this way fixes double spaces also   # this way fixes double spaces also
120   for i in $(echo ${fixed_list} | sed "s|:| |g")   for i in $(echo ${fixed_list} | sed "s|:| |g")
121   do   do
122   echo "${i}"   list+=" ${i}"
123   done   done
124    
125     echo "${list}"
126  }  }
127    
128  get_x11_driver_modules()  get_x11_driver_modules()

Legend:
Removed from v.766  
changed lines
  Added in v.767