ramips: updated remaining profiles to the new image building code

Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin 2016-08-02 19:48:17 +02:00
parent d3b21bb2bb
commit 8e75630d1d
42 changed files with 998 additions and 1319 deletions

View File

@ -246,6 +246,7 @@ endif
ifeq ($(SUBTARGET),rt305x)
include rt305x.mk
include rt305x-legacy.mk
endif
ifeq ($(SUBTARGET),rt3883)

View File

@ -0,0 +1,445 @@
#
# RT305X Profiles
#
# sign an image to make it work with edimax tftp recovery
define BuildFirmware/Edimax/squashfs
$(call BuildFirmware/OF,$(1),$(2),$(3),$(4))
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
mkedimaximg -i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin \
-s $(5) -m $(6) -f $(7) -S $(8); \
fi
endef
BuildFirmware/Edimax/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
# Sign Poray images
define BuildFirmware/Poray4M/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
mkporayfw -B $(3) -F 4M \
-f $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin; \
fi
endef
BuildFirmware/Poray4M/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/Poray8M/squashfs
$(call BuildFirmware/Default8M/$(1),$(1),$(2),$(3))
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
mkporayfw -B $(3) -F 8M \
-f $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin; \
fi
endef
BuildFirmware/Poray8M/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/JCG/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
-jcgimage -o $(call imgname,$(1),$(2))-factory.bin \
-u $(call sysupname,$(1),$(2)) -v $(4)
endef
define BuildFirmware/DIR300B1/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
-mkwrgimg -s $(4) -d /dev/mtdblock/2 \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin
endef
BuildFirmware/DIR300B1/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/DIR615H1/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),dir-615-h1,DIR-615-H1)
-mksenaofw -e $(call sysupname,$(1),dir-615-h1) \
-o $(call imgname,$(1),dir-615-h1)-factory.bin \
-r 0x218 -p 0x30 -t 3
endef
BuildFirmware/DIR615H1/initramfs=$(call BuildFirmware/OF/initramfs,$(1),dir-615-h1,DIR-615-H1)
# sign dap 1350 based images
dap1350_mtd_size=7667712
define BuildFirmware/dap1350/squashfs
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2),$(3),$(dap1350_mtd_size))
-mkdapimg -s $(4) \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin
endef
BuildFirmware/dap1350/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/DCS930/squashfs
$(call BuildFirmware/Default4M/squashfs,squashfs,$(2),$(3))
dd if=$(KDIR)/vmlinux-$(2).bin.lzma of=$(KDIR)/image.$(2).combined bs=1048512 count=1 conv=sync
cat $(KDIR)/root.squashfs >> $(KDIR)/image.$(2).combined
$(call MkImage,lzma,$(KDIR)/image.$(2).combined,$(KDIR)/image.$(2))
$(call prepare_generic_squashfs,$(KDIR)/image.$(2))
if [ `stat -c%s "$(KDIR)/image.$(2)"` -gt $(ralink_default_fw_size_4M) ]; then \
echo "Warning: $(KDIR)/image.$(2) is too big" >&2; \
else \
dd if=$(KDIR)/image.$(2) of=$(KDIR)/dcs.tmp bs=64K count=5 conv=sync ;\
cat $(KDIR)/image.$(2) >> $(KDIR)/dcs.tmp ; \
dd if=$(KDIR)/dcs.tmp of=$(call imgname,$(1),$(2))-factory.bin bs=4096k count=1 conv=sync ;\
$(STAGING_DIR_HOST)/bin/mkdcs932 $(call imgname,$(1),$(2))-factory.bin ; \
fi
endef
BuildFirmware/DCS930/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
BuildFirmware/HLKRM04/squashfs=$(call BuildFirmware/Default4M/squashfs,$(1),$(2),$(3),$(4))
define BuildFirmware/HLKRM04/initramfs
$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3),$(4))
mkhilinkfw -e -i$(call imgname,$(1),$(2))-uImage.bin -o $(call imgname,$(1),$(2))-factory.bin;
endef
# sign Buffalo images
define BuildFirmware/Buffalo
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
buffalo-enc -p $(3) -v 1.76 \
-i $(KDIR)/vmlinux-$(2).uImage \
-o $(KDIR)/vmlinux-$(2).uImage.enc; \
buffalo-enc -p $(3) -v 1.76 \
-i $(KDIR)/root.$(1) \
-o $(KDIR)/root.$(2).enc; \
buffalo-tag -b $(3) -p $(3) -a ram -v 1.76 -m 1.01 \
-l mlang8 -f 1 -r EU \
-i $(KDIR)/vmlinux-$(2).uImage.enc \
-i $(KDIR)/root.$(2).enc \
-o $(call imgname,$(1),$(2))-factory-EU.bin; \
fi
endef
# FIXME: this looks broken
buffalo_whrg300n_mtd_size=3801088
define BuildFirmware/WHRG300N/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),whr-g300n,WHR-G300N)
# the following line has a bad argument 3 ... the old Makefile was already broken
$(call BuildFirmware/Buffalo,$(1),whr-g300n,whr-g300n)
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
( \
echo -n -e "# Airstation FirmWare\nrun u_fw\nreset\n\n" | \
dd bs=512 count=1 conv=sync; \
dd if=$(call sysupname,$(1),whr-g300n); \
) > $(KDIR)/whr-g300n-tftp.tmp && \
buffalo-tftp -i $(KDIR)/whr-g300n-tftp.tmp \
-o $(call imgname,$(1),whr-g300n)-tftp.bin; \
fi
endef
BuildFirmware/WHRG300N/initramfs=$(call BuildFirmware/OF/initramfs,$(1),whr-g300n,WHR-G300N)
kernel_size_wl341v3=917504
rootfs_size_wl341v3=2949120
define BuildFirmware/WL-341V3/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),wl-341v3,WL-341V3)
# This code looks broken and really needs to be converted to C
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
( \
dd if=/dev/zero bs=195936 count=1; \
echo "1.01"; \
dd if=/dev/zero bs=581 count=1; \
echo -n -e "\x73\x45\x72\x43\x6F\x4D\x6D\x00\x01\x00\x00\x59\x4E\x37\x95\x58\x10\x00\x20\x00\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x03\x00\x00\x80\x00\x00\x00\x00\x03\x00\x00\x10\x12\x00\x00\x00\x10\x73\x45\x72\x43\x6F\x4D\x6D"; \
dd if=/dev/zero bs=65552 count=1; \
dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(kernel_size_wl341v3) conv=sync; \
dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
dd if=/dev/zero bs=`expr 4194304 - 262144 - 16 - $(kernel_size_wl341v3) - \( \( \( \`stat -c%s $(KDIR)/root.$(1)\` / 65536 \) + 1 \) \* 65536 \)` count=1; \
echo -n -e "\x11\x03\x80\x00\x10\x12\x90\xF7\x65\x52\x63\x4F\x6D\x4D\x00\x00"; \
) > $(call imgname,$(1),$(2))-factory.bin; \
fi
endef
BuildFirmware/WL-341V3/initramfs=$(call BuildFirmware/OF/initramfs,$(1),wl-341v3,WL-341V3)
define BuildFirmware/WNCE2001/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
-mkdapimg -s RT3052-AP-WNCE2001-3 -r WW -v 1.0.0.99 \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory-worldwide.bin
-mkdapimg -s RT3052-AP-WNCE2001-3 -r NA -v 1.0.0.99 \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory-northamerica.bin
endef
BuildFirmware/WNCE2001/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/UIMAGE_8M
$(call MkCombineduImage,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_8M)),$(kernel_size_8M),$(rootfs_size_8M),$(7))
endef
define Image/Build/Profile/ALL02393G
$(call Image/Build/Template/$(image_type)/$(1),UIMAGE_8M,all0239-3g,ALL0239-3G,ttyS1,57600,phys)
endef
Image/Build/Profile/DIR610A1=$(call BuildFirmware/Seama/$(1),$(1),dir-610-a1,DIR-610-A1,wrgn59_dlob.hans_dir610,$(ralink_default_fw_size_4M))
edimax_3g6200n_mtd_size=3735552
Image/Build/Profile/3G6200N=$(call BuildFirmware/Edimax/$(1),$(1),3g-6200n,3G-6200N,$(edimax_3g6200n_mtd_size),CSYS,3G62,0x50000,0xc0000)
Image/Build/Profile/3G6200NL=$(call BuildFirmware/Edimax/$(1),$(1),3g-6200nl,3G-6200NL,$(edimax_3g6200n_mtd_size),CSYS,3G62,0x50000,0xc0000)
Image/Build/Profile/3G300M=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),3g300m,3G300M,$(ralink_default_fw_size_4M),3G150M_SPI Kernel Image,factory)
Image/Build/Profile/A5-V11=$(call BuildFirmware/Poray4M/$(1),$(1),a5-v11,A5-V11)
Image/Build/Profile/ALL0256N=$(call BuildFirmware/DefaultDualSize/$(1),$(1),all0256n,ALL0256N)
Image/Build/Profile/AWM002EVB=$(call BuildFirmware/DefaultDualSize/$(1),$(1),awm002-evb,AWM002-EVB)
broadway_mtd_size=7929856
Image/Build/Profile/BROADWAY=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),broadway,BROADWAY,$(broadway_mtd_size),Broadway Kernel Image,factory)
Image/Build/Profile/JHR-N805R=$(call BuildFirmware/JCG/$(1),$(1),jhr-n805r,JHR-N805R,29.24)
Image/Build/Profile/JHR-N825R=$(call BuildFirmware/JCG/$(1),$(1),jhr-n825r,JHR-N825R,23.24)
Image/Build/Profile/JHR-N926R=$(call BuildFirmware/JCG/$(1),$(1),jhr-n926r,JHR-N926R,25.24)
Image/Build/Profile/DIR-300-B1=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-300-b1,DIR-300-B1,wrgn23_dlwbr_dir300b)
Image/Build/Profile/DIR-600-B1=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-600-b1,DIR-600-B1,wrgn23_dlwbr_dir600b)
Image/Build/Profile/DIR-600-B2=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-600-b2,DIR-600-B2,wrgn23_dlwbr_dir600b)
Image/Build/Profile/DIR-615-D=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-615-d,DIR-615-D,wrgn23_dlwbr_dir615d)
Image/Build/Profile/DIR615H1=$(call BuildFirmware/DIR615H1/$(1),$(1))
Image/Build/Profile/DAP1350=$(call BuildFirmware/dap1350/$(1),$(1),dap-1350,DAP-1350,RT3052-AP-DAP1350-3)
Image/Build/Profile/DAP1350WW=$(call BuildFirmware/dap1350/$(1),$(1),dap-1350WW,DAP-1350,RT3052-AP-DAP1350WW-3)
Image/Build/Profile/DCS930=$(call BuildFirmware/DCS930/$(1),$(1),dcs-930,DCS-930)
Image/Build/Profile/DCS930LB1=$(call BuildFirmware/DCS930/$(1),$(1),dcs-930l-b1,DCS-930L-B1)
Image/Build/Profile/FONERA20N=$(call BuildFirmware/Edimax/$(1),$(1),fonera20n,FONERA20N,$(ralink_default_fw_size_8M),RSDK,NL1T,0x50000,0xc0000)
Image/Build/Profile/HLKRM04=$(call BuildFirmware/HLKRM04/$(1),$(1),hlk-rm04,HLKRM04,HLK-RM04)
Image/Build/Profile/M3=$(call BuildFirmware/Poray4M/$(1),$(1),m3,M3)
Image/Build/Profile/M4=$(call BuildFirmware/PorayDualSize/$(1),$(1),m4,M4)
Image/Build/Profile/MZKW300NH2=$(call BuildFirmware/Edimax/$(1),$(1),mzk-w300nh2,MZK-W300NH2,$(mzkw300nh2_mtd_size),CSYS,RN52,0x50000,0xc0000)
nw718_mtd_size=3801088
Image/Build/Profile/NW718=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),nw718m,NW718,$(nw718_mtd_size),ARA1B4NCRNW718;1,factory)
Image/Build/Profile/PX-4885=$(call BuildFirmware/DefaultDualSize/$(1),$(1),px-4885,PX-4885)
Image/Build/Profile/W150M=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),w150m,W150M,$(ralink_default_fw_size_4M),W150M Kernel Image,factory)
Image/Build/Profile/W306R_V20=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),w306r-v20,W306R_V20,$(ralink_default_fw_size_4M),linkn Kernel Image,factory)
Image/Build/Profile/WL-341V3=$(call BuildFirmware/WL-341V3/$(1),$(1))
Image/Build/Profile/WNCE2001=$(call BuildFirmware/WNCE2001/$(1),$(1),wnce2001,WNCE2001)
Image/Build/Profile/WR512-3GN=$(call BuildFirmware/DefaultDualSize/$(1),$(1),wr512-3ng,WR512-3GN)
Image/Build/Profile/WT1520=$(call BuildFirmware/PorayDualSize/$(1),$(1),wt1520,WT1520)
Image/Build/Profile/X5=$(call BuildFirmware/Poray8M/$(1),$(1),x5,X5)
Image/Build/Profile/X8=$(call BuildFirmware/Poray8M/$(1),$(1),x8,X8)
Image/Build/Profile/WHRG300N=$(call BuildFirmware/WHRG300N/$(1),$(1))
define LegacyDevice/ALL02393G
DEVICE_TITLE := Allnet ALL0239-3G
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
LEGACY_DEVICES += ALL02393G
define LegacyDevice/DIR610A1
DEVICE_TITLE := D-Link DIR-610 A1
DEVICE_PACKAGES := kmod-ledtrig-netdev kmod-ledtrig-timer
endef
LEGACY_DEVICES += DIR610A1
define LegacyDevice/3G6200N
DEVICE_TITLE := Edimax 3g-6200n
endef
LEGACY_DEVICES += 3G6200N
define LegacyDevice/3G6200NL
DEVICE_TITLE := Edimax 3g-6200nl
endef
LEGACY_DEVICES += 3G6200NL
define LegacyDevice/3G300M
DEVICE_TITLE := Tenda 3G300M
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
LEGACY_DEVICES += 3G300M
define LegacyDevice/A5-V11
DEVICE_TITLE := A5-V11
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
endef
LEGACY_DEVICES += A5-V11
define LegacyDevice/ALL0256N
DEVICE_TITLE := Allnet ALL0256N
DEVICE_PACKAGES := rssileds
endef
LEGACY_DEVICES += ALL0256N
define LegacyDevice/AWM002EVB
DEVICE_TITLE := AsiaRF AWM002-EVB
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev \
kmod-i2c-core kmod-i2c-gpio
endef
LEGACY_DEVICES += AWM002EVB
define LegacyDevice/BROADWAY
DEVICE_TITLE := Hauppauge Broadway
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
LEGACY_DEVICES += BROADWAY
define LegacyDevice/JHR-N805R
DEVICE_TITLE := JCG JHR-N805R
endef
LEGACY_DEVICES += JHR-N805R
define LegacyDevice/JHR-N825R
DEVICE_TITLE := JCG JHR-N825R
endef
LEGACY_DEVICES += JHR-N825R
define LegacyDevice/JHR-N926R
DEVICE_TITLE := JCG JHR-N926R
endef
LEGACY_DEVICES += JHR-N926R
define LegacyDevice/DIR-300-B1
DEVICE_TITLE := D-Link DIR-300 B1
endef
LEGACY_DEVICES += DIR-300-B1
define LegacyDevice/DIR-600-B1
DEVICE_TITLE := D-Link DIR-600 B1
endef
LEGACY_DEVICES += DIR-600-B1
define LegacyDevice/DIR-600-B2
DEVICE_TITLE := D-Link DIR-600 B2
endef
LEGACY_DEVICES += DIR-600-B2
define LegacyDevice/DIR-615-D
DEVICE_TITLE := D-Link DIR-615 D
endef
LEGACY_DEVICES += DIR-615-D
define LegacyDevice/DIR615H1
DEVICE_TITLE := D-Link DIR-615 H1
endef
LEGACY_DEVICES += DIR615H1
define LegacyDevice/DAP1350
DEVICE_TITLE := D-Link DAP-1350
endef
LEGACY_DEVICES += DAP1350
define LegacyDevice/DAP1350WW
DEVICE_TITLE := D-Link DAP-1350HW
endef
LEGACY_DEVICES += DAP1350WW
define LegacyDevice/DCS930
DEVICE_TITLE := D-Link DCS-930
DEVICE_PACKAGES := kmod-video-core kmod-video-uvc kmod-sound-core kmod-usb-audio kmod-usb-core kmod-usb-dwc2
endef
LEGACY_DEVICES += DCS930
define LegacyDevice/DCS930LB1
DEVICE_TITLE := D-Link DCS-930L B1
DEVICE_PACKAGES := kmod-video-core kmod-video-uvc kmod-sound-core kmod-usb-audio kmod-usb-core kmod-usb-ohci kmod-usb2
endef
LEGACY_DEVICES += DCS930LB1
define LegacyDevice/FONERA20N
DEVICE_TITLE := Fonera 2.0N
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
LEGACY_DEVICES += FONERA20N
define LegacyDevice/HLKRM04
DEVICE_TITLE := HILINK HLK-RM04
endef
LEGACY_DEVICES += HLKRM04
define LegacyDevice/M3
DEVICE_TITLE := Poray M3
DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
LEGACY_DEVICES += M3
define LegacyDevice/M4
DEVICE_TITLE := Poray M4
DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
LEGACY_DEVICES += M4
define LegacyDevice/MZKW300NH2
DEVICE_TITLE := Planex MZK-W300NH2
endef
LEGACY_DEVICES += MZKW300NH2
define LegacyDevice/NW718
DEVICE_TITLE := Netcore NW718
endef
LEGACY_DEVICES += NW718
define LegacyDevice/PX-4885
DEVICE_TITLE := 7Links PX-4885
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-usb2 kmod-usb-ohci kmod-ledtrig-usbdev kmod-leds-gpio
endef
LEGACY_DEVICES += PX-4885
define LegacyDevice/W150M
DEVICE_TITLE := Tenda W150M
endef
LEGACY_DEVICES += W150M
define LegacyDevice/W306R_V20
DEVICE_TITLE := Tenda W306R V2.0
endef
LEGACY_DEVICES += W306R_V20
define LegacyDevice/WL-341V3
DEVICE_TITLE := Sitecom WL-341 v3
endef
LEGACY_DEVICES += WL-341V3
define LegacyDevice/WNCE2001
DEVICE_TITLE := Netgear WNCE2001
endef
LEGACY_DEVICES += WNCE2001
define LegacyDevice/WR512-3GN
DEVICE_TITLE := WR512-3GN-like router
endef
LEGACY_DEVICES += WR512-3GN
define LegacyDevice/WT1520
DEVICE_TITLE := Nexx WT1520
endef
LEGACY_DEVICES += WT1520
define LegacyDevice/X5
DEVICE_TITLE := Poray X5/X6
DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
LEGACY_DEVICES += X5
define LegacyDevice/X8
DEVICE_TITLE := Poray X8
DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
LEGACY_DEVICES += X8
define LegacyDevice/WHRG300N
DEVICE_TITLE := Buffalo WHR-G300N
endef
LEGACY_DEVICES += WHRG300N

