mirror of
https://github.com/openwrt/openwrt.git
synced 2025-04-24 04:56:12 +00:00
Move SF19A2890 images into a separated .mk in preparation for more subtargets. Link: https://github.com/openwrt/openwrt/pull/17115 Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
23 lines
683 B
Makefile
23 lines
683 B
Makefile
KERNEL_LOADADDR := 0x80100000
|
|
|
|
define Device/Default
|
|
PROFILES := Default
|
|
BLOCKSIZE := 64k
|
|
FILESYSTEMS := squashfs
|
|
DEVICE_DTS_DIR := ../dts
|
|
KERNEL := kernel-bin | append-dtb | lzma | uImage lzma
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | uImage lzma
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin = append-kernel | pad-to $$$$(BLOCKSIZE) | \
|
|
append-rootfs | pad-rootfs | append-metadata
|
|
endef
|
|
|
|
define Device/siflower_sf19a2890-evb
|
|
DEVICE_VENDOR := Siflower
|
|
DEVICE_MODEL := SF19A2890 EVB
|
|
BOARD_NAME := siflower,sf19a2890-evb
|
|
DEVICE_DTS := sf19a2890_evb
|
|
DEVICE_PACKAGES := kmod-switch-rtl8367b swconfig
|
|
endef
|
|
TARGET_DEVICES += siflower_sf19a2890-evb
|