Makefile 624 B

123456789101112131415161718192021222324252627282930
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2013 OpenWrt.org
  4. include $(TOPDIR)/rules.mk
  5. ARCH:=arm
  6. BOARD:=bcm53xx
  7. BOARDNAME:=Broadcom BCM47xx/53xx (ARM)
  8. FEATURES:=squashfs nand usb pci pcie gpio pwm
  9. CPU_TYPE:=cortex-a9
  10. SUBTARGETS:=generic
  11. KERNEL_PATCHVER:=5.4
  12. KERNEL_TESTING_PATCHVER:=5.4
  13. define Target/Description
  14. Build firmware images for Broadcom based BCM47xx/53xx routers with ARM CPU, *not* MIPS.
  15. endef
  16. include $(INCLUDE_DIR)/target.mk
  17. KERNELNAME:=zImage dtbs
  18. DEFAULT_PACKAGES += swconfig nvram \
  19. osafeloader oseama otrx \
  20. kmod-gpio-button-hotplug \
  21. kmod-leds-gpio
  22. $(eval $(call BuildTarget))