View File

@ -2,403 +2,528 @@
# RT305X Profiles
#
# sign an image to make it work with edimax tftp recovery
define BuildFirmware/Edimax/squashfs
$(call BuildFirmware/OF,$(1),$(2),$(3),$(4))
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
mkedimaximg -i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin \
-s $(5) -m $(6) -f $(7) -S $(8); \
fi
endef
BuildFirmware/Edimax/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
# Sign Poray images
define BuildFirmware/Poray4M/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
mkporayfw -B $(3) -F 4M \
-f $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin; \
fi
endef
BuildFirmware/Poray4M/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/Poray8M/squashfs
$(call BuildFirmware/Default8M/$(1),$(1),$(2),$(3))
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
mkporayfw -B $(3) -F 8M \
-f $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin; \
fi
endef
BuildFirmware/Poray8M/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
asl26555_8mb_mtd_size=7929856
define Device/asl26555-8M
DTS := ASL26555-8M
IMAGE_SIZE := $(asl26555_8mb_mtd_size)
DEVICE_TITLE := Alpha ASL26555
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
TARGET_DEVICES += asl26555-8M
asl26555_16mb_mtd_size=16252928
define BuildFirmware/ASL26555/squashfs
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2)-8M,$(3)-8M,$(asl26555_8mb_mtd_size))
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2)-16M,$(3)-16M,$(asl26555_16mb_mtd_size))
endef
define BuildFirmware/ASL26555/initramfs
$(call BuildFirmware/OF/initramfs,$(1),$(2)-8M,$(3)-8M)
$(call BuildFirmware/OF/initramfs,$(1),$(2)-16M,$(3)-16M)
define Device/asl26555-16M
DTS := ASL26555-16M
IMAGE_SIZE := $(asl26555_16mb_mtd_size)
DEVICE_TITLE := Alpha ASL26555 16M
DEVICE_PACKAGES :=
endef
TARGET_DEVICES += asl26555-16M
define BuildFirmware/JCG/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
-jcgimage -o $(call imgname,$(1),$(2))-factory.bin \
-u $(call sysupname,$(1),$(2)) -v $(4)
endef
define BuildFirmware/DIR300B1/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
-mkwrgimg -s $(4) -d /dev/mtdblock/2 \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin
endef
BuildFirmware/DIR300B1/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/DIR615H1/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),dir-615-h1,DIR-615-H1)
-mksenaofw -e $(call sysupname,$(1),dir-615-h1) \
-o $(call imgname,$(1),dir-615-h1)-factory.bin \
-r 0x218 -p 0x30 -t 3
endef
BuildFirmware/DIR615H1/initramfs=$(call BuildFirmware/OF/initramfs,$(1),dir-615-h1,DIR-615-H1)
# sign dap 1350 based images
dap1350_mtd_size=7667712
define BuildFirmware/dap1350/squashfs
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2),$(3),$(dap1350_mtd_size))
-mkdapimg -s $(4) \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin
endef
BuildFirmware/dap1350/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
define BuildFirmware/DCS930/squashfs
$(call BuildFirmware/Default4M/squashfs,squashfs,$(2),$(3))
dd if=$(KDIR)/vmlinux-$(2).bin.lzma of=$(KDIR)/image.$(2).combined bs=1048512 count=1 conv=sync
cat $(KDIR)/root.squashfs >> $(KDIR)/image.$(2).combined
$(call MkImage,lzma,$(KDIR)/image.$(2).combined,$(KDIR)/image.$(2))
$(call prepare_generic_squashfs,$(KDIR)/image.$(2))
if [ `stat -c%s "$(KDIR)/image.$(2)"` -gt $(ralink_default_fw_size_4M) ]; then \
echo "Warning: $(KDIR)/image.$(2) is too big" >&2; \
else \
dd if=$(KDIR)/image.$(2) of=$(KDIR)/dcs.tmp bs=64K count=5 conv=sync ;\
cat $(KDIR)/image.$(2) >> $(KDIR)/dcs.tmp ; \
dd if=$(KDIR)/dcs.tmp of=$(call imgname,$(1),$(2))-factory.bin bs=4096k count=1 conv=sync ;\
$(STAGING_DIR_HOST)/bin/mkdcs932 $(call imgname,$(1),$(2))-factory.bin ; \
fi
endef
BuildFirmware/DCS930/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
BuildFirmware/HLKRM04/squashfs=$(call BuildFirmware/Default4M/squashfs,$(1),$(2),$(3),$(4))
define BuildFirmware/HLKRM04/initramfs
$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3),$(4))
mkhilinkfw -e -i$(call imgname,$(1),$(2))-uImage.bin -o $(call imgname,$(1),$(2))-factory.bin;
endef
nixcore_8mb_mtd_size=8060928
define Device/nixcore-8M
DTS := NIXCORE-8M
IMAGE_SIZE := $(nixcore_8mb_mtd_size)
DEVICE_TITLE := NixcoreX1 8M
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-i2c-core kmod-i2c-ralink kmod-spi-dev
endef
TARGET_DEVICES += nixcore-8M
nixcore_16mb_mtd_size=16449536
define BuildFirmware/NIXCORE/squashfs
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2)-8M,$(3)-8M,$(nixcore_8mb_mtd_size))
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2)-16M,$(3)-16M,$(nixcore_16mb_mtd_size))
endef
define BuildFirmware/NIXCORE/initramfs
$(call BuildFirmware/OF/initramfs,$(1),$(2)-8M,$(3)-8M)
$(call BuildFirmware/OF/initramfs,$(1),$(2)-16M,$(3)-16M)
define Device/nixcore-16M
DTS := NIXCORE-16M
IMAGE_SIZE := $(nixcore_16mb_mtd_size)
DEVICE_TITLE := NixcoreX1 16M
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-i2c-core kmod-i2c-ralink kmod-spi-dev
endef
TARGET_DEVICES += nixcore-16M
vocore_8mb_mtd_size=8060928
define Device/vocore-8M
DTS := VOCORE-8M
IMAGE_SIZE := $(vocore_8mb_mtd_size)
DEVICE_TITLE := VoCore 8M
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
TARGET_DEVICES += vocore-8M
vocore_16mb_mtd_size=16449536
define BuildFirmware/VOCORE/squashfs
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2)-8M,$(3)-8M,$(vocore_8mb_mtd_size))
$(call BuildFirmware/CustomFlash/$(1),$(1),$(2)-16M,$(3)-16M,$(vocore_16mb_mtd_size))
define Device/vocore-16M
DTS := VOCORE-16M
IMAGE_SIZE := $(vocore_16mb_mtd_size)
DEVICE_TITLE := VoCore 16M
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
define BuildFirmware/VOCORE/initramfs
$(call BuildFirmware/OF/initramfs,$(1),$(2)-8M,$(3)-8M)
$(call BuildFirmware/OF/initramfs,$(1),$(2)-16M,$(3)-16M)
endef
# sign Buffalo images
define BuildFirmware/Buffalo
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
buffalo-enc -p $(3) -v 1.76 \
-i $(KDIR)/vmlinux-$(2).uImage \
-o $(KDIR)/vmlinux-$(2).uImage.enc; \
buffalo-enc -p $(3) -v 1.76 \
-i $(KDIR)/root.$(1) \
-o $(KDIR)/root.$(2).enc; \
buffalo-tag -b $(3) -p $(3) -a ram -v 1.76 -m 1.01 \
-l mlang8 -f 1 -r EU \
-i $(KDIR)/vmlinux-$(2).uImage.enc \
-i $(KDIR)/root.$(2).enc \
-o $(call imgname,$(1),$(2))-factory-EU.bin; \
fi
endef
# FIXME: this looks broken
buffalo_whrg300n_mtd_size=3801088
define BuildFirmware/WHRG300N/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),whr-g300n,WHR-G300N)
# the following line has a bad argument 3 ... the old Makefile was already broken
$(call BuildFirmware/Buffalo,$(1),whr-g300n,whr-g300n)
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
( \
echo -n -e "# Airstation FirmWare\nrun u_fw\nreset\n\n" | \
dd bs=512 count=1 conv=sync; \
dd if=$(call sysupname,$(1),whr-g300n); \
) > $(KDIR)/whr-g300n-tftp.tmp && \
buffalo-tftp -i $(KDIR)/whr-g300n-tftp.tmp \
-o $(call imgname,$(1),whr-g300n)-tftp.bin; \
fi
endef
BuildFirmware/WHRG300N/initramfs=$(call BuildFirmware/OF/initramfs,$(1),whr-g300n,WHR-G300N)
kernel_size_wl341v3=917504
rootfs_size_wl341v3=2949120
define BuildFirmware/WL-341V3/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),wl-341v3,WL-341V3)
# This code looks broken and really needs to be converted to C
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
( \
dd if=/dev/zero bs=195936 count=1; \
echo "1.01"; \
dd if=/dev/zero bs=581 count=1; \
echo -n -e "\x73\x45\x72\x43\x6F\x4D\x6D\x00\x01\x00\x00\x59\x4E\x37\x95\x58\x10\x00\x20\x00\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x03\x00\x00\x80\x00\x00\x00\x00\x03\x00\x00\x10\x12\x00\x00\x00\x10\x73\x45\x72\x43\x6F\x4D\x6D"; \
dd if=/dev/zero bs=65552 count=1; \
dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(kernel_size_wl341v3) conv=sync; \
dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
dd if=/dev/zero bs=`expr 4194304 - 262144 - 16 - $(kernel_size_wl341v3) - \( \( \( \`stat -c%s $(KDIR)/root.$(1)\` / 65536 \) + 1 \) \* 65536 \)` count=1; \
echo -n -e "\x11\x03\x80\x00\x10\x12\x90\xF7\x65\x52\x63\x4F\x6D\x4D\x00\x00"; \
) > $(call imgname,$(1),$(2))-factory.bin; \
fi
endef
BuildFirmware/WL-341V3/initramfs=$(call BuildFirmware/OF/initramfs,$(1),wl-341v3,WL-341V3)
define BuildFirmware/WNCE2001/squashfs
$(call BuildFirmware/Default4M/$(1),$(1),$(2),$(3))
-mkdapimg -s RT3052-AP-WNCE2001-3 -r WW -v 1.0.0.99 \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory-worldwide.bin
-mkdapimg -s RT3052-AP-WNCE2001-3 -r NA -v 1.0.0.99 \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory-northamerica.bin
endef
BuildFirmware/WNCE2001/initramfs=$(call BuildFirmware/OF/initramfs,$(1),$(2),$(3))
TARGET_DEVICES += vocore-16M
define BuildFirmware/UIMAGE_8M
$(call MkCombineduImage,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_8M)),$(kernel_size_8M),$(rootfs_size_8M),$(7))
endef
define Image/Build/Profile/ALL02393G
$(call Image/Build/Template/$(image_type)/$(1),UIMAGE_8M,all0239-3g,ALL0239-3G,ttyS1,57600,phys)
endef
Image/Build/Profile/DIR610A1=$(call BuildFirmware/Seama/$(1),$(1),dir-610-a1,DIR-610-A1,wrgn59_dlob.hans_dir610,$(ralink_default_fw_size_4M))
edimax_3g6200n_mtd_size=3735552
Image/Build/Profile/3G6200N=$(call BuildFirmware/Edimax/$(1),$(1),3g-6200n,3G-6200N,$(edimax_3g6200n_mtd_size),CSYS,3G62,0x50000,0xc0000)
Image/Build/Profile/3G6200NL=$(call BuildFirmware/Edimax/$(1),$(1),3g-6200nl,3G-6200NL,$(edimax_3g6200n_mtd_size),CSYS,3G62,0x50000,0xc0000)
Image/Build/Profile/3G300M=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),3g300m,3G300M,$(ralink_default_fw_size_4M),3G150M_SPI Kernel Image,factory)
Image/Build/Profile/A5-V11=$(call BuildFirmware/Poray4M/$(1),$(1),a5-v11,A5-V11)
Image/Build/Profile/AIR3GII=$(call BuildFirmware/Default4M/$(1),$(1),air3gii,AIR3GII)
Image/Build/Profile/ALL0256N=$(call BuildFirmware/DefaultDualSize/$(1),$(1),all0256n,ALL0256N)
allnet_all5002_mtd_size=33226752
Image/Build/Profile/ALL5002=$(call BuildFirmware/CustomFlash/$(1),$(1),all5002,ALL5002,$(allnet_all5002_mtd_size))
Image/Build/Profile/ALL5003=$(call BuildFirmware/CustomFlash/$(1),$(1),all5003,ALL5003,$(allnet_all5002_mtd_size))
define Device/all5002
DTS := ALL5002
IMAGE_SIZE := $(allnet_all5002_mtd_size)
DEVICE_TITLE := Allnet ALL5002
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev \
kmod-i2c-core kmod-i2c-gpio kmod-hwmon-lm92 kmod-gpio-pcf857x
endef
TARGET_DEVICES += all5002
define Device/all5003
DTS := ALL5003
IMAGE_SIZE := $(allnet_all5002_mtd_size)
DEVICE_TITLE := Allnet ALL5003
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev \
kmod-i2c-core kmod-i2c-gpio kmod-hwmon-lm92 kmod-gpio-pcf857x
endef
TARGET_DEVICES += all5003
argus_atp52b_mtd_size=7995392
Image/Build/Profile/ATP-52B=$(call BuildFirmware/CustomFlash/$(1),$(1),atp-52b,ATP-52B,$(argus_atp52b_mtd_size))
Image/Build/Profile/ASL26555=$(call BuildFirmware/ASL26555/$(1),$(1),asl26555,ASL26555)
Image/Build/Profile/AWM002EVB=$(call BuildFirmware/DefaultDualSize/$(1),$(1),awm002-evb,AWM002-EVB)
Image/Build/Profile/AWM003EVB=$(call BuildFirmware/Default8M/$(1),$(1),awm003-evb,AWM003-EVB)
Image/Build/Profile/AWAPN2403=$(call BuildFirmware/Default4M/$(1),$(1),awmapn2403,AWAPN2403)
Image/Build/Profile/BC2=$(call BuildFirmware/Default8M/$(1),$(1),bc2,BC2)
broadway_mtd_size=7929856
Image/Build/Profile/BROADWAY=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),broadway,BROADWAY,$(broadway_mtd_size),Broadway Kernel Image,factory)
Image/Build/Profile/CARAMBOLA=$(call BuildFirmware/Default8M/$(1),$(1),carambola,CARAMBOLA)
Image/Build/Profile/D105=$(call BuildFirmware/Default4M/$(1),$(1),d105,D105)
Image/Build/Profile/JHR-N805R=$(call BuildFirmware/JCG/$(1),$(1),jhr-n805r,JHR-N805R,29.24)
Image/Build/Profile/JHR-N825R=$(call BuildFirmware/JCG/$(1),$(1),jhr-n825r,JHR-N825R,23.24)
Image/Build/Profile/JHR-N926R=$(call BuildFirmware/JCG/$(1),$(1),jhr-n926r,JHR-N926R,25.24)
define Image/Build/Profile/JCG
$(call Image/Build/Profile/JHR-N805R,$(1))
$(call Image/Build/Profile/JHR-N825R,$(1))
$(call Image/Build/Profile/JHR-N926R,$(1))
define Device/atp-52b
DTS := ATP-52B
IMAGE_SIZE := $(argus_atp52b_mtd_size)
DEVICE_TITLE := Argus ATP-52B
endef
Image/Build/Profile/DIR-300-B1=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-300-b1,DIR-300-B1,wrgn23_dlwbr_dir300b)
Image/Build/Profile/DIR-600-B1=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-600-b1,DIR-600-B1,wrgn23_dlwbr_dir600b)
Image/Build/Profile/DIR-600-B2=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-600-b2,DIR-600-B2,wrgn23_dlwbr_dir600b)
Image/Build/Profile/DIR-615-D=$(call BuildFirmware/DIR300B1/$(1),$(1),dir-615-d,DIR-615-D,wrgn23_dlwbr_dir615d)
Image/Build/Profile/DIR-620-A1=$(call BuildFirmware/Default8M/$(1),$(1),dir-620-a1,DIR-620-A1)
Image/Build/Profile/DIR-620-D1=$(call BuildFirmware/Default8M/$(1),$(1),dir-620-d1,DIR-620-D1)
Image/Build/Profile/DIR615H1=$(call BuildFirmware/DIR615H1/$(1),$(1))
Image/Build/Profile/DAP1350=$(call BuildFirmware/dap1350/$(1),$(1),dap-1350,DAP-1350,RT3052-AP-DAP1350-3)
Image/Build/Profile/DAP1350WW=$(call BuildFirmware/dap1350/$(1),$(1),dap-1350WW,DAP-1350,RT3052-AP-DAP1350WW-3)
Image/Build/Profile/DCS930=$(call BuildFirmware/DCS930/$(1),$(1),dcs-930,DCS-930)
Image/Build/Profile/DCS930LB1=$(call BuildFirmware/DCS930/$(1),$(1),dcs-930l-b1,DCS-930L-B1)
Image/Build/Profile/ESR-9753=$(call BuildFirmware/Default4M/$(1),$(1),esr-9753,ESR-9753)
Image/Build/Profile/HW550-3G=$(call BuildFirmware/Default8M/$(1),$(1),hw550-3g,HW550-3G)
TARGET_DEVICES += atp-52b
belkin_f5d8235v2_mtd_size=7929856
Image/Build/Profile/F5D8235V2=$(call BuildFirmware/CustomFlash/$(1),$(1),f5d8235v2,F5D8235_V2,$(belkin_f5d8235v2_mtd_size))
# 0x770000
belkin_f7c027_mtd_size=7798784
Image/Build/Profile/F7C027=$(call BuildFirmware/CustomFlash/$(1),$(1),f7c027,F7C027,$(belkin_f7c027_mtd_size))
Image/Build/Profile/FONERA20N=$(call BuildFirmware/Edimax/$(1),$(1),fonera20n,FONERA20N,$(ralink_default_fw_size_8M),RSDK,NL1T,0x50000,0xc0000)
Image/Build/Profile/RT-N13U=$(call BuildFirmware/Default8M/$(1),$(1),rt-n13u,RT-N13U)
#Image/Build/Profile/HG255D=$(call BuildFirmware/Default16M/$(1),$(1),hg255d,HG255D)
Image/Build/Profile/FREESTATION5=$(call BuildFirmware/Default8M/$(1),$(1),freestation5,FREESTATION5)
Image/Build/Profile/IP2202=$(call BuildFirmware/Default8M/$(1),$(1),ip2202,IP2202)
Image/Build/Profile/HLKRM04=$(call BuildFirmware/HLKRM04/$(1),$(1),hlk-rm04,HLKRM04,HLK-RM04)
Image/Build/Profile/HT-TM02=$(call BuildFirmware/Default8M/$(1),$(1),ht-tm02,HT-TM02)
Image/Build/Profile/M3=$(call BuildFirmware/Poray4M/$(1),$(1),m3,M3)
Image/Build/Profile/M4=$(call BuildFirmware/PorayDualSize/$(1),$(1),m4,M4)
Image/Build/Profile/MOFI3500-3GN=$(call BuildFirmware/Default8M/$(1),$(1),mofi3500-3gn,MOFI3500-3GN)
# Kernel name should be "Linux Kernel Image" to make the OpenWrt image installable from factory Web UI
Image/Build/Profile/3G150B=$(call BuildFirmware/Default4M/$(1),$(1),3g150b,3G150B,Linux Kernel Image)
Image/Build/Profile/MR102N=$(call BuildFirmware/Default8M/$(1),$(1),mr-102n,MR-102N)
Image/Build/Profile/MPRA1=$(call BuildFirmware/Default4M/$(1),$(1),mpr-a1,MPRA1,Linux Kernel Image)
Image/Build/Profile/MPRA2=$(call BuildFirmware/Default8M/$(1),$(1),mpr-a2,MPRA2,Linux Kernel Image)
Image/Build/Profile/DIR-300-B7=$(call BuildFirmware/Default4M/$(1),$(1),dir-300-b7,DIR-300-B7)
Image/Build/Profile/DIR-320-B1=$(call BuildFirmware/Default8M/$(1),$(1),dir-320-b1,DIR-320-B1)
Image/Build/Profile/NBG-419N=$(call BuildFirmware/Default4M/$(1),$(1),nbg-419n,NBG-419N)
Image/Build/Profile/MZKW300NH2=$(call BuildFirmware/Edimax/$(1),$(1),mzk-w300nh2,MZK-W300NH2,$(mzkw300nh2_mtd_size),CSYS,RN52,0x50000,0xc0000)
Image/Build/Profile/MZKWDPR=$(call BuildFirmware/Default8M/$(1),$(1),mzk-wdpr,MZK-WDPR)
Image/Build/Profile/NCS601W=$(call BuildFirmware/Default8M/$(1),$(1),ncs601W,NCS601W)
nw718_mtd_size=3801088
Image/Build/Profile/NIXCORE=$(call BuildFirmware/NIXCORE/$(1),$(1),nixcore,NIXCORE)
Image/Build/Profile/NW718=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),nw718m,NW718,$(nw718_mtd_size),ARA1B4NCRNW718;1,factory)
Image/Build/Profile/M2M=$(call BuildFirmware/Default8M/$(1),$(1),m2m,M2M,Linux Kernel Image)
Image/Build/Profile/MINIEMBPLUG=$(call BuildFirmware/Default8M/$(1),$(1),miniembplug,MINIEMBPLUG)
Image/Build/Profile/MINIEMBWIFI=$(call BuildFirmware/Default8M/$(1),$(1),miniembwifi,MINIEMBWIFI)
Image/Build/Profile/PSR-680W=$(call BuildFirmware/Default4M/$(1),$(1),psr-680w,PSR-680W)
Image/Build/Profile/PWH2004=$(call BuildFirmware/Default8M/$(1),$(1),pwh2004,PWH2004)
Image/Build/Profile/PX-4885=$(call BuildFirmware/DefaultDualSize/$(1),$(1),px-4885,PX-4885)
Image/Build/Profile/RT5350F-OLINUXINO=$(call BuildFirmware/Default8M/$(1),$(1),rt5350f-olinuxino,RT5350F-OLINUXINO)
Image/Build/Profile/RT5350F-OLINUXINO-EVB=$(call BuildFirmware/Default8M/$(1),$(1),rt5350f-olinuxino-evb,RT5350F-OLINUXINO-EVB)
Image/Build/Profile/RTG32B1=$(call BuildFirmware/Default4M/$(1),$(1),rt-g32-b1,RT-G32-B1)
Image/Build/Profile/RTN10PLUS=$(call BuildFirmware/Default4M/$(1),$(1),rt-n10-plus,RT-N10-PLUS)
Image/Build/Profile/RUT5XX=$(call BuildFirmware/Default8M/$(1),$(1),rut5xx,RUT5XX)
Image/Build/Profile/SL-R7205=$(call BuildFirmware/Default4M/$(1),$(1),sl-r7205,SL-R7205)
Image/Build/Profile/V22RW-2X2=$(call BuildFirmware/Default4M/$(1),$(1),v22rw-2x2,V22RW-2X2)
Image/Build/Profile/VOCORE=$(call BuildFirmware/VOCORE/$(1),$(1),vocore,VOCORE)
Image/Build/Profile/W150M=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),w150m,W150M,$(ralink_default_fw_size_4M),W150M Kernel Image,factory)
Image/Build/Profile/W306R_V20=$(call BuildFirmware/CustomFlashFactory/$(1),$(1),w306r-v20,W306R_V20,$(ralink_default_fw_size_4M),linkn Kernel Image,factory)
Image/Build/Profile/W502U=$(call BuildFirmware/Default8M/$(1),$(1),w502u,W502U)
Image/Build/Profile/WCR150GN=$(call BuildFirmware/Default4M/$(1),$(1),wcr150gn,WCR150GN)
Image/Build/Profile/MZK-DP150N=$(call BuildFirmware/Default4M/$(1),$(1),mzk-dp150n,MZK-DP150N)
Image/Build/Profile/WHRG300N=$(call BuildFirmware/WHRG300N/$(1),$(1))
Image/Build/Profile/WIZARD8800=$(call BuildFirmware/Default8M/$(1),$(1),wizard-8800,WIZARD8800,Linux Kernel Image)
Image/Build/Profile/WIZFI630A=$(call BuildFirmware/Default16M/$(1),$(1),wizfi630a,WIZFI630A)
Image/Build/Profile/WL-330N=$(call BuildFirmware/Default4M/$(1),$(1),wl-330n,WL-330N)
Image/Build/Profile/WL-330N3G=$(call BuildFirmware/Default4M/$(1),$(1),wl-330n3g,WL-330N3G)
Image/Build/Profile/WL-341V3=$(call BuildFirmware/WL-341V3/$(1),$(1))
Image/Build/Profile/WL-351=$(call BuildFirmware/Default4M/$(1),$(1),wl-351,WL-351)
Image/Build/Profile/WNCE2001=$(call BuildFirmware/WNCE2001/$(1),$(1),wnce2001,WNCE2001)
Image/Build/Profile/WR512-3GN=$(call BuildFirmware/DefaultDualSize/$(1),$(1),wr512-3ng,WR512-3GN)
Image/Build/Profile/WT1520=$(call BuildFirmware/PorayDualSize/$(1),$(1),wt1520,WT1520)
Image/Build/Profile/UR-326N4G=$(call BuildFirmware/Default4M/$(1),$(1),ur-326n4g,UR-326N4G)
Image/Build/Profile/UR-336UN=$(call BuildFirmware/Default8M/$(1),$(1),ur-336un,UR-336UN)
Image/Build/Profile/WR6202=$(call BuildFirmware/Default8M/$(1),$(1),wr6202,WR6202)
Image/Build/Profile/X5=$(call BuildFirmware/Poray8M/$(1),$(1),x5,X5)
Image/Build/Profile/X8=$(call BuildFirmware/Poray8M/$(1),$(1),x8,X8)
Image/Build/Profile/XDXRN502J=$(call BuildFirmware/Default4M/$(1),$(1),xdxrn502j,XDXRN502J)
define Image/Build/Profile/Default
$(call Image/Build/Profile/3G6200N,$(1))
$(call Image/Build/Profile/3G6200NL,$(1))
$(call Image/Build/Profile/3G150B,$(1))
$(call Image/Build/Profile/3G300M,$(1))
$(call Image/Build/Profile/A5-V11,$(1))
$(call Image/Build/Profile/AIR3GII,$(1))
$(call Image/Build/Profile/ALL02393G,$(1))
$(call Image/Build/Profile/ALL0256N,$(1))
$(call Image/Build/Profile/ALL5002,$(1))
$(call Image/Build/Profile/ALL5003,$(1))
$(call Image/Build/Profile/ASL26555,$(1))
$(call Image/Build/Profile/ATP-52B,$(1))
$(call Image/Build/Profile/AWM002EVB,$(1))
$(call Image/Build/Profile/AWAPN2403,$(1))
$(call Image/Build/Profile/BC2,$(1))
$(call Image/Build/Profile/BROADWAY,$(1))
$(call Image/Build/Profile/CARAMBOLA,$(1))
$(call Image/Build/Profile/D105,$(1))
$(call Image/Build/Profile/DIR-300-B1,$(1))
$(call Image/Build/Profile/DIR-600-B1,$(1))
$(call Image/Build/Profile/DIR-300-B7,$(1))
$(call Image/Build/Profile/DIR-320-B1,$(1))
$(call Image/Build/Profile/DIR-600-B2,$(1))
$(call Image/Build/Profile/DIR610A1,$(1))
$(call Image/Build/Profile/DIR-615-D,$(1))
$(call Image/Build/Profile/DIR-620-A1,$(1))
$(call Image/Build/Profile/DIR-620-D1,$(1))
$(call Image/Build/Profile/DIR615H1,$(1))
$(call Image/Build/Profile/DAP1350,$(1))
$(call Image/Build/Profile/DAP1350WW,$(1))
$(call Image/Build/Profile/DCS930,$(1))
$(call Image/Build/Profile/DCS930LB1,$(1))
$(call Image/Build/Profile/ESR-9753,$(1))
$(call Image/Build/Profile/F7C027,$(1))
$(call Image/Build/Profile/F5D8235V2,$(1))
$(call Image/Build/Profile/FONERA20N,$(1))
$(call Image/Build/Profile/FREESTATION5,$(1))
# $(call Image/Build/Profile/HG255D,$(1))
$(call Image/Build/Profile/HLKRM04,$(1))
$(call Image/Build/Profile/HT-TM02,$(1))
$(call Image/Build/Profile/HW550-3G,$(1))
$(call Image/Build/Profile/IP2202,$(1))
$(call Image/Build/Profile/JHR-N805R,$(1))
$(call Image/Build/Profile/JHR-N825R,$(1))
$(call Image/Build/Profile/JHR-N926R,$(1))
$(call Image/Build/Profile/M2M,$(1))
$(call Image/Build/Profile/M3,$(1))
$(call Image/Build/Profile/M4,$(1))
$(call Image/Build/Profile/MOFI3500-3GN,$(1))
$(call Image/Build/Profile/MR102N,$(1))
$(call Image/Build/Profile/MPRA1,$(1))
$(call Image/Build/Profile/MPRA2,$(1))
$(call Image/Build/Profile/MZKW300NH2,$(1))
$(call Image/Build/Profile/MZKWDPR,$(1))
$(call Image/Build/Profile/NBG-419N,$(1))
$(call Image/Build/Profile/NCS601W,$(1))
$(call Image/Build/Profile/NIXCORE,$(1))
$(call Image/Build/Profile/NW718,$(1))
$(call Image/Build/Profile/MINIEMBWIFI,$(1))
$(call Image/Build/Profile/MINIEMBPLUG,$(1))
$(call Image/Build/Profile/PSR-680W,$(1))
$(call Image/Build/Profile/PWH2004,$(1))
$(call Image/Build/Profile/PX-4885,$(1))
$(call Image/Build/Profile/RT5350F-OLINUXINO,$(1))
$(call Image/Build/Profile/RT5350F-OLINUXINO-EVB,$(1))
$(call Image/Build/Profile/RTG32B1,$(1))
$(call Image/Build/Profile/RTN10PLUS,$(1))
$(call Image/Build/Profile/RT-N13U,$(1))
$(call Image/Build/Profile/RUT5XX,$(1))
$(call Image/Build/Profile/SL-R7205,$(1))
$(call Image/Build/Profile/UR-326N4G,$(1))
$(call Image/Build/Profile/V22RW-2X2,$(1))
$(call Image/Build/Profile/VOCORE,$(1))
$(call Image/Build/Profile/W150M,$(1))
$(call Image/Build/Profile/W306R_V20,$(1))
$(call Image/Build/Profile/W502U,$(1))
$(call Image/Build/Profile/WCR150GN,$(1))
$(call Image/Build/Profile/WHRG300N,$(1))
$(call Image/Build/Profile/WIZARD8800,$(1))
$(call Image/Build/Profile/WIZFI630A,$(1))
$(call Image/Build/Profile/WL-330N,$(1))
$(call Image/Build/Profile/WL-330N3G,$(1))
$(call Image/Build/Profile/WL-341V3,$(1))
$(call Image/Build/Profile/WNCE2001,$(1))
$(call Image/Build/Profile/WR512-3GN,$(1))
$(call Image/Build/Profile/WR6202,$(1))
$(call Image/Build/Profile/WT1520,$(1))
$(call Image/Build/Profile/X5,$(1))
$(call Image/Build/Profile/X8,$(1))
$(call Image/Build/Profile/XDXRN502J,$(1))
$(call Image/Build/Profile/MZK-DP150N,$(1))
define Device/f5d8235v2
DTS := F5D8235_V2
IMAGE_SIZE := $(belkin_f5d8235v2_mtd_size)
DEVICE_TITLE := Belkin F5D8235 v2
endef
TARGET_DEVICES += f5d8235v2
belkin_f7c027_mtd_size=7798784
define Device/f7c027
DTS := F7C027
IMAGE_SIZE := $(belkin_f7c027_mtd_size)
DEVICE_TITLE := Belkin F7C027
DEVICE_PACKAGES := -kmod-usb-core -kmod-usb-dwc2 -kmod-ledtrig-usbdev
endef
TARGET_DEVICES += f7c027
define Device/air3gii
DTS := AIR3GII
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := AirLive Air3GII
endef
TARGET_DEVICES += air3gii
define Device/awm003-evb
DTS := AWM003-EVB
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := AsiaRF AWM003 EVB
endef
TARGET_DEVICES += awm003-evb
define Device/awmapn2403
DTS := AWAPN2403
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := AsiaRF AWAPN2403
endef
TARGET_DEVICES += awmapn2403
define Device/bc2
DTS := BC2
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := NexAira BC2
endef
TARGET_DEVICES += bc2
define Device/carambola
DTS := CARAMBOLA
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := 8devices Carambola
DEVICE_PACKAGES :=
endef
TARGET_DEVICES += carambola
define Device/d105
DTS := D105
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Huawei D105
endef
TARGET_DEVICES += d105
define Device/dir-620-a1
DTS := DIR-620-A1
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := D-Link DIR-620 A1
endef
TARGET_DEVICES += dir-620-a1
define Device/dir-620-d1
DTS := DIR-620-D1
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := D-Link DIR-620 D1
endef
TARGET_DEVICES += dir-620-d1
define Device/esr-9753
DTS := ESR-9753
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := EnGenius ESR-9753
endef
TARGET_DEVICES += esr-9753
define Device/hw550-3g
DTS := HW550-3G
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Aztech HW550-3G
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
TARGET_DEVICES += hw550-3g
define Device/rt-n13u
DTS := RT-N13U
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Asus RT-N13U
DEVICE_PACKAGES := kmod-leds-gpio kmod-rt2800-pci wpad-mini kmod-usb-dwc2
endef
TARGET_DEVICES += rt-n13u
define Device/freestation5
DTS := FREESTATION5
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := ARC Wireless FreeStation
DEVICE_PACKAGES := kmod-usb-dwc2 kmod-rt2500-usb kmod-rt2800-usb kmod-rt2x00-usb
endef
TARGET_DEVICES += freestation5
define Device/ip2202
DTS := IP2202
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Poray IP2202
endef
TARGET_DEVICES += ip2202
define Device/ht-tm02
DTS := HT-TM02
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := HooToo HT-TM02
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev
endef
TARGET_DEVICES += ht-tm02
define Device/mofi3500-3gn
DTS := MOFI3500-3GN
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := MoFi Network MOFI3500-3GN
endef
TARGET_DEVICES += mofi3500-3gn
define Device/3g150b
DTS := 3G150B
IMAGE_SIZE := $(ralink_default_fw_size_4M)
UIMAGE_NAME:= Linux Kernel Image
DEVICE_TITLE := Tenda 3G150B
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
TARGET_DEVICES += 3g150b
define Device/mr-102n
DTS := MR-102N
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := AXIMCom MR-102N
endef
TARGET_DEVICES += mr-102n
define Device/mpr-a1
DTS := MPRA1
IMAGE_SIZE := $(ralink_default_fw_size_4M)
UIMAGE_NAME:= Linux Kernel Image
DEVICE_TITLE := HAME MPR-A1
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-netdev
endef
TARGET_DEVICES += mpr-a1
define Device/mpr-a2
DTS := MPRA2
IMAGE_SIZE := $(ralink_default_fw_size_8M)
UIMAGE_NAME:= Linux Kernel Image
DEVICE_TITLE := HAME MPR-A2
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-netdev
endef
TARGET_DEVICES += mpr-a2
define Device/dir-300-b7
DTS := DIR-300-B7
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := D-Link DIR-300 B7
endef
TARGET_DEVICES += dir-300-b7
define Device/dir-320-b1
DTS := DIR-320-B1
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := D-Link DIR-320 B1
endef
TARGET_DEVICES += dir-320-b1
define Device/nbg-419n
DTS := NBG-419N
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := ZyXEL NBG-419N
endef
TARGET_DEVICES += nbg-419n
define Device/mzk-wdpr
DTS := MZK-WDPR
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Planex MZK-WDPR
endef
TARGET_DEVICES += mzk-wdpr
define Device/ncs601W
DTS := NCS601W
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Wansview NCS601W
DEVICE_PACKAGES := kmod-video-core kmod-video-uvc \
kmod-usb-core kmod-usb-ohci
endef
TARGET_DEVICES += ncs601W
define Device/m2m
DTS := M2M
IMAGE_SIZE := $(ralink_default_fw_size_8M)
UIMAGE_NAME:= Linux Kernel Image
DEVICE_TITLE := Intenso Memory 2 Move
DEVICE_PACKAGES := kmod-ledtrig-netdev kmod-ledtrig-timer \
kmod-usb-core kmod-usb2 kmod-usb-storage kmod-scsi-core \
kmod-fs-ext4 kmod-fs-vfat block-mount
endef
TARGET_DEVICES += m2m
define Device/miniembplug
DTS := MINIEMBPLUG
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Omnima MiniEMBPlug
endef
TARGET_DEVICES += miniembplug
define Device/miniembwifi
DTS := MINIEMBWIFI
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Omnima MiniEMBWiFi
endef
TARGET_DEVICES += miniembwifi
define Device/psr-680w
DTS := PSR-680W
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Petatel PSR-680W Wireless 3G Router
endef
TARGET_DEVICES += psr-680w
define Device/pwh2004
DTS := PWH2004
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Prolink PWH2004
DEVICE_PACKAGES :=
endef
TARGET_DEVICES += pwh2004
define Device/rt5350f-olinuxino
DTS := RT5350F-OLINUXINO
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := RT5350F-OLinuXino
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
TARGET_DEVICES += rt5350f-olinuxino
define Device/rt5350f-olinuxino-evb
DTS := RT5350F-OLINUXINO-EVB
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := RT5350F-OLinuXino-EVB
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
TARGET_DEVICES += rt5350f-olinuxino-evb
define Device/rt-g32-b1
DTS := RT-G32-B1
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Skyline SL-R7205 Wireless 3G Router
endef
TARGET_DEVICES += rt-g32-b1
define Device/rt-n10-plus
DTS := RT-N10-PLUS
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Asus RT-N10+
endef
TARGET_DEVICES += rt-n10-plus
define Device/rut5xx
DTS := RUT5XX
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := Teltonika RUT5XX
endef
TARGET_DEVICES += rut5xx
define Device/sl-r7205
DTS := SL-R7205
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Skyline SL-R7205 Wireless 3G Router
endef
TARGET_DEVICES += sl-r7205
define Device/v22rw-2x2
DTS := V22RW-2X2
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Ralink AP-RT3052-V22RW-2X2
endef
TARGET_DEVICES += v22rw-2x2
define Device/w502u
DTS := W502U
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := ALFA Networks W502U
endef
TARGET_DEVICES += w502u
define Device/wcr150gn
DTS := WCR150GN
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Sparklan WCR-150GN
endef
TARGET_DEVICES += wcr150gn
define Device/mzk-dp150n
DTS := MZK-DP150N
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Planex MZK-DP150N
DEVICE_PACKAGES := kmod-spi-dev
endef
TARGET_DEVICES += mzk-dp150n
define Device/wizard-8800
DTS := WIZARD8800
IMAGE_SIZE := $(ralink_default_fw_size_8M)
UIMAGE_NAME:= Linux Kernel Image
DEVICE_TITLE := EasyAcc WIZARD 8800
endef
TARGET_DEVICES += wizard-8800
define Device/wizfi630a
DTS := WIZFI630A
IMAGE_SIZE := $(ralink_default_fw_size_16M)
DEVICE_TITLE := WIZnet WizFi630A
endef
TARGET_DEVICES += wizfi630a
define Device/wl-330n
DTS := WL-330N
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Asus WL-330N
endef
TARGET_DEVICES += wl-330n
define Device/wl-330n3g
DTS := WL-330N3G
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Asus WL-330N3G
DEVICE_PACKAGES :=
endef
TARGET_DEVICES += wl-330n3g
define Device/wl-351
DTS := WL-351
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := Sitecom WL-351 v1
DEVICE_PACKAGES := kmod-switch-rtl8366rb kmod-swconfig swconfig
endef
TARGET_DEVICES += wl-351
define Device/ur-326n4g
DTS := UR-326N4G
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := UPVEL UR-326N4G
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
TARGET_DEVICES += ur-326n4g
define Device/ur-336un
DTS := UR-336UN
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := UPVEL UR-336UN
DEVICE_PACKAGES := kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
TARGET_DEVICES += ur-336un
define Device/wr6202
DTS := WR6202
IMAGE_SIZE := $(ralink_default_fw_size_8M)
DEVICE_TITLE := AWB WR6202
endef
TARGET_DEVICES += wr6202
define Device/xdxrn502j
DTS := XDXRN502J
IMAGE_SIZE := $(ralink_default_fw_size_4M)
DEVICE_TITLE := XDX RN502J
endef
TARGET_DEVICES += xdxrn502j

