Makefile 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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_CPU_XTENSA_DE212),y)
  7. KERNEL:=$(LINUX_DIR)/arch/xtensa/boot/Image.elf
  8. else
  9. KERNEL:=$(LINUX_DIR)/arch/xtensa/boot/uImage
  10. endif
  11. QEMU_ARGS:=-M kc705
  12. QEMU_ARGS+=${ADK_QEMU_ARGS}
  13. ifeq ($(ADK_TARGET_CPU_XTENSA_DC233C),y)
  14. QEMU_ARGS+=-cpu dc233c
  15. endif
  16. ifeq ($(ADK_TARGET_CPU_XTENSA_DC232B),y)
  17. QEMU_ARGS+=-cpu dc232b
  18. endif
  19. ifeq ($(ADK_TARGET_CPU_XTENSA_DE212),y)
  20. QEMU_ARGS+=-cpu de212 -m 256
  21. endif
  22. # target helper text
  23. ifeq ($(ADK_TARGET_FS),archive)
  24. targethelp:
  25. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  26. ifeq ($(ADK_TARGET_QEMU),y)
  27. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  28. @echo "Use following command to create a QEMU Image:"
  29. @echo "./scripts/create.sh qemu-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
  30. @echo "Start qemu with following options:"
  31. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) qemu-${ADK_TARGET_CPU_ARCH}.img'
  32. endif
  33. endif
  34. ifeq ($(ADK_TARGET_FS),initramfs)
  35. targethelp:
  36. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  37. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  38. ifeq ($(ADK_TARGET_QEMU),y)
  39. @echo "Start qemu with following command line:"
  40. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  41. endif
  42. endif
  43. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  44. targethelp:
  45. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  46. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  47. endif
  48. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  49. targethelp:
  50. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  51. ifeq ($(ADK_TARGET_QEMU),y)
  52. @echo "Start qemu with following command line:"
  53. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  54. endif
  55. endif
  56. ifeq ($(ADK_TARGET_FS),nfsroot)
  57. targethelp:
  58. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  59. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  60. endif
  61. kernel-strip:
  62. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  63. kernel-install: kernel-strip
  64. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  65. # filesystem specific targets
  66. ifeq ($(ADK_TARGET_FS),archive)
  67. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  68. endif
  69. ifeq ($(ADK_TARGET_FS),initramfs)
  70. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  71. endif
  72. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  73. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  74. endif
  75. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  76. imageinstall: createinitramfs targethelp
  77. endif
  78. ifeq ($(ADK_TARGET_FS),nfsroot)
  79. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  80. endif