diff options
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" |