View File

@ -48,12 +48,50 @@ rootfs_size_BR6475ND:=5832704
Image/Build/Profile/BR6475ND=$(call BuildFirmware/EdimaxCombined/$(1),$(1),br-6475nd,BR-6475ND,$(kernel_size_BR6475ND),$(rootfs_size_BR6475ND),CSYS,RN54,0x70000,0x01100000)
define Image/Build/Profile/Default
$(call Image/Build/Profile/CYSWR1100,$(1))
$(call Image/Build/Profile/DIR645,$(1))
$(call Image/Build/Profile/HPM,$(1))
$(call Image/Build/Profile/RTN56U,$(1))
$(call Image/Build/Profile/BR6475ND,$(1))
$(call Image/Build/Profile/TEW691GR,$(1))
$(call Image/Build/Profile/TEW692GR,$(1))
define LegacyDevice/CYSWR1100
DEVICE_TITLE := Samsung CY-SWR1100
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
endef
LEGACY_DEVICES += CYSWR1100
define LegacyDevice/DIR645
DEVICE_TITLE := D-Link DIR-645
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
endef
LEGACY_DEVICES += DIR645
define LegacyDevice/HPM
DEVICE_TITLE := Omnima HPM
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
endef
LEGACY_DEVICES += HPM
define LegacyDevice/RTN56U
DEVICE_TITLE := Asus RT-N56U
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
endef
LEGACY_DEVICES += RTN56U
define LegacyDevice/TEW691GR
DEVICE_TITLE := TRENDnet TEW-691GR
DEVICE_PACKAGES := swconfig
endef
LEGACY_DEVICES += TEW691GR
define LegacyDevice/TEW692GR
DEVICE_TITLE := TEW692GR
DEVICE_PACKAGES := swconfig
endef
LEGACY_DEVICES += TEW692GR
define LegacyDevice/BR6475ND
DEVICE_TITLE := Edimax BR-6475nD
DEVICE_PACKAGES := swconfig
endef
LEGACY_DEVICES += BR6475ND

