diff options
| author | FUKAUMI Naoki | 2025-09-02 05:12:03 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-09-07 12:29:39 +0000 |
| commit | 3c23e9a32754f52f50cd0f66f94c32ea01e462a5 (patch) | |
| tree | 0bae8d63dd5aa06fa257998e4f7c82bd7c5d6a90 | |
| parent | 547626764bca4321b4aaf5108c7c416d9e472387 (diff) | |
| download | openwrt-3c23e9a32754f52f50cd0f66f94c32ea01e462a5.tar.gz | |
rockchip: add HATs/M.2 E key module support for Radxa ROCK 5A
Add support for Radxa HATs/M.2 E key module.
- Radxa Dual 2.5G Router HAT (Realtek RTL8125BG/NVMe)
- Radxa Penta SATA HAT (JMicron JMB585)
- Radxa Wireless Module A8 (Realtek RTL8852BE)
Signed-off-by: FUKAUMI Naoki <naoki@radxa.com>
Link: https://github.com/openwrt/openwrt/pull/19867
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/rockchip/armv8/base-files/etc/hotplug.d/net/40-net-smp-affinity | 4 | ||||
| -rw-r--r-- | target/linux/rockchip/image/armv8.mk | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/rockchip/armv8/base-files/etc/hotplug.d/net/40-net-smp-affinity b/target/linux/rockchip/armv8/base-files/etc/hotplug.d/net/40-net-smp-affinity index f5cdd9be8a..956b909bb9 100644 --- a/target/linux/rockchip/armv8/base-files/etc/hotplug.d/net/40-net-smp-affinity +++ b/target/linux/rockchip/armv8/base-files/etc/hotplug.d/net/40-net-smp-affinity @@ -63,5 +63,9 @@ friendlyarm,nanopi-r6s) set_interface_core 20 "eth1" set_interface_core 40 "eth2" ;; +radxa,rock-5a) + set_interface_core 10 "eth1" + set_interface_core 20 "eth2" + ;; esac diff --git a/target/linux/rockchip/image/armv8.mk b/target/linux/rockchip/image/armv8.mk index bb1e3a894f..1a5ba482d0 100644 --- a/target/linux/rockchip/image/armv8.mk +++ b/target/linux/rockchip/image/armv8.mk @@ -203,7 +203,7 @@ define Device/radxa_rock-5a DEVICE_MODEL := ROCK 5A SOC := rk3588s UBOOT_DEVICE_NAME := rock5a-rk3588s - DEVICE_PACKAGES := kmod-hwmon-pwmfan + DEVICE_PACKAGES := blkdiscard block-mount kmod-ata-ahci kmod-hwmon-pwmfan kmod-nvme kmod-r8169 kmod-rtw89-8852be wpad-basic-mbedtls endef TARGET_DEVICES += radxa_rock-5a |