Makefile 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  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 $(TOPDIR)/rules.mk
  4. include $(TOPDIR)/mk/kernel.mk
  5. include $(TOPDIR)/mk/modules.mk
  6. include $(TOPDIR)/mk/kernel-build.mk
  7. include $(TOPDIR)/mk/image.mk
  8. KERNEL:=$(LINUX_DIR)/arch/x86/boot/bzImage
  9. ifeq ($(FS),archive)
  10. imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
  11. @cp $(KERNEL) $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel
  12. @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL),"
  13. @echo "Use following command to create a QEMU Image:"
  14. @echo "sudo ./scripts/create-image.sh -f $(ADK_TARGET_ROOTFS) qemu-${CPU_ARCH}.img $(BIN_DIR)/$(ROOTFSTARBALL)"
  15. @echo "Start qemu with following command line:"
  16. @echo 'qemu-system-x86_64 -nographic -net user,hostfwd=tcp::2222-:22 -net nic,model=e1000 -kernel $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel qemu-${CPU_ARCH}.img'
  17. endif
  18. ifeq ($(FS),initramfs)
  19. imageinstall: $(BIN_DIR)/$(INITRAMFS)
  20. @cp $(KERNEL) $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel
  21. @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
  22. @echo 'The initramfs image is: ${BIN_DIR}/${INITRAMFS}'
  23. @echo "Start qemu with following command line:"
  24. @echo 'qemu-system-x86_64 -nographic -net user,hostfwd=tcp::2222-:22 -net nic,model=e1000 -kernel $(BIN_DIR)/${ADK_TARGET}-${ARCH}-kernel -initrd ${BIN_DIR}/${INITRAMFS}'
  25. endif
  26. ifeq ($(FS),initramfs-piggyback)
  27. imageinstall: ${BUILD_DIR}/${INITRAMFS_PIGGYBACK} createinitramfs
  28. @cp $(KERNEL) ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel
  29. @echo 'The kernel+initramfs file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
  30. @echo "Start qemu with following command line:"
  31. @echo 'qemu-system-x86_64 -nographic -net user,hostfwd=tcp::2222-:22 -net nic,model=e1000 -kernel $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel'
  32. endif