Makefile 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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)/openwrt-$(BOARD)-rb600.elf
  14. cp $(LINUX_DIR)/arch/powerpc/boot/dtbImage.rb333.elf $(BIN_DIR)/openwrt-$(BOARD)-rb333.elf
  15. cp $(LINUX_DIR)/arch/powerpc/boot/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage
  16. endef
  17. define Image/Build
  18. $(call Image/Build/$(1),$(1))
  19. endef
  20. define Image/Build/squashfs
  21. $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
  22. ( \
  23. dd if=$(LINUX_DIR)/arch/powerpc/boot/uImage bs=3072k conv=sync; \
  24. dd if=$(KDIR)/root.$(1) bs=256k conv=sync; \
  25. ) > $(BIN_DIR)/$(IMG_PREFIX)-mpc8377_wlan-$(1).img
  26. endef
  27. $(eval $(call BuildImage))