diff options
author | Chukun Pan <amadeus@jmu.edu.cn> | 2022-09-02 23:18:10 +0800 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2022-12-12 09:06:17 +0100 |
commit | b40a047f1fefa086826b3c65fa1ed34cc8a4a3ed (patch) | |
tree | 2f78d6581e010ca93108fb8156f910344f28b878 /target/linux/sunxi | |
parent | a125d46a287061f0a5a81c9009880b957212d74e (diff) | |
download | upstream-b40a047f1fefa086826b3c65fa1ed34cc8a4a3ed.tar.gz upstream-b40a047f1fefa086826b3c65fa1ed34cc8a4a3ed.tar.bz2 upstream-b40a047f1fefa086826b3c65fa1ed34cc8a4a3ed.zip |
sunxi: fix sunxi-ir kconfig and description
Removed a20 in description, since it
only works for a10, a13 and a31.
Also refreshed kernel config.
Fixes: #10466
Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
(moved fixes, refreshed, added CONFIG_DVB_USB=n)
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'target/linux/sunxi')
-rw-r--r-- | target/linux/sunxi/modules.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/sunxi/modules.mk b/target/linux/sunxi/modules.mk index 0c8ed83d0d..8bbafe98a7 100644 --- a/target/linux/sunxi/modules.mk +++ b/target/linux/sunxi/modules.mk @@ -21,19 +21,20 @@ $(eval $(call KernelPackage,rtc-sunxi)) define KernelPackage/sunxi-ir SUBMENU:=$(OTHER_MENU) - TITLE:=Sunxi SoC built-in IR support (A20) + TITLE:=Sunxi SoC built-in IR support DEPENDS:=@(TARGET_sunxi&&RTC_SUPPORT) +kmod-input-core KCONFIG:= \ CONFIG_MEDIA_SUPPORT=y \ CONFIG_MEDIA_RC_SUPPORT=y \ CONFIG_RC_DEVICES=y \ + CONFIG_RC_CORE=y \ CONFIG_IR_SUNXI FILES:=$(LINUX_DIR)/drivers/media/rc/sunxi-cir.ko AUTOLOAD:=$(call AutoLoad,50,sunxi-cir) endef define KernelPackage/sunxi-ir/description - Support for the AllWinner sunXi SoC's onboard IR (A20) + Support for the AllWinner sunXi SoC's onboard IR endef $(eval $(call KernelPackage,sunxi-ir)) |