sama5d3.mk 863 B

123456789101112131415161718192021222324252627282930313233
  1. define Device/default-nand
  2. BLOCKSIZE := 128k
  3. PAGESIZE := 2048
  4. SUBPAGESIZE := 2048
  5. MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 2048
  6. endef
  7. define Device/at91-sama5d3_xplained
  8. $(Device/evaluation-dtb)
  9. DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D3 Xplained
  10. KERNEL_SIZE := 6144k
  11. $(Device/evaluation-sdimage)
  12. endef
  13. TARGET_DEVICES += at91-sama5d3_xplained
  14. ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"")
  15. ifeq ($(strip $(CONFIG_KERNEL_GIT_CLONE_URI)),"")
  16. define Device/wb50n
  17. $(Device/evaluation-fit)
  18. DEVICE_TITLE := Laird WB50N
  19. DEVICE_PACKAGES := \
  20. kmod-mmc-at91 kmod-ath6kl-sdio ath6k-firmware \
  21. kmod-usb-storage kmod-fs-vfat kmod-fs-msdos \
  22. kmod-leds-gpio
  23. BLOCKSIZE := 128k
  24. PAGESIZE := 2048
  25. SUBPAGESIZE := 2048
  26. MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 955
  27. endef
  28. TARGET_DEVICES += wb50n
  29. endif
  30. endif