mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-04 05:01:24 +00:00
D-Link DAP-1522 is a wireless bridge/access point with 4 LAN ports and a dual-band wireless chipset. Specifications: - Ralink RT2880 - 32 MB of RAM - 4 MB of Flash - 4x 10/100/1000 Mbps Ethernet (RTL8366SR) - 802.11abgn (RT2850) Flash Instructions: 1. Download lede-ramips-rt288x-dap-1522-a1-squashfs-factory.bin 2. Open the web interface and upload the image Signed-off-by: George Hopkins <george-hopkins@null.net>
26 lines
535 B
Makefile
26 lines
535 B
Makefile
CC = gcc
|
|
CFLAGS += -Wall
|
|
LDFLAGS += -lubox
|
|
|
|
obj = mtd.o jffs2.o crc32.o md5.o
|
|
obj.seama = seama.o md5.o
|
|
obj.wrg = wrg.o md5.o
|
|
obj.wrgg = wrgg.o md5.o
|
|
obj.ar71xx = trx.o $(obj.seama) $(obj.wrgg)
|
|
obj.brcm = trx.o
|
|
obj.brcm47xx = $(obj.brcm)
|
|
obj.bcm53xx = $(obj.brcm) $(obj.seama)
|
|
obj.brcm63xx = imagetag.o
|
|
obj.ramips = $(obj.seama) $(obj.wrg)
|
|
obj.mvebu = linksys_bootcount.o
|
|
obj.kirkwood = linksys_bootcount.o
|
|
obj.ipq806x = linksys_bootcount.o
|
|
|
|
ifdef FIS_SUPPORT
|
|
obj += fis.o
|
|
endif
|
|
|
|
mtd: $(obj) $(obj.$(TARGET))
|
|
clean:
|
|
rm -f *.o jffs2
|