From a3f80b0b198f54e1556f20803122cf444624ea03 Mon Sep 17 00:00:00 2001 From: Foxlet Date: Sun, 20 Oct 2019 02:10:25 -0400 Subject: [PATCH] rpi-kernel: enable IR device modules [skip ci] --- srcpkgs/rpi-kernel/template | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/srcpkgs/rpi-kernel/template b/srcpkgs/rpi-kernel/template index ce4a492499c..f038ebe7045 100644 --- a/srcpkgs/rpi-kernel/template +++ b/srcpkgs/rpi-kernel/template @@ -10,7 +10,7 @@ _gitshort="${_githash:0:7}" pkgname=rpi-kernel version=4.19.79 -revision=1 +revision=2 wrksrc="linux-${_githash}" maintainer="Peter Bui " homepage="http://www.kernel.org" @@ -80,6 +80,14 @@ do_configure() { echo "CONFIG_PROC_EVENTS=y" >> "$defconfig" echo "CONFIG_F2FS_FS_SECURITY=y" >> "$defconfig" echo "CONFIG_CGROUP_PIDS=y" >> "$defconfig" + + # IR Remote Support + echo "CONFIG_RC_CORE=y" >> "$defconfig" + echo "CONFIG_LIRC=y" >> "$defconfig" + echo "CONFIG_RC_DECODERS=y" >> "$defconfig" + echo "CONFIG_RC_DEVICES=y" >> "$defconfig" + echo "CONFIG_IR_RC6_DECODER=m" >> "$defconfig" + echo "CONFIG_IR_MCEUSB=m" >> "$defconfig" make ${makejobs} ${_cross} ARCH=${_arch} ${target}