mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-01 16:27:08 +08:00
rfkill: enable for rockchip by default
This is useful for 4G modem chips. For example, the Radxa E25 supports insert two modems.
This commit is contained in:
parent
b77ab3b9ef
commit
0dc779bf6c
@ -301,13 +301,14 @@ menu "Target Images"
|
|||||||
depends on USES_BOOT_PART
|
depends on USES_BOOT_PART
|
||||||
default 8 if TARGET_apm821xx_sata
|
default 8 if TARGET_apm821xx_sata
|
||||||
default 64 if TARGET_bcm27xx
|
default 64 if TARGET_bcm27xx
|
||||||
default 64 if TARGET_rockchip
|
default 32 if TARGET_rockchip
|
||||||
default 16
|
default 16
|
||||||
|
|
||||||
config TARGET_ROOTFS_PARTSIZE
|
config TARGET_ROOTFS_PARTSIZE
|
||||||
int "Root filesystem partition size (in MiB)"
|
int "Root filesystem partition size (in MiB)"
|
||||||
depends on USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS
|
depends on USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS
|
||||||
default 400
|
default 400 if TARGET_x86
|
||||||
|
default 160
|
||||||
help
|
help
|
||||||
Select the root filesystem partition size.
|
Select the root filesystem partition size.
|
||||||
|
|
||||||
|
@ -643,6 +643,7 @@ config KERNEL_CRASH_DUMP
|
|||||||
|
|
||||||
config USE_RFKILL
|
config USE_RFKILL
|
||||||
bool "Enable rfkill support"
|
bool "Enable rfkill support"
|
||||||
|
default y if TARGET_rockchip
|
||||||
default RFKILL_SUPPORT
|
default RFKILL_SUPPORT
|
||||||
|
|
||||||
config USE_SPARSE
|
config USE_SPARSE
|
||||||
|
@ -406,11 +406,13 @@ define KernelPackage/rfkill
|
|||||||
DEPENDS:=@USE_RFKILL +kmod-input-core
|
DEPENDS:=@USE_RFKILL +kmod-input-core
|
||||||
KCONFIG:= \
|
KCONFIG:= \
|
||||||
CONFIG_RFKILL_FULL \
|
CONFIG_RFKILL_FULL \
|
||||||
|
CONFIG_RFKILL_GPIO=y \
|
||||||
CONFIG_RFKILL_INPUT=y \
|
CONFIG_RFKILL_INPUT=y \
|
||||||
CONFIG_RFKILL_LEDS=y
|
CONFIG_RFKILL_LEDS=y
|
||||||
FILES:= \
|
FILES:= \
|
||||||
$(LINUX_DIR)/net/rfkill/rfkill.ko
|
$(LINUX_DIR)/net/rfkill/rfkill.ko \
|
||||||
AUTOLOAD:=$(call AutoLoad,20,rfkill)
|
$(LINUX_DIR)/net/rfkill/rfkill-gpio.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,20,rfkill-gpio)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/rfkill/description
|
define KernelPackage/rfkill/description
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
From b4aeb93e697e4dbe2d336d01290e92e98acfd83c Mon Sep 17 00:00:00 2001
|
||||||
|
From: jensen <jensenhuang@friendlyarm.com>
|
||||||
|
Date: Sat, 15 Oct 2022 18:47:24 +0800
|
||||||
|
Subject: [PATCH] rfkill: gpio: add of_match_table support
|
||||||
|
|
||||||
|
Signed-off-by: jensen <jensenhuang@friendlyarm.com>
|
||||||
|
---
|
||||||
|
net/rfkill/rfkill-gpio.c | 8 ++++++++
|
||||||
|
1 file changed, 8 insertions(+)
|
||||||
|
|
||||||
|
--- a/net/rfkill/rfkill-gpio.c
|
||||||
|
+++ b/net/rfkill/rfkill-gpio.c
|
||||||
|
@@ -156,6 +156,13 @@ static const struct acpi_device_id rfkill_acpi_match[] = {
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(acpi, rfkill_acpi_match);
|
||||||
|
#endif
|
||||||
|
+#ifdef CONFIG_OF
|
||||||
|
+static struct of_device_id rfkill_gpio_of_match[] = {
|
||||||
|
+ { .compatible = "rfkill-gpio" },
|
||||||
|
+ { },
|
||||||
|
+};
|
||||||
|
+MODULE_DEVICE_TABLE(of, rfkill_gpio_of_match);
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
static struct platform_driver rfkill_gpio_driver = {
|
||||||
|
.probe = rfkill_gpio_probe,
|
||||||
|
@@ -163,6 +170,7 @@ static struct platform_driver rfkill_gpio_driver = {
|
||||||
|
.driver = {
|
||||||
|
.name = "rfkill_gpio",
|
||||||
|
.acpi_match_table = ACPI_PTR(rfkill_acpi_match),
|
||||||
|
+ .of_match_table = of_match_ptr(rfkill_gpio_of_match),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
@ -0,0 +1,34 @@
|
|||||||
|
From b4aeb93e697e4dbe2d336d01290e92e98acfd83c Mon Sep 17 00:00:00 2001
|
||||||
|
From: jensen <jensenhuang@friendlyarm.com>
|
||||||
|
Date: Sat, 15 Oct 2022 18:47:24 +0800
|
||||||
|
Subject: [PATCH] rfkill: gpio: add of_match_table support
|
||||||
|
|
||||||
|
Signed-off-by: jensen <jensenhuang@friendlyarm.com>
|
||||||
|
---
|
||||||
|
net/rfkill/rfkill-gpio.c | 8 ++++++++
|
||||||
|
1 file changed, 8 insertions(+)
|
||||||
|
|
||||||
|
--- a/net/rfkill/rfkill-gpio.c
|
||||||
|
+++ b/net/rfkill/rfkill-gpio.c
|
||||||
|
@@ -156,6 +156,13 @@ static const struct acpi_device_id rfkill_acpi_match[] = {
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(acpi, rfkill_acpi_match);
|
||||||
|
#endif
|
||||||
|
+#ifdef CONFIG_OF
|
||||||
|
+static struct of_device_id rfkill_gpio_of_match[] = {
|
||||||
|
+ { .compatible = "rfkill-gpio" },
|
||||||
|
+ { },
|
||||||
|
+};
|
||||||
|
+MODULE_DEVICE_TABLE(of, rfkill_gpio_of_match);
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
static struct platform_driver rfkill_gpio_driver = {
|
||||||
|
.probe = rfkill_gpio_probe,
|
||||||
|
@@ -163,6 +170,7 @@ static struct platform_driver rfkill_gpio_driver = {
|
||||||
|
.driver = {
|
||||||
|
.name = "rfkill_gpio",
|
||||||
|
.acpi_match_table = ACPI_PTR(rfkill_acpi_match),
|
||||||
|
+ .of_match_table = of_match_ptr(rfkill_gpio_of_match),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user