[openwrt/openwrt] linux-firmware: package firmware for Airoha EN8811H PHY
LEDE Commits
lede-commits at lists.infradead.org
Thu Feb 15 11:35:22 PST 2024
dangole pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/adb1e30b7e0e3fdc1450e56645746dd35af9041d
commit adb1e30b7e0e3fdc1450e56645746dd35af9041d
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Fri Jan 26 17:29:22 2024 +0000
linux-firmware: package firmware for Airoha EN8811H PHY
Add package with firmware for Airoha EN8811H 2.5G Ethernet PHY which
needs to be loaded via MDIO before the PHY can be used.
Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
package/firmware/linux-firmware/airoha.mk | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/package/firmware/linux-firmware/airoha.mk b/package/firmware/linux-firmware/airoha.mk
new file mode 100644
index 0000000000..ac64d11e41
--- /dev/null
+++ b/package/firmware/linux-firmware/airoha.mk
@@ -0,0 +1,17 @@
+Package/airoha-en8811h-firmware = $(call Package/firmware-default,Airoha EN8811H 2.5G Ethernet PHY firmware)
+define Package/airoha-en8811h-firmware/install
+ $(INSTALL_DIR) $(1)/lib/firmware/airoha
+ $(CP) \
+ $(PKG_BUILD_DIR)/airoha/EthMD32.dm.bin \
+ $(PKG_BUILD_DIR)/airoha/EthMD32.DSP.bin \
+ $(1)/lib/firmware/airoha
+ifneq ($(CONFIG_TARGET_mediatek_filogic),)
+ $(INSTALL_DIR) $(STAGING_DIR_IMAGE)
+ cat \
+ $(PKG_BUILD_DIR)/airoha/EthMD32.dm.bin \
+ $(PKG_BUILD_DIR)/airoha/EthMD32.DSP.bin \
+ > $(STAGING_DIR_IMAGE)/EthMD32.bin
+endif
+endef
+
+$(eval $(call BuildPackage,airoha-en8811h-firmware))
More information about the lede-commits
mailing list