Makefile 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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_TARGET_QEMU_XTENSA_DC233C),y)
  12. QEMU_ARGS+=-cpu dc233c
  13. endif
  14. ifeq ($(ADK_TARGET_QEMU_XTENSA_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. kernel-install:
  52. @cp $(KERNEL) $(FW_DIR)/${TARGET_KERNEL}
  53. # filesystem specific targets
  54. ifeq ($(ADK_TARGET_FS),archive)
  55. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  56. endif
  57. ifeq ($(ADK_TARGET_FS),initramfs)
  58. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  59. endif
  60. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  61. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  62. endif
  63. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  64. imageinstall: createinitramfs targethelp
  65. endif