From e3f2f90c5136e35ab7c5f3e560ac5cf702ddd8a8 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Jan 15 2016 18:38:20 +0000 Subject: filters: add option to filter input drivers and apply to gameport, tablet and touchscreen so they move out of core --- diff --git a/filter-modules.sh b/filter-modules.sh index 4ed7e58..8a8a2d4 100755 --- a/filter-modules.sh +++ b/filter-modules.sh @@ -20,6 +20,8 @@ netdrvs="appletalk can dsa hamradio ieee802154 irda ppp slip usb wireless" ethdrvs="3com adaptec alteon amd atheros broadcom cadence calxeda chelsio cisco dec dlink emulex icplus marvell mellanox neterion nvidia oki-semi packetengines qlogic rdc renesas sfc silan sis smsc stmicro sun tehuti ti wiznet xircom" +inputdrvs="gameport tablet touchscreen" + scsidrvs="aacraid aic7xxx aic94xx be2iscsi bfa bnx2i bnx2fc csiostor cxgbi esas2r fcoe fnic isci libsas lpfc megaraid mpt2sas mpt3sas mvsas pm8001 qla2xxx qla4xxx sym53c8xx_2 ufs" ttydrvs="ipwireless" @@ -95,6 +97,12 @@ do filter_dir $1 drivers/scsi/${scsi} done +# Input +for input in ${inputdrvs} +do + filter_dir $1 drivers/input/${input} +done + # TTY for tty in ${ttydrvs} do