mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-09 06:02:10 -05:00
Add support for Aeonsemi AS21xxx firmware blob. Firmware has been submitted and accepted to linux-firmware. Current version is 1.8.2. Link: https://github.com/openwrt/openwrt/pull/19816 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
10 lines
354 B
Makefile
10 lines
354 B
Makefile
Package/aeonsemi-as21xxx-firmware = $(call Package/firmware-default,Aeonsemi AS21xxx Ethernet PHY firmware,,LICENSE.aeonsemi)
|
|
define Package/aeonsemi-as21xxx-firmware/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware/aeonsemi
|
|
$(CP) \
|
|
$(PKG_BUILD_DIR)/aeonsemi/as21x1x_fw.bin \
|
|
$(1)/lib/firmware
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,aeonsemi-as21xxx-firmware))
|