28110727f1
Set the blocksize for devices having only 4MB of flash for ramips devices already using the new image build code. Informations about the used flash chip are gathered from the OpenWrt wiki, wikidevi, forums, OEM bootlogs or the compatible property in the device tree source file. The en25q32b from the AirLive Air3GII does not have 4k support in the kernel. For the following boards no information about the used flash chip could be found and a 64k blocksize is assumed: - Ralink V11ST-FE - Ralink AP-RT3052-V22RW-2X2 - MediaTek MT7628 EVB - MediaTek MT7621 EVB - UPVEL UR-326N4G - Buffalo WZR-AGL300NH Signed-off-by: Mathias Kresin <dev@kresin.me>
76 lines
1.7 KiB
Makefile
76 lines
1.7 KiB
Makefile
#
|
|
# RT288X Profiles
|
|
#
|
|
|
|
define Build/gemtek-header
|
|
mkheader_gemtek $@ $@.new $(1) && mv $@.new $@
|
|
endef
|
|
|
|
define Build/airlink-header
|
|
mkwrgimg -i $@ \
|
|
-d "/dev/mtdblock/2" \
|
|
-s "wrgn16a_airlink_ar670w" \
|
|
-o $@.new && mv $@.new $@
|
|
endef
|
|
|
|
define Device/ar670w
|
|
DTS := AR670W
|
|
BLOCKSIZE := 64k
|
|
DEVICE_TITLE := Airlink AR670W
|
|
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
|
KERNEL := $(KERNEL_DTB)
|
|
IMAGES += factory.bin
|
|
IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | gemtek-header ar725w
|
|
endef
|
|
TARGET_DEVICES += ar670w
|
|
|
|
define Device/ar725w
|
|
DTS := AR725W
|
|
DEVICE_TITLE := Gemtek AR725W
|
|
IMAGES += factory.bin
|
|
IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | gemtek-header ar725w
|
|
endef
|
|
TARGET_DEVICES += ar725w
|
|
|
|
define Device/f5d8235v1
|
|
DTS := F5D8235_V1
|
|
IMAGE_SIZE := 7744k
|
|
DEVICE_TITLE := Belkin F5D8235 V1
|
|
DEVICE_PACKAGES := kmod-switch-rtl8366s
|
|
endef
|
|
TARGET_DEVICES += f5d8235v1
|
|
|
|
define Device/rt-n15
|
|
DTS := RT-N15
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
|
DEVICE_TITLE := Asus RT-N15
|
|
DEVICE_PACKAGES := kmod-switch-rtl8366s
|
|
endef
|
|
TARGET_DEVICES += rt-n15
|
|
|
|
define Device/v11st-fe
|
|
DTS := V11STFE
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
|
DEVICE_TITLE := Ralink V11ST-FE
|
|
endef
|
|
TARGET_DEVICES += v11st-fe
|
|
|
|
define Device/wli-tx4-ag300n
|
|
DTS := WLI-TX4-AG300N
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
|
DEVICE_TITLE := Buffalo WLI-TX4-AG300N
|
|
endef
|
|
TARGET_DEVICES += wli-tx4-ag300n
|
|
|
|
define Device/wzr-agl300nh
|
|
DTS := WZR-AGL300NH
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
|
DEVICE_TITLE := Buffalo WZR-AGL300NH
|
|
DEVICE_PACKAGES := kmod-switch-rtl8366s
|
|
endef
|
|
TARGET_DEVICES += wzr-agl300nh
|