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-build.mk
  5. include $(ADK_TOPDIR)/mk/image.mk
  6. KERNEL:=$(LINUX_DIR)/vmlinux
  7. QEMU_ARGS:=-monitor null
  8. QEMU_ARGS+=${ADK_QEMU_ARGS}
  9. ifeq ($(ADK_TARGET_QEMU_WITH_BLOCK),y)
  10. QEMU_ARGS+=-drive file=qemu-alpha.img,format=raw -append "root=/dev/hda1"
  11. endif
  12. # target helper text
  13. ifeq ($(ADK_TARGET_FS),archive)
  14. targethelp:
  15. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  16. ifeq ($(ADK_TARGET_QEMU),y)
  17. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  18. @echo "Use following command to create a QEMU Image:"
  19. @echo "./scripts/create.sh qemu-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
  20. @echo "Start qemu with following options:"
  21. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  22. endif
  23. endif
  24. ifeq ($(ADK_TARGET_FS),initramfs)
  25. targethelp:
  26. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  27. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  28. ifeq ($(ADK_TARGET_QEMU),y)
  29. @echo "Start qemu with following command line:"
  30. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  31. endif
  32. endif
  33. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  34. targethelp:
  35. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  36. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  37. endif
  38. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  39. targethelp:
  40. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  41. ifeq ($(ADK_TARGET_QEMU),y)
  42. @echo "Start qemu with following command line:"
  43. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  44. endif
  45. endif
  46. ifeq ($(ADK_TARGET_FS),nfsroot)
  47. targethelp:
  48. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  49. @echo 'The nfs root tarball is: ${FW_DIR}/${ROOTFSUSERTARBALL}'
  50. endif
  51. # image creation and kernel install
  52. kernel-strip:
  53. $(TARGET_CROSS)objcopy $(OSTRIP) -S $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  54. kernel-install: kernel-strip
  55. cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/${TARGET_KERNEL}
  56. # filesystem specific targets
  57. ifeq ($(ADK_TARGET_FS),archive)
  58. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  59. endif
  60. ifeq ($(ADK_TARGET_FS),initramfs)
  61. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  62. endif
  63. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  64. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  65. endif
  66. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  67. imageinstall: createinitramfs targethelp
  68. endif
  69. ifeq ($(ADK_TARGET_FS),nfsroot)
  70. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  71. endif