Makefile 596 B

123456789101112131415161718192021222324252627
  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.15
  13. include $(INCLUDE_DIR)/target.mk
  14. KERNELNAME := zImage dtbs
  15. DEFAULT_PACKAGES += e2fsprogs mkf2fs partx-utils
  16. define Target/Description
  17. Build firmware image for NVIDIA Tegra SoC devices.
  18. endef
  19. $(eval $(call BuildTarget))