Makefile 543 B

123456789101112131415161718192021
  1. #
  2. # Copyright (C) 2007 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. include $(INCLUDE_DIR)/image.mk
  9. define Image/Prepare
  10. cp $(LINUX_DIR)/arch/powerpc/boot/otheros.bld $(KDIR)/image
  11. endef
  12. define Image/BuildKernel
  13. mkdir -p $(BIN_DIR)
  14. cp $(KDIR)/image $(BIN_DIR)/otheros.bld
  15. cp $(KDIR)/vmlinux.elf $(BIN_DIR)/openwrt-$(BOARD)-vmlinux.elf
  16. cp $(BIN_DIR)/openwrt-$(BOARD)-vmlinux.elf $(TARGET_DIR)
  17. endef
  18. $(eval $(call BuildImage))