mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
19 lines
586 B
Makefile
19 lines
586 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
define Device/Default
|
|
PROFILES := Default
|
|
KERNEL := kernel-bin
|
|
IMAGES := sysupgrade.img.gz
|
|
DEVICE_DTS_DIR := $(DTS_DIR)/amlogic
|
|
DEVICE_DTS = $$(SOC)-$(subst _,-,$(1))
|
|
endef
|
|
|
|
define Device/phicomm_n1
|
|
DEVICE_VENDOR := Phicomm
|
|
DEVICE_MODEL := N1
|
|
SOC := meson-gxl-s905d
|
|
UBOOT_DEVICE_NAME := phicomm-n1
|
|
IMAGE/sysupgrade.img.gz := boot-common | boot-combined-script | aml-img | gzip | append-metadata
|
|
DEVICE_PACKAGES := ethtool kmod-brcmfmac brcmfmac-firmware-43455-sdio-phicomm-n1 wpad-openssl
|
|
endef
|
|
TARGET_DEVICES += phicomm_n1
|