c59fa94eee
This patch adds support for the MikroTik RouterBOARD mAP lite https://routerboard.com/RBmAPL-2nD Specifications: - SoC: Qualcomm QCA9533 (650MHz) - RAM: 64MB - Storage: 16MB NOR SPI flash - Wireless: builtin QCA9533, 2x2:2 - Ethernet: 1x100M This is another 16M SPI NOR mikrotik device. The machine file is named mach-rbspi.c because I plan to add support for several of the other spi-based RouterBOARD devices in subsequent patches: they share most of the hardware and thus the same codebase. Signed-off-by: Thibaut VARENE <hacks@slashdirt.org>
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
define Device/mikrotik
|
|
PROFILES := Default
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-usb-ledtrig-usbport nand-utils
|
|
BOARD_NAME := routerboard
|
|
KERNEL_INITRAMFS :=
|
|
KERNEL_NAME := loader-generic.elf
|
|
KERNEL := kernel-bin | kernel2minor -s 2048 -e -c
|
|
FILESYSTEMS := squashfs
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar
|
|
endef
|
|
|
|
define Device/nand-64m
|
|
DEVICE_TITLE := MikroTik RouterBoard with 64 MB NAND flash
|
|
$(Device/mikrotik)
|
|
KERNEL := kernel-bin | kernel2minor -s 512 -e -c
|
|
endef
|
|
|
|
define Device/nand-large
|
|
DEVICE_TITLE := MikroTik RouterBoard with >= 128 MB NAND flash
|
|
$(Device/mikrotik)
|
|
KERNEL := kernel-bin | kernel2minor -s 2048 -e -c
|
|
endef
|
|
|
|
TARGET_DEVICES += nand-64m nand-large
|
|
|
|
define Device/rb-nor-flash-16M
|
|
DEVICE_TITLE := MikroTik RouterBoard with 16 MB SPI NOR flash
|
|
DEVICE_PACKAGES := rbcfg
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := 16000k
|
|
LOADER_TYPE := elf
|
|
KERNEL_INSTALL := 1
|
|
KERNEL := kernel-bin | lzma | loader-kernel | kernel2minor -s 1024 -e
|
|
KERNEL_INITRAMFS := kernel-bin | lzma | loader-kernel
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin = append-rootfs | pad-rootfs | combined-image | check-size $$$$(IMAGE_SIZE)
|
|
endef
|
|
|
|
define Device/rb-941-2nd
|
|
$(Device/rb-nor-flash-16M)
|
|
DEVICE_TITLE := hAP lite
|
|
BOARDNAME:= rb-941-2nd
|
|
endef
|
|
|
|
TARGET_DEVICES += rb-nor-flash-16M rb-941-2nd
|