diff options
| author | James Meyer <james.meyer@operamail.com> | 2009-03-05 23:00:11 (GMT) | 
|---|---|---|
| committer | James Meyer <james.meyer@operamail.com> | 2009-03-05 23:00:11 (GMT) | 
| commit | d9e8fd3c71801881b7b0c085fddafce1ab60634e (patch) | |
| tree | 06f9da6cb9745cf90dbcfa03e7b920b26ac281cb /build_tools | |
| parent | 4f3bc9eeb01e669b664c51252bdf65ec1ec86439 (diff) | |
| download | linhes_dev-d9e8fd3c71801881b7b0c085fddafce1ab60634e.zip | |
Change the blacklisting of modules to !module_name vs the old BLACKLIST
Diffstat (limited to 'build_tools')
3 files changed, 12 insertions, 12 deletions
| diff --git a/build_tools/clarch/larch/profiles/i686-testing-REMOTE/post_process/rc.conf b/build_tools/clarch/larch/profiles/i686-testing-REMOTE/post_process/rc.conf index b2af298..9c17944 100755 --- a/build_tools/clarch/larch/profiles/i686-testing-REMOTE/post_process/rc.conf +++ b/build_tools/clarch/larch/profiles/i686-testing-REMOTE/post_process/rc.conf @@ -37,23 +37,23 @@ fi  if [ x$Audiotype  = xOSS  -a  !  -f /tmp/.alsatest  ]  then - ALSABLACKLIST="soundcore" + ALSABLACKLIST="!soundcore"  else  	if [ x$Audiotype = xOSS ]  	then -	   ALSABLACKLIST="soundcore" +	   ALSABLACKLIST="!soundcore"  	else  	    ALSABLACKLIST=""  	fi  fi  # Module Blacklist - modules in this list will never be loaded by udev -MOD_BLACKLIST=($ALSABLACKLIST snd-pcsp ) +MOD_BLACKLIST_=($ALSABLACKLIST !snd-pcsp )  #  # Modules to load at boot-up (in this order)  #   - prefix a module with a ! to blacklist it  # -MODULES=() +MODULES=($MOD_BLACKLIST_)  # Scan for LVM volume groups at startup, required if you use LVM  USELVM="no" diff --git a/build_tools/clarch/larch/profiles/i686-testing-local-httpd/post_process/rc.conf b/build_tools/clarch/larch/profiles/i686-testing-local-httpd/post_process/rc.conf index b2af298..9c17944 100755 --- a/build_tools/clarch/larch/profiles/i686-testing-local-httpd/post_process/rc.conf +++ b/build_tools/clarch/larch/profiles/i686-testing-local-httpd/post_process/rc.conf @@ -37,23 +37,23 @@ fi  if [ x$Audiotype  = xOSS  -a  !  -f /tmp/.alsatest  ]  then - ALSABLACKLIST="soundcore" + ALSABLACKLIST="!soundcore"  else  	if [ x$Audiotype = xOSS ]  	then -	   ALSABLACKLIST="soundcore" +	   ALSABLACKLIST="!soundcore"  	else  	    ALSABLACKLIST=""  	fi  fi  # Module Blacklist - modules in this list will never be loaded by udev -MOD_BLACKLIST=($ALSABLACKLIST snd-pcsp ) +MOD_BLACKLIST_=($ALSABLACKLIST !snd-pcsp )  #  # Modules to load at boot-up (in this order)  #   - prefix a module with a ! to blacklist it  # -MODULES=() +MODULES=($MOD_BLACKLIST_)  # Scan for LVM volume groups at startup, required if you use LVM  USELVM="no" diff --git a/build_tools/clarch/larch/profiles/i686-testing-local/post_process/rc.conf b/build_tools/clarch/larch/profiles/i686-testing-local/post_process/rc.conf index b2af298..9c17944 100755 --- a/build_tools/clarch/larch/profiles/i686-testing-local/post_process/rc.conf +++ b/build_tools/clarch/larch/profiles/i686-testing-local/post_process/rc.conf @@ -37,23 +37,23 @@ fi  if [ x$Audiotype  = xOSS  -a  !  -f /tmp/.alsatest  ]  then - ALSABLACKLIST="soundcore" + ALSABLACKLIST="!soundcore"  else  	if [ x$Audiotype = xOSS ]  	then -	   ALSABLACKLIST="soundcore" +	   ALSABLACKLIST="!soundcore"  	else  	    ALSABLACKLIST=""  	fi  fi  # Module Blacklist - modules in this list will never be loaded by udev -MOD_BLACKLIST=($ALSABLACKLIST snd-pcsp ) +MOD_BLACKLIST_=($ALSABLACKLIST !snd-pcsp )  #  # Modules to load at boot-up (in this order)  #   - prefix a module with a ! to blacklist it  # -MODULES=() +MODULES=($MOD_BLACKLIST_)  # Scan for LVM volume groups at startup, required if you use LVM  USELVM="no" | 
