diff --git a/templates/xbps-base-files/files/blacklist.conf b/templates/xbps-base-files/files/blacklist.conf new file mode 100644 index 00000000000..c19b95f4773 --- /dev/null +++ b/templates/xbps-base-files/files/blacklist.conf @@ -0,0 +1,39 @@ +# +# Listing a module here prevents the hotplug scripts from loading it. +# Usually that'd be so that some other driver will bind it instead, +# no matter which driver happens to get probed first.  Sometimes user +# mode tools can also control driver binding. +# +# Syntax: driver name alone (without any spaces) on a line. Other +# lines are ignored. + + +#watchdog drivers +blacklist i8xx_tco + +# framebuffer drivers +blacklist aty128fb +blacklist atyfb +blacklist radeonfb +blacklist i810fb +blacklist cirrusfb +blacklist intelfb +blacklist kyrofb +blacklist i2c-matroxfb +blacklist hgafb +blacklist nvidiafb +blacklist rivafb +blacklist savagefb +blacklist sstfb +blacklist neofb +blacklist tridentfb +blacklist tdfxfb +blacklist virgefb +blacklist vga16fb + +# ISDN - see bugs 154799, 159068 +blacklist hisax +blacklist hisax_fcpcipnp + +# sound drivers +blacklist snd-pcsp diff --git a/templates/xbps-base-files/template b/templates/xbps-base-files/template index b1da6c9c4a5..9d7edb17280 100644 --- a/templates/xbps-base-files/template +++ b/templates/xbps-base-files/template @@ -1,6 +1,6 @@ # Template file for 'xbps-base-files' pkgname=xbps-base-files -version=0.28 +version=0.29 build_style=custom-install short_desc="xbps base system files" maintainer="Juan RP " @@ -87,4 +87,5 @@ do_install() install -d ${DESTDIR}/etc/modprobe.d install -m644 ${FILESDIR}/usb-load-ehci-first \ ${DESTDIR}/etc/modprobe.d/usb-load-ehci-first.conf + install -m644 ${FILESDIR}/blacklist.conf ${DESTDIR}/etc/modprobe.d }