Makefile 937 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Copyright (C) 2009-2010 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. $(LINUX_DIR)/scripts/dtc/dtc -O dtb -R 4 -S 0x20000 $(LINUX_DIR)/arch/powerpc/boot/dts/mpc8377_wlan.dts > $(BIN_DIR)/openwrt-mpc83xx-mpc8377_wlan.dtb
  11. endef
  12. define Image/BuildKernel
  13. cp $(LINUX_DIR)/arch/powerpc/boot/dtbImage.rb600.elf $(BIN_DIR)/$(IMG_PREFIX)-rb600.elf
  14. cp $(LINUX_DIR)/arch/powerpc/boot/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage
  15. endef
  16. define Image/Build
  17. $(call Image/Build/$(1),$(1))
  18. endef
  19. define Image/Build/squashfs
  20. $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
  21. ( \
  22. dd if=$(LINUX_DIR)/arch/powerpc/boot/uImage bs=3072k conv=sync; \
  23. dd if=$(KDIR)/root.$(1) bs=256k conv=sync; \
  24. ) > $(BIN_DIR)/$(IMG_PREFIX)-mpc8377_wlan-$(1).img
  25. endef
  26. $(eval $(call BuildImage))