diff options
| author | Shiji Yang | 2025-05-10 03:19:35 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-05-17 18:14:27 +0000 |
| commit | a6822d598061018f0e5186c6b53bae664212e93b (patch) | |
| tree | 42d3ae40c7f0c16ccbd07fdd6aaff9ffe31c3349 | |
| parent | b2d356909d0b6c43d7b5834dae8f11baf84541f5 (diff) | |
| download | openwrt-a6822d598061018f0e5186c6b53bae664212e93b.tar.gz | |
mvebu: replace kmod-usb3 with kmod-usb-xhci-pci-renesas
The dependency of kmod-usb3 and kmod-usb-xhci-pci-renesas have
been reversed. Now we need to select kmod-usb-xhci-pci-renesas
instead of kmod-usb3.
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/18768
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/mvebu/image/cortexa9.mk | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/target/linux/mvebu/image/cortexa9.mk b/target/linux/mvebu/image/cortexa9.mk index 5430ae3457..72d7f9dc2a 100644 --- a/target/linux/mvebu/image/cortexa9.mk +++ b/target/linux/mvebu/image/cortexa9.mk @@ -72,9 +72,9 @@ define Device/buffalo_ls421de KERNEL_INITRAMFS := kernel-bin | append-dtb | uImage none DEVICE_DTS := armada-370-buffalo-ls421de DEVICE_PACKAGES := \ - kmod-rtc-rs5c372a kmod-hwmon-gpiofan kmod-hwmon-drivetemp kmod-usb3 \ - kmod-linkstation-poweroff kmod-md-raid0 kmod-md-raid1 kmod-md-mod \ - kmod-fs-xfs mkf2fs e2fsprogs partx-utils + kmod-rtc-rs5c372a kmod-hwmon-gpiofan kmod-hwmon-drivetemp \ + kmod-usb-xhci-pci-renesas kmod-linkstation-poweroff kmod-md-raid0 \ + kmod-md-raid1 kmod-md-mod kmod-fs-xfs mkf2fs e2fsprogs partx-utils endef TARGET_DEVICES += buffalo_ls421de @@ -91,7 +91,7 @@ define Device/ctera_c200-v2 KERNEL_SUFFIX := -factory.firm DEVICE_PACKAGES := \ kmod-gpio-button-hotplug kmod-hwmon-drivetemp kmod-hwmon-nct7802 \ - kmod-rtc-s35390a kmod-usb3 kmod-usb-ledtrig-usbport + kmod-rtc-s35390a kmod-usb-xhci-pci-renesas kmod-usb-ledtrig-usbport IMAGES := sysupgrade.bin endef TARGET_DEVICES += ctera_c200-v2 @@ -209,7 +209,8 @@ TARGET_DEVICES += iij_sa-w2 define Device/iptime_nas1dual DEVICE_VENDOR := ipTIME DEVICE_MODEL := NAS1dual - DEVICE_PACKAGES := kmod-hwmon-drivetemp kmod-hwmon-gpiofan kmod-usb3 + DEVICE_PACKAGES := kmod-hwmon-drivetemp kmod-hwmon-gpiofan \ + kmod-usb-xhci-pci-renesas SOC := armada-385 KERNEL := kernel-bin | append-dtb | iptime-naspkg nas1dual KERNEL_SIZE := 6144k |