Makefile 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. QEMU:=qemu-system-hppa
  8. QEMU_ARGS:=-nographic
  9. QEMU_ARGS+=-device e1000,netdev=adk0 -netdev user,id=adk0
  10. # target helper text
  11. ifeq ($(ADK_TARGET_FS),archive)
  12. targethelp:
  13. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  14. endif
  15. ifeq ($(ADK_TARGET_FS),initramfs)
  16. targethelp:
  17. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  18. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  19. ifeq ($(ADK_TARGET_QEMU),y)
  20. @echo "Start qemu with following command line:"
  21. @echo '$(QEMU) $(QEMU_ARGS) -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  22. endif
  23. endif
  24. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  25. targethelp:
  26. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  27. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  28. endif
  29. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  30. targethelp:
  31. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  32. ifeq ($(ADK_TARGET_QEMU),y)
  33. @echo "Start qemu with following command line:"
  34. @echo '$(QEMU) $(QEMU_ARGS) -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  35. endif
  36. endif
  37. ifeq ($(ADK_TARGET_FS),nfsroot)
  38. targethelp:
  39. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  40. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  41. endif
  42. kernel-strip:
  43. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  44. kernel-install: kernel-strip
  45. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  46. # filesystem specific targets
  47. ifeq ($(ADK_TARGET_FS),archive)
  48. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  49. endif
  50. ifeq ($(ADK_TARGET_FS),initramfs)
  51. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  52. endif
  53. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  54. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  55. endif
  56. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  57. imageinstall: createinitramfs targethelp
  58. endif
  59. ifeq ($(ADK_TARGET_FS),nfsroot)
  60. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  61. endif