View File

@ -1,53 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/ALL02393G
NAME:=Allnet ALL0239-3G
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/ALL02393G/Description
Package set for Allnet ALL0239-3G
endef
$(eval $(call Profile,ALL02393G))
define Profile/ALL0256N
NAME:=Allnet ALL0256N
PACKAGES:=rssileds
endef
define Profile/ALL0256N/Description
Package set for Allnet ALL0256N
endef
$(eval $(call Profile,ALL0256N))
define Profile/ALL5002
NAME:=Allnet ALL5002
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev \
kmod-i2c-core kmod-i2c-gpio kmod-hwmon-lm92 kmod-gpio-pcf857x
endef
define Profile/ALL5002/Description
Package set for Allnet ALL5002
endef
$(eval $(call Profile,ALL5002))
define Profile/ALL5003
NAME:=Allnet ALL5003
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev \
kmod-i2c-core kmod-i2c-gpio kmod-hwmon-lm92 kmod-gpio-pcf857x
endef
define Profile/ALL5003/Description
Package set for Allnet ALL5003
endef
$(eval $(call Profile,ALL5003))

View File

@ -1,18 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/ASL26555
NAME:=Alpha ASL26555
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/ASL26555/Description
Package set for Alpha ASL26555
endef
$(eval $(call Profile,ASL26555))

