mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

From LGA1150 dalao (https://github.com/LGA1150/openwrt) Warning: The compiled firmware only supports flashing under OpBoot. MobiPromo CM520-79F is an AC1300 dual band router based on IPQ4019 Specification: SoC/Wireless: QCA IPQ4019 RAM: 512MiB Flash: 128MiB SLC NAND Ethernet PHY: QCA8075 Ethernet ports: 1x WAN, 2x LAN LEDs: 7 LEDs 2 (USB, CAN) are GPIO other 5 (2.4G, 5G, LAN1, LAN2, WAN) are connected to a shift register Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn> ipq40xx: fix build error for cm520-79f (#30) This commit fix 94a743ea531b4c10e91c17dc17535471e95f308b Signed-off-by: AmadeusGhost <amadeus@jmu.edu.cn> CM520-79F: fix wan port (#33) This commit fix 223124e Signed-off-by: AmadeusGhost <amadeus@jmu.edu.cn> CM520-79F: disable vlan Co-authored-by: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com>
70 lines
2.2 KiB
Makefile
70 lines
2.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/version.mk
|
|
|
|
PKG_NAME:=ipq-wifi
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
#ALLWIFIBOARDS:=<devicename>
|
|
# Please send a mail with your device-specific board files upstream.
|
|
# You can find instructions and examples on the linux-wireless wiki:
|
|
# <https://wireless.wiki.kernel.org/en/users/drivers/ath10k/boardfiles>
|
|
ALLWIFIBOARDS:= \
|
|
engenius_eap1300 \
|
|
hugo_ac1200 \
|
|
linksys_ea6350v3 \
|
|
mobipromo_cm520-79f \
|
|
p2w_r619ac \
|
|
rt-acrh17
|
|
|
|
ALLWIFIPACKAGES:=$(foreach BOARD,$(ALLWIFIBOARDS),ipq-wifi-$(BOARD))
|
|
|
|
define Package/ipq-wifi-default
|
|
SUBMENU:=ath10k IPQ4019 Boarddata
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
DEPENDS:=@TARGET_ipq40xx
|
|
TITLE:=Custom Board
|
|
endef
|
|
|
|
define generate-ipq-wifi-package
|
|
define Package/ipq-wifi-$(1)
|
|
$(call Package/ipq-wifi-default)
|
|
TITLE:=Board for $(3)
|
|
CONFLICTS:=$(PREV_BOARD)
|
|
endef
|
|
|
|
define Package/ipq-wifi-$(1)/description
|
|
This device custom package board-2.bin overwrites the board-2.bin
|
|
file which is supplied by the ath10k-firmware-qca4019 package.
|
|
|
|
This is package is only necessary for the $(3).
|
|
Don't install it for any other device!
|
|
endef
|
|
|
|
define Package/ipq-wifi-$(1)/install-overlay
|
|
$(INSTALL_DIR) $$(1)/lib/firmware/ath10k/QCA4019/hw1.0
|
|
$(INSTALL_DATA) ./$(2) $$(1)/lib/firmware/ath10k/QCA4019/hw1.0/board-2.bin
|
|
endef
|
|
|
|
PREV_BOARD+=ipq-wifi-$(1)
|
|
endef
|
|
|
|
#$(eval $(call generate-ipq-wifi-package,<devicename>,<filename>,<displayname>))
|
|
$(eval $(call generate-ipq-wifi-package,engenius_eap1300,board-engenius_eap1300.bin,EnGenius EAP1300))
|
|
$(eval $(call generate-ipq-wifi-package,hugo_ac1200,board-hugo_ac1200.bin,Hugo AC1200))
|
|
$(eval $(call generate-ipq-wifi-package,linksys_ea6350v3,board-linksys_ea6350v3.bin,Linksys EA6350v3))
|
|
$(eval $(call generate-ipq-wifi-package,mobipromo_cm520-79f,board-mobipromo_cm520-79f.qca4019,MobiPromo CM520-79F))
|
|
$(eval $(call generate-ipq-wifi-package,p2w_r619ac,board-p2w_r619ac.qca4019,P&W R619AC))
|
|
$(eval $(call generate-ipq-wifi-package,rt-acrh17,board-rt-acrh17.bin,ASUS RT-ACRH17/RT-AC82U/RT-AC42U))
|
|
|
|
$(foreach PACKAGE,$(ALLWIFIPACKAGES),$(eval $(call BuildPackage,$(PACKAGE))))
|