Makefile 628 B

12345678910111213141516171819202122232425262728
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2017-2019 Tomasz Maciej Nowak <[email protected]>
  4. include $(TOPDIR)/rules.mk
  5. ARCH := arm
  6. BOARD := tegra
  7. BOARDNAME := NVIDIA Tegra
  8. FEATURES := audio boot-part display ext4 fpu gpio pci pcie rootfs-part rtc squashfs usb
  9. CPU_TYPE := cortex-a9
  10. CPU_SUBTYPE := vfpv3-d16
  11. SUBTARGETS := generic
  12. KERNEL_PATCHVER := 5.10
  13. KERNEL_TESTING_PATCHVER := 5.15
  14. include $(INCLUDE_DIR)/target.mk
  15. KERNELNAME := zImage dtbs
  16. DEFAULT_PACKAGES += e2fsprogs mkf2fs partx-utils
  17. define Target/Description
  18. Build firmware image for NVIDIA Tegra SoC devices.
  19. endef
  20. $(eval $(call BuildTarget))