diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-01-22 13:41:16 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-01-22 13:41:20 +0100 |
commit | eaf79d06b761726ba05edfeb89643e80ae67b24b (patch) | |
tree | 56497b9ed2ad98378497dbe1c81a834f38794ec3 /package/kernel/linux/modules | |
parent | 24b0424ecb1c98a83f00b5ceb629d22c2765e4f0 (diff) | |
download | upstream-eaf79d06b761726ba05edfeb89643e80ae67b24b.tar.gz upstream-eaf79d06b761726ba05edfeb89643e80ae67b24b.tar.bz2 upstream-eaf79d06b761726ba05edfeb89643e80ae67b24b.zip |
Revert "kernel: add IEEE-1284 parallel port support"
This reverts commit 666e9cf2220b11ccd024cad13ad54ca71d40c5b3.
The change has not been build-tested on non-x86 targets and leads to
stalled kernel builds due to unset configuration symbols there.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package/kernel/linux/modules')
-rw-r--r-- | package/kernel/linux/modules/other.mk | 43 |
1 files changed, 5 insertions, 38 deletions
diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index 94f98fffc9..973e4f3e26 100644 --- a/package/kernel/linux/modules/other.mk +++ b/package/kernel/linux/modules/other.mk @@ -285,51 +285,18 @@ endef $(eval $(call KernelPackage,gpio-pcf857x)) -define KernelPackage/ppdev +define KernelPackage/lp SUBMENU:=$(OTHER_MENU) - TITLE:=Parallel port support + TITLE:=Parallel port and line printer support KCONFIG:= \ CONFIG_PARPORT \ + CONFIG_PRINTER \ CONFIG_PPDEV FILES:= \ $(LINUX_DIR)/drivers/parport/parport.ko \ + $(LINUX_DIR)/drivers/char/lp.ko \ $(LINUX_DIR)/drivers/char/ppdev.ko - AUTOLOAD:=$(call AutoLoad,50,parport ppdev) -endef - -$(eval $(call KernelPackage,ppdev)) - - -define KernelPackage/parport-pc - SUBMENU:=$(OTHER_MENU) - TITLE:=Parallel port interface (PC-style) support - DEPENDS:=+kmod-ppdev - KCONFIG:= \ - CONFIG_PARPORT_PC \ - CONFIG_PARPORT_1284=y \ - CONFIG_PARPORT_PC_FIFO=y \ - CONFIG_PARPORT_PC_SUPERIO=y \ - CONFIG_PARPORT_SERIAL=n \ - CONFIG_PARIDE=n \ - CONFIG_SCSI_IMM=n \ - CONFIG_SCSI_PPA=n - FILES:= \ - $(LINUX_DIR)/drivers/parport/parport_pc.ko - AUTOLOAD:=$(call AutoLoad,51,parport_pc) -endef - -$(eval $(call KernelPackage,parport-pc)) - - -define KernelPackage/lp - SUBMENU:=$(OTHER_MENU) - TITLE:=Parallel port line printer device support - DEPENDS:=+kmod-ppdev - KCONFIG:= \ - CONFIG_PRINTER - FILES:= \ - $(LINUX_DIR)/drivers/char/lp.ko - AUTOLOAD:=$(call AutoLoad,52,lp) + AUTOLOAD:=$(call AutoLoad,50,parport lp ppdev) endef $(eval $(call KernelPackage,lp)) |