1
0

Makefile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. JFFS2_BLOCKSIZE=256k 512k
  8. include $(TOPDIR)/rules.mk
  9. include $(INCLUDE_DIR)/image.mk
  10. ifneq ($(CONFIG_TARGET_xburst_qi_lb60),)
  11. UBI_OPTS = -m 4096 -p 512KiB
  12. UBIFS_OPTS = -m 4096 -e 516096 -c 4095
  13. else
  14. UBI_OPTS = -m 2048 -p 128KiB -s 512
  15. UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
  16. endif
  17. UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage.bin
  18. define MkImageGzip
  19. gzip -9n -c $(1) > $(1).gz
  20. mkimage -A mips -O linux -T kernel -a 0x80010000 -C gzip \
  21. -e 0x80010000 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
  22. -d $(1).gz $(2)
  23. endef
  24. define Image/Prepare
  25. $(call MkImageGzip,$(KDIR)/vmlinux,$(KDIR)/uimage)
  26. endef
  27. define Image/BuildKernel
  28. cp $(KDIR)/uimage $(UIMAGE)
  29. endef
  30. define Image/Build/squashfs
  31. $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
  32. endef
  33. define Image/Build
  34. dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
  35. endef
  36. $(eval $(call BuildImage))