mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-22 12:28:23 +00:00
22f55ce9f7
bcm4908img is a tool managing BCM4908 platform images. It's used for creating them as well as checking, modifying and extracting data from. It's required by both: host (for building firmware images) and target (for sysupgrade purposes). Make it a host/target package. Signed-off-by: Rafał Miłecki <rafal@milecki.pl> Signed-off-by: maurerr <mariusd84@gmail.com>
28 lines
553 B
Makefile
28 lines
553 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=aarch64
|
|
BOARD:=bcm4908
|
|
BOARDNAME:=Broadcom BCM4908 (ARMv8A CPUs Brahma-B53)
|
|
FEATURES:=squashfs nand usb pci pcie gpio source-only
|
|
CPU_TYPE:=cortex-a53
|
|
SUBTARGETS:=generic
|
|
|
|
KERNEL_PATCHVER:=5.4
|
|
KERNEL_TESTING_PATCHVER:=5.4
|
|
|
|
define Target/Description
|
|
Build firmware images for Broadcom BCM4908 SoC family routers.
|
|
endef
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
KERNELNAME:=Image dtbs
|
|
|
|
DEFAULT_PACKAGES += \
|
|
bcm4908img \
|
|
kmod-usb-ohci kmod-usb2 kmod-usb3
|
|
|
|
$(eval $(call BuildTarget))
|