Makefile 927 B

1234567891011121314151617181920212223242526
  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-install:
  9. cp $(LINUX_DIR)/arch/x86/boot/bzImage $(TARGET_DIR)/boot/vmlinuz-adk
  10. ifeq ($(FS),ext2-cf)
  11. imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
  12. @echo
  13. @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL),"
  14. @echo "To install everything to CompactFlash use scripts/install.sh"
  15. @echo 'Login as user root with password linux123 via ssh or console'
  16. endif
  17. ifeq ($(FS),nfsroot)
  18. imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
  19. @echo
  20. @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL),"
  21. @echo 'The nfs root tarball is: ${BIN_DIR}/${ROOTFSTARBALL}'
  22. @echo 'Login as user root with password linux123 via ssh or console'
  23. endif