Makefile 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. include $(ADK_TOPDIR)/mk/kernel-build.mk
  5. include $(ADK_TOPDIR)/mk/image.mk
  6. ifeq ($(ADK_TARGET_KERNEL_UIMAGE),y)
  7. KERNEL:=$(LINUX_DIR)/arch/arc/boot/uImage
  8. else
  9. KERNEL:=$(LINUX_DIR)/$(ADK_TARGET_KERNEL)
  10. endif
  11. # target helper text
  12. ifeq ($(ADK_TARGET_FS),archive)
  13. targethelp:
  14. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  15. endif
  16. ifeq ($(ADK_TARGET_FS),initramfs)
  17. targethelp:
  18. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  19. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  20. endif
  21. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  22. targethelp:
  23. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  24. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  25. endif
  26. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  27. targethelp:
  28. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  29. ifeq ($(ADK_TARGET_SYSTEM_SYNOPSYS_NSIM),y)
  30. ifeq ($(ADK_TARGET_LITTLE_ENDIAN),y)
  31. ifeq ($(ADK_TARGET_CPU_ARC_ARC700),y)
  32. @echo './scripts/nsim.sh arcv1 $(FW_DIR)/${TARGET_KERNEL}'
  33. endif
  34. ifeq ($(ADK_TARGET_CPU_ARC_ARCHS),y)
  35. @echo './scripts/nsim.sh arcv2 $(FW_DIR)/${TARGET_KERNEL}'
  36. endif
  37. endif
  38. ifeq ($(ADK_TARGET_BIG_ENDIAN),y)
  39. ifeq ($(ADK_TARGET_CPU_ARC_ARC700),y)
  40. @echo './scripts/nsim.sh arcv1-be $(FW_DIR)/${TARGET_KERNEL}'
  41. endif
  42. ifeq ($(ADK_TARGET_CPU_ARC_ARCHS),y)
  43. @echo './scripts/nsim.sh arcv2-be $(FW_DIR)/${TARGET_KERNEL}'
  44. endif
  45. endif
  46. endif
  47. endif
  48. ifeq ($(ADK_TARGET_FS),nfsroot)
  49. targethelp:
  50. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  51. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  52. endif
  53. kernel-strip:
  54. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  55. kernel-install: kernel-strip
  56. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  57. # filesystem specific targets
  58. ifeq ($(ADK_TARGET_FS),archive)
  59. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  60. endif
  61. ifeq ($(ADK_TARGET_FS),initramfs)
  62. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  63. endif
  64. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  65. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  66. endif
  67. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  68. imageinstall: createinitramfs targethelp
  69. endif
  70. ifeq ($(ADK_TARGET_FS),nfsroot)
  71. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  72. endif