Makefile 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. KERNEL:=$(LINUX_DIR)/$(ADK_TARGET_KERNEL)
  7. ifeq ($(ADK_TARGET_KERNEL_UIMAGE),y)
  8. KERNEL:=$(LINUX_DIR)/arch/mips/boot/uImage
  9. endif
  10. OSTRIP:=-R .reginfo -R .notes -R .note -R .comment -R .mdebug -R .note.gnu.build-id
  11. QEMU_ARGS:=-M malta
  12. QEMU_ARGS+=${ADK_QEMU_ARGS}
  13. QEMU_ARGS+=-device e1000,netdev=adk0 -netdev user,id=adk0
  14. ifeq ($(ADK_TARGET_CPU_MIPS_MIPS32R6),y)
  15. QEMU_ARGS+=-cpu mips32r6-generic
  16. endif
  17. # target helper text
  18. ifeq ($(ADK_TARGET_FS),archive)
  19. targethelp:
  20. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  21. ifeq ($(ADK_TARGET_QEMU),y)
  22. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  23. @echo "Use following command to create a QEMU Image:"
  24. @echo "./scripts/create.sh qemu-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
  25. @echo "Start qemu with following options:"
  26. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) qemu-${ADK_TARGET_CPU_ARCH}.img'
  27. endif
  28. ifeq ($(ADK_TARGET_SYSTEM_MIKROTIK_RB532),y)
  29. @echo "Use following command to install it on CF card:"
  30. @echo "sudo ./scripts/install-rb532.sh /dev/sdX $(FW_DIR)/$(ROOTFSTARBALL)"
  31. @echo 'Or boot your Routerboard via NFS and'
  32. @echo 'then install kernel and filesystem via:'
  33. @echo 'adkinstall -c -a ${ROOTFSTARBALL}'
  34. endif
  35. endif
  36. ifeq ($(ADK_TARGET_FS),initramfs)
  37. targethelp:
  38. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  39. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  40. ifeq ($(ADK_TARGET_QEMU),y)
  41. @echo "Start qemu with following command line:"
  42. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  43. endif
  44. endif
  45. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  46. targethelp:
  47. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  48. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  49. endif
  50. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  51. targethelp:
  52. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  53. ifeq ($(ADK_TARGET_QEMU),y)
  54. @echo "Start qemu with following command line:"
  55. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  56. endif
  57. endif
  58. ifeq ($(ADK_TARGET_FS),nfsroot)
  59. targethelp:
  60. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  61. @echo 'The nfs root tarball is: ${FW_DIR}/${ROOTFSUSERTARBALL}'
  62. endif
  63. ifeq ($(ADK_TARGET_FS),usb)
  64. targethelp:
  65. @echo 'The root tarball is: ${FW_DIR}/${ROOTFSTARBALL}'
  66. endif
  67. ifeq ($(ADK_TARGET_FS),genimage)
  68. targethelp:
  69. @echo "The disk image is: $(FW_DIR)/disk.img"
  70. ifeq ($(ADK_TARGET_QEMU),y)
  71. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} $(FW_DIR)/disk.img'
  72. else
  73. @echo "Use following command to install it on SD card:"
  74. @echo 'sudo dd if=$(FW_DIR)/disk.img of=/dev/sdX bs=2048k'
  75. endif
  76. endif
  77. ifeq ($(ADK_TARGET_FS),ubifs)
  78. targethelp:
  79. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  80. @echo 'The UBI image is: ${FW_DIR}/${ROOTFSUBIFS}'
  81. endif
  82. # image creation and kernel install
  83. kernel-strip:
  84. ifeq ($(ADK_TARGET_KERNEL_UIMAGE),)
  85. $(TARGET_CROSS)objcopy $(OSTRIP) -S $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  86. else
  87. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  88. endif
  89. kernel-install: kernel-strip
  90. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/${TARGET_KERNEL}
  91. # filesystem specific targets
  92. ifeq ($(ADK_TARGET_FS),archive)
  93. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  94. endif
  95. ifeq ($(ADK_TARGET_FS),initramfs)
  96. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  97. endif
  98. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  99. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  100. endif
  101. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  102. imageinstall: createinitramfs targethelp
  103. endif
  104. ifeq (${ADK_TARGET_FS},genimage)
  105. imageinstall: ${FW_DIR}/${GENIMAGE} targethelp
  106. endif
  107. ifeq ($(ADK_TARGET_FS),nfsroot)
  108. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  109. endif
  110. ifeq ($(ADK_TARGET_FS),ubifs)
  111. imageinstall: $(FW_DIR)/$(ROOTFSUBIFS) targethelp
  112. endif