Makefile 613 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. include $(TOPDIR)/rules.mk
  3. ARCH:=aarch64
  4. BOARD:=bcm4908
  5. BOARDNAME:=Broadcom BCM4908 (ARMv8A CPUs Brahma-B53)
  6. FEATURES:=squashfs nand usb gpio
  7. CPU_TYPE:=cortex-a53
  8. SUBTARGETS:=generic
  9. KERNEL_PATCHVER:=6.1
  10. KERNEL_TESTING_PATCHVER:=6.6
  11. define Target/Description
  12. Build firmware images for Broadcom BCM4908 SoC family routers.
  13. endef
  14. include $(INCLUDE_DIR)/target.mk
  15. KERNELNAME:=Image dtbs
  16. DEFAULT_PACKAGES += \
  17. bcm4908img fdt-utils uboot-envtools \
  18. kmod-gpio-button-hotplug \
  19. kmod-usb-ohci kmod-usb2 kmod-usb3 \
  20. kmod-usb-ledtrig-usbport
  21. $(eval $(call BuildTarget))