mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-18 00:51:13 +01:00
Add ar9344_nec_aterm_fe profile for NEC Aterm WF1200HP and WF1200HP2 based on Atheros AR9344, but using internal FE switch instead of external GbE switch. Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com> Link: https://github.com/openwrt/openwrt/pull/20611 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_VERSION:=2025.10
|
|
PKG_HASH:=b4f032848e56cc8f213ad59f9132c084dbbb632bc29176d024e58220e0efdf4a
|
|
|
|
UBOOT_USE_INTREE_DTC:=1
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=ath79
|
|
BUILD_SUBTARGET:=generic
|
|
UBOOT_IMAGE:=u-boot.bin
|
|
UBOOT_CONFIG:=ap121
|
|
HIDDEN:=1
|
|
endef
|
|
|
|
define U-Boot/ar9344_nec_aterm
|
|
NAME:=NEC Aterm series (AR9344, GbE)
|
|
BUILD_SUBTARGET:= tiny
|
|
BUILD_DEVICES:=nec_wg600hp nec_wr8750n nec_wr9500n
|
|
UBOOT_CONFIG:=nec_ar9344_aterm
|
|
endef
|
|
|
|
define U-Boot/ar9344_nec_aterm_fe
|
|
NAME:=NEC Aterm series (AR9344, FE)
|
|
BUILD_SUBTARGET:= tiny
|
|
BUILD_DEVICES:=nec_wf1200hp nec_wf1200hp2
|
|
UBOOT_CONFIG:=nec_ar9344_aterm_fe
|
|
endef
|
|
|
|
define U-Boot/qca9558_nec_aterm
|
|
NAME:=NEC Aterm series (QCA9558)
|
|
BUILD_SUBTARGET:= generic
|
|
BUILD_DEVICES:=nec_wg1400hp nec_wg1800hp nec_wg1800hp2 nec_wg2200hp
|
|
UBOOT_CONFIG:=nec_qca9558_aterm
|
|
endef
|
|
|
|
UBOOT_TARGETS := ar9344_nec_aterm ar9344_nec_aterm_fe qca9558_nec_aterm
|
|
|
|
# don't stage files to bindir, let target/linux/ath79/image/*.mk do that
|
|
define Package/u-boot/install
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(UBOOT_IMAGE)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|