View File

@ -1,17 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/FREESTATION5
NAME:=ARC Wireless FreeStation
PACKAGES:=\
kmod-usb-dwc2 kmod-rt2500-usb kmod-rt2800-usb kmod-rt2x00-usb
endef
define Profile/FREESTATION5/Description
Package set for ARC Wireless FreeStation, Flex mARC, iFlex, and SplitStation
endef
$(eval $(call Profile,FREESTATION5))

View File

@ -1,39 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/AWAPN2403
NAME:=AsiaRF AWAPN2403
endef
define Profile/AWAPN2403/Description
Package set for AsiaRF AWAPN2403 Pocket Router
endef
$(eval $(call Profile,AWAPN2403))
define Profile/AWM002EVB
NAME:=AsiaRF AWM002-EVB
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev \
kmod-i2c-core kmod-i2c-gpio
endef
define Profile/AWM002EVB/Description
Package set for AsiaRF AWM002 Evaluation Board
endef
$(eval $(call Profile,AWM002EVB))
define Profile/AWM003EVB
NAME:=AsiaRF AWM003-EVB
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev \
kmod-i2c-core kmod-i2c-gpio
endef
define Profile/AWM003EVB/Description
Package set for AsiaRF AWM003 Evaluation Board
endef
$(eval $(call Profile,AWM003EVB))

