Makefile 1.2 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. $(TOOLS_BUILD_DIR):
  9. mkdir -p $(TOOLS_BUILD_DIR)
  10. tools-compile: $(TOOLS_BUILD_DIR)
  11. $(MAKE) -C tools/mkfimage
  12. $(MAKE) -C tools/e100boot prepare compile install $(MAKE_TRACE)
  13. $(MAKE) -C tools/squashfs prepare compile install
  14. $(INSTALL_BIN) tools/boot_linux $(BIN_DIR)/
  15. kernel-install: tools-compile
  16. PATH='${TARGET_PATH}' mkfimage $(LINUX_DIR)/arch/cris/boot/zImage \
  17. $(BIN_DIR)/${DEVICE}-${ARCH}-kernel $(MAKE_TRACE)
  18. ifeq ($(FS),squashfs)
  19. imageinstall: $(BIN_DIR)/$(ROOTFSSQUASHFS)
  20. @echo
  21. @echo Use sudo ./boot_linux -F -i $(ROOTFSSQUASHFS) to flash
  22. @echo Do not forget to set network boot jumper, before you start the foxboard
  23. endif
  24. ifeq ($(FS),nfsroot)
  25. imageinstall: ${BIN_DIR}/${ROOTFSTARBALL}
  26. @echo
  27. @echo Use sudo ./boot_linux -F -i ${DEVICE}-${ARCH}-kernel to flash the kernel
  28. @echo Do not forget to set network boot jumper, before you start the foxboard
  29. @echo ${ROOTFSTARBALL} is your nfs root and can be extracted on your nfs server
  30. endif