mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 17:48:58 +00:00
101300b842
This target does not activate CONFIG_PCI kernel configuration option, do not activate the PCI feature. This will deactivate some PCI drivers which are not building without PCI support in the kernel. If PCI_SUPPORT or PCIE_SUPPORT are activated in the kernel configuration the feature flag will be automatically set by the build system again. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
28 lines
532 B
Makefile
28 lines
532 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 gpio
|
|
CPU_TYPE:=cortex-a53
|
|
SUBTARGETS:=generic
|
|
|
|
KERNEL_PATCHVER:=5.10
|
|
|
|
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-gpio-button-hotplug \
|
|
kmod-usb-ohci kmod-usb2 kmod-usb3
|
|
|
|
$(eval $(call BuildTarget))
|