View File

@ -1,27 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/RTN10PLUS
NAME:=Asus RT-N10+
PACKAGES:=kmod-leds-gpio wpad-mini
endef
define Profile/RTN10PLUS/Description
Package set for Asus RT-N10+.
endef
$(eval $(call Profile,RTN10PLUS))
define Profile/RT-N13U
NAME:=Asus RT-N13U
PACKAGES:=kmod-leds-gpio kmod-rt2800-pci wpad-mini kmod-usb-dwc2
endef
define Profile/RT-N13U/Description
Package set for Asus RT-N13U.
endef
$(eval $(call Profile,RT-N13U))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/MR102N
NAME:=AXIMCom MR-102N
PACKAGES:=kmod-usb-core kmod-usb-dwc2 kmod-ledtrig-usbdev
endef
define Profile/MR102N/Description
Package set for AXIMCom MR-102N
endef
$(eval $(call Profile,MR102N))

View File

@ -1,18 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/HW550-3G
NAME:=Aztech HW550-3G
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/HW550-3G/Description
Package set for Aztech HW550-3G
endef
$(eval $(call Profile,HW550-3G))

View File

@ -1,32 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/F5D8235V2
NAME:=Belkin F5D8235 v2
PACKAGES:=\
kmod-switch-rtl8366rb kmod-swconfig swconfig \
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/F5D8235V2/Description
Package set for Belkin F5D8235 v2
endef
$(eval $(call Profile,F5D8235V2))
define Profile/F7C027
NAME:=Belkin F7C027
PACKAGES:=\
-kmod-usb-core -kmod-usb-dwc2 \
-kmod-ledtrig-usbdev
endef
define Profile/F7C027/Description
Package set for Belkin F7C027 - Plug with soc_ap and a relay
endef
$(eval $(call Profile,F7C027))

