blob: 7a3a9ceed82fdccc08463ec40a979ad7ecfa1212 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
define Device/mikrotik
PROFILES := Default
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/mikrotik)
KERNEL := kernel-bin | kernel2minor -s 512 -e -c
endef
define Device/nand-large
$(Device/mikrotik)
KERNEL := kernel-bin | kernel2minor -s 2048 -e -c
endef
TARGET_DEVICES += nand-64m nand-large
define Device/rb-nor-flash-16M
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
DEVICE_PACKAGES:= rbcfg
BOARDNAME:= rb-941-2nd
endef
TARGET_DEVICES += rb-nor-flash-16M rb-941-2nd
|