Makefile 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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.mk
  5. include $(ADK_TOPDIR)/mk/modules.mk
  6. include $(ADK_TOPDIR)/mk/kernel-build.mk
  7. include $(ADK_TOPDIR)/mk/image.mk
  8. KERNEL:=$(LINUX_DIR)/arch/xtensa/boot/uImage
  9. QEMU_ARGS:=-M lx60 -monitor null
  10. QEMU_ARGS+=${ADK_QEMU_ARGS}
  11. ifeq ($(ADK_KERNEL_XTENSA_VARIANT_DC233C),y)
  12. QEMU_ARGS+=-cpu dc233c
  13. endif
  14. ifeq ($(ADK_KERNEL_XTENSA_VARIANT_DC232B),y)
  15. QEMU_ARGS+=-cpu dc232b
  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. endif
  29. ifeq ($(ADK_TARGET_FS),initramfs)
  30. targethelp:
  31. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  32. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  33. ifeq ($(ADK_TARGET_QEMU),y)
  34. @echo "Start qemu with following command line:"
  35. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  36. endif
  37. endif
  38. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  39. targethelp:
  40. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  41. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  42. endif
  43. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  44. targethelp:
  45. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  46. ifeq ($(ADK_TARGET_QEMU),y)
  47. @echo "Start qemu with following command line:"
  48. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  49. endif
  50. endif
  51. ifeq ($(ADK_TARGET_FS),nfsroot)
  52. targethelp:
  53. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  54. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  55. endif
  56. kernel-install:
  57. @cp $(KERNEL) $(FW_DIR)/${TARGET_KERNEL}
  58. # filesystem specific targets
  59. ifeq ($(ADK_TARGET_FS),archive)
  60. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  61. endif
  62. ifeq ($(ADK_TARGET_FS),initramfs)
  63. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  64. endif
  65. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  66. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  67. endif
  68. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  69. imageinstall: createinitramfs targethelp
  70. endif
  71. ifeq ($(ADK_TARGET_FS),nfsroot)
  72. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  73. endif