View File

@ -1,18 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/BROADWAY
NAME:=Hauppauge Broadway
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/BROADWAY/Description
Package set for Hauppauge Broadway
endef
$(eval $(call Profile,BROADWAY))

View File

@ -1,68 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/DCS930
NAME:=D-Link DCS-930
PACKAGES:=kmod-video-core kmod-video-uvc \
kmod-sound-core kmod-usb-audio \
kmod-usb-core kmod-usb-dwc2
endef
define Profile/DCS930/Description
Package set for D-Link DCS-930 board
endef
$(eval $(call Profile,DCS930))
define Profile/DCS930LB1
NAME:=D-Link DCS-930L B1
PACKAGES:=kmod-video-core kmod-video-uvc \
kmod-sound-core kmod-usb-audio \
kmod-usb-core kmod-usb-ohci kmod-usb2
endef
define Profile/DCS930LB1/Description
Package set for D-Link DCS-930L B1 board
endef
$(eval $(call Profile,DCS930LB1))
define Profile/DIR610A1
NAME:=D-Link DIR-610 A1
PACKAGES:=kmod-ledtrig-netdev kmod-ledtrig-timer
endef
define Profile/DIR610A1/Description
Package set for D-Link DIR610 A1 board
endef
$(eval $(call Profile,DIR610A1))
define Profile/DIR-615-D
NAME:=D-Link DIR-615 D
PACKAGES:=\
-kmod-usb-core -kmod-usb-dwc2 \
-kmod-ledtrig-usbdev
endef
define Profile/DIR-615-D/Description
Package set for D-Link DIR-615 D board
endef
$(eval $(call Profile,DIR-615-D))
define Profile/DIR615H1
NAME:=D-Link DIR-615 H1
PACKAGES:=\
-kmod-usb-core -kmod-usb-dwc2 \
-kmod-ledtrig-usbdev
endef
define Profile/DIR615H1/Description
Package set for D-Link DIR-615 H1 board
endef
$(eval $(call Profile,DIR615H1))

View File

@ -1,20 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/WIZARD8800
NAME:=EasyAcc WIZARD 8800
PACKAGES:=\
kmod-ledtrig-netdev kmod-ledtrig-timer kmod-leds-gpio \
kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-net usbutils \
kmod-scsi-core kmod-scsi-generic kmod-fs-ext4 kmod-fs-msdos \
kmod-usb-storage kmod-usb-storage-extras block-mount
endef
define Profile/WIZARD8800/Description
Package set for EasyAcc Wi-Stor Wizard 4in1 wireless storage 8800
endef
$(eval $(call Profile,WIZARD8800))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/ESR-9753
NAME:=EnGenius ESR-9753
PACKAGES:=
endef
define Profile/ESR-9753/Description
EnGenius ESR-9753 profile.
endef
$(eval $(call Profile,ESR-9753))

View File

@ -1,18 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/FONERA20N
NAME:=Fonera 2.0N
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/FONERA20N/Description
Package set for Fonera 2.0N
endef
$(eval $(call Profile,FONERA20N))

