mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
20d3e236b2
CONFIG_COMPAT_32BIT_TIME is a new symbol and has to be set to avoid: Provide system calls for 32-bit time_t (COMPAT_32BIT_TIME) [N/y/?] (NEW) CONFIG_RELOCATABLE needs to be enabled to make kernel start booting. That raises a question: do we really need CONFIG_EXPERT=y ? Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
29 lines
570 B
Makefile
29 lines
570 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
|
|
CPU_TYPE:=cortex-a53
|
|
SUBTARGETS:=generic
|
|
|
|
KERNEL_PATCHVER:=5.4
|
|
KERNEL_TESTING_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))
|