View File

@ -1,29 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/MPRA1
NAME:=HAME MPR-A1
PACKAGES:=\
kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-netdev
endef
define Profile/MPRA1/Description
Package set for HAME MPR-A1 board
endef
$(eval $(call Profile,MPRA1))
define Profile/MPRA2
NAME:=HAME MPR-A2
PACKAGES:=\
kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-netdev
endef
define Profile/MPRA2/Description
Package set for HAME MPR-A2 board
endef
$(eval $(call Profile,MPRA2))

View File

@ -1,15 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/HLKRM04
NAME:=HILINK HLK-RM04
endef
define Profile/HLKRM04/Description
Package set for HiLink RM04 Module
endef
$(eval $(call Profile,HLKRM04))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/HT-TM02
NAME:=HooToo HT-TM02
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-ledtrig-usbdev
endef
define Profile/HT-TM02/Description
Package set optimized for the HooToo HT-TM02.
endef
$(eval $(call Profile,HT-TM02))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/HG255D
NAME:=Huawei HG255D
PACKAGES:=kmod-leds-gpio wpad-mini kmod-usb-dwc2
endef
define Profile/HG255D/Description
Package set for Huawei HG255D.
endef
$(eval $(call Profile,HG255D))

View File

@ -1,19 +0,0 @@
#
# Copyright (C) 2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/M2M
NAME:=Intenso Memory 2 Move
PACKAGES:=\
kmod-ledtrig-netdev kmod-ledtrig-timer \
kmod-usb-core kmod-usb2 kmod-usb-storage kmod-scsi-core \
kmod-fs-ext4 kmod-fs-vfat block-mount
endef
define Profile/M2M/Description
Package set for Intenso Memory 2 Move USB 3.0
endef
$(eval $(call Profile,M2M))

View File

@ -1,43 +0,0 @@
#
# Copyright (C) 2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/JCG
NAME=JCG Routers
endef
define Profile/JCG/Description
Builds images for JHR-N805R, JHR-N825R, and JHR-N926R.
endef
$(eval $(call Profile,JCG))
define Profile/JHR-N805R
NAME:=JCG JHR-N805R
endef
define Profile/JHR-N805R/Description
Package set for JCG JHR-N805R
endef
$(eval $(call Profile,JHR-N805R))
define Profile/JHR-N825R
NAME:=JCG JHR-N825R
endef
define Profile/JHR-N825R/Description
Package set for JCG JHR-N825R
endef
$(eval $(call Profile,JHR-N825R))
define Profile/JHR-N926R
NAME:=JCG JHR-N926R
endef
define Profile/JHR-N926R/Description
Package set for JCG JHR-N926R
endef
$(eval $(call Profile,JHR-N926R))

View File

@ -1,17 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/A5-V11
NAME:=A5-V11
PACKAGES:=\
kmod-usb-core kmod-usb-ohci kmod-usb2
endef
define Profile/A5-V11/Description
Package set for A5-V11
endef
$(eval $(call Profile,A5-V11))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/WT1520
NAME:=Nexx WT1520
PACKAGES:=kmod-usb2
endef
define Profile/WT1520/Description
Package set for WT1520
endef
$(eval $(call Profile,WT1520))

View File

@ -1,20 +0,0 @@
#
# Copyright (C) 2016 lede-project.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/NIXCORE
NAME:=NixcoreX1
PACKAGES:=\
kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
define Profile/NIXCORE/Description
Package set for Nixcore X1 board
endef
$(eval $(call Profile,NIXCORE))

View File

@ -1,33 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/RT5350F-OLINUXINO
NAME:=RT5350F-OLinuXino
PACKAGES:=\
kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
define Profile/RT5350F-OLINUXINO/Description
Package set for RT5350F-OLinuXino board
endef
$(eval $(call Profile,RT5350F-OLINUXINO))
define Profile/RT5350F-OLINUXINO-EVB
NAME:=RT5350F-OLinuXino-EVB
PACKAGES:=\
kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
define Profile/RT5350F-OLINUXINO-EVB/Description
Package set for RT5350F-OLinuXino-EVB board
endef
$(eval $(call Profile,RT5350F-OLINUXINO-EVB))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/MZK-DP150N
NAME:=Planex MZK-DP150N
PACKAGES:= kmod-spi-dev
endef
define Profile/MZK-DP150N/Description
Package set optimized for the Planex MZK-DP150N.
endef
$(eval $(call Profile,MZK-DP150N))

View File

@ -1,61 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/IP2202
NAME:=Poray IP2202
PACKAGES:=kmod-usb-core kmod-usb2 kmod-usb-dwc2 \
kmod-ledtrig-netdev kmod-ledtrig-timer
endef
define Profile/IP2202/Description
Package set for Poray IP2202 board
endef
$(eval $(call Profile,IP2202))
define Profile/M3
NAME:=Poray M3
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
define Profile/M3/Description
Package set for Poray M3 board
endef
$(eval $(call Profile,M3))
define Profile/M4
NAME:=Poray M4
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
define Profile/M4/Description
Package set for Poray M4 board
endef
$(eval $(call Profile,M4))
define Profile/X5
NAME:=Poray X5/X6
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
define Profile/X5/Description
Package set for Poray X5/X6 board
endef
$(eval $(call Profile,X5))
define Profile/X8
NAME:=Poray X8
PACKAGES:=kmod-usb-core kmod-usb2 kmod-ledtrig-netdev kmod-ledtrig-timer
endef
define Profile/X8/Description
Package set for Poray X8 board
endef
$(eval $(call Profile,X8))

View File

@ -1,18 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/PX-4885
NAME:=7Links PX-4885
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 kmod-usb2 kmod-usb-ohci \
kmod-ledtrig-usbdev kmod-leds-gpio
endef
define Profile/PX-4885/Description
Package set for 7Links PX-4885 wireless router.
endef
$(eval $(call Profile,PX-4885))

View File

@ -1,18 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/WL-351
NAME:=Sitecom WL-351 v1
PACKAGES:=\
kmod-switch-rtl8366rb kmod-swconfig swconfig
endef
define Profile/WL-351/Description
Package set for Sitecom WL-351 v1
endef
$(eval $(call Profile,WL-351))

View File

@ -1,42 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/3G150B
NAME:=Tenda 3G150B
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/3G150B/Description
Package set for Tenda 3G150B board
endef
$(eval $(call Profile,3G150B))
define Profile/3G300M
NAME:=Tenda 3G300M
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/3G300M/Description
Package set for Tenda 3G300M board
endef
$(eval $(call Profile,3G300M))
define Profile/W306R_V20
NAME:=Tenda W306R V2.0
PACKAGES:=
endef
define Profile/W306R_V20/Description
Package set for Tenda W306R V2.0 board
endef
$(eval $(call Profile,W306R_V20))

View File

@ -1,31 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/UR-326N4G
NAME:=UPVEL UR-326N4G
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/UR-326N4G/Description
Default package set compatible with URVEL router board.
endef
$(eval $(call Profile,UR-326N4G))
define Profile/UR-336UN
NAME:=UPVEL UR-336UN
PACKAGES:=\
kmod-usb-core kmod-usb-dwc2 \
kmod-ledtrig-usbdev
endef
define Profile/UR-336UN/Description
Default package set compatible with URVEL router board.
endef
$(eval $(call Profile,UR-336UN))

View File

@ -1,19 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/VOCORE
NAME:=VoCore
PACKAGES:=\
kmod-usb-core kmod-usb-ohci kmod-usb2 \
kmod-i2c-core kmod-i2c-ralink \
kmod-spi-dev
endef
define Profile/VOCORE/Description
Package set for VoCore board
endef
$(eval $(call Profile,VOCORE))

View File

@ -1,17 +0,0 @@
#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/NCS601W
NAME:=Wansview NCS601W
PACKAGES:=kmod-video-core kmod-video-uvc \
kmod-usb-core kmod-usb-ohci
endef
define Profile/NCS601W/Description
Package set for Wansview NCS601W board
endef
$(eval $(call Profile,NCS601W))

View File

@ -1,17 +0,0 @@
#
# Copyright (C) 2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/WIZFI630A
NAME:=WIZnet WizFi630A
PACKAGES:=\
kmod-usb2
endef
define Profile/WIZFI630A/Description
Package set for WIZnet WizFi630A board
endef
$(eval $(call Profile,WIZFI630A))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/RTN56U
NAME:=Asus RT-N56U
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
endef
define Profile/RTN56U/Description
Package set compatible with the Asus RT-N56U board.
endef
$(eval $(call Profile,RTN56U))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/DIR645
NAME:=D-Link DIR-645
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
endef
define Profile/DIR645/Description
Package set compatible with the D-Link DIR-645 board.
endef
$(eval $(call Profile,DIR645))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/BR6475ND
NAME:=Edimax BR-6475nD
PACKAGES:=swconfig
endef
define Profile/BR6475ND/Description
Package set compatible with the Edimax BR-6475nD board.
endef
$(eval $(call Profile,BR6475ND))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/HPM
NAME:=Omnima HPM
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2
endef
define Profile/HPM/Description
Package set compatible with the Omnima HPM board.
endef
$(eval $(call Profile,HPM))

View File

@ -1,16 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/CYSWR1100
NAME:=Samsung CY-SWR1100
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
endef
define Profile/CYSWR1100/Description
Package set compatible with the Samsung CY-SWR1100 board.
endef
$(eval $(call Profile,CYSWR1100))

View File

@ -1,27 +0,0 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/TEW691GR
NAME:=TRENDnet TEW-691GR
PACKAGES:=swconfig
endef
define Profile/TEW691GR/Description
Package set compatible with the TRENDnet TEW-691GR board.
endef
$(eval $(call Profile,TEW691GR))
define Profile/TEW692GR
NAME:=TRENDnet TEW-692GR
PACKAGES:=swconfig
endef
define Profile/TEW692GR/Description
Package set compatible with the TRENDnet TEW-692GR board.
endef
$(eval $(call Profile,TEW692GR))