2010-01-11 04:44:45 +00:00
|
|
|
#
|
2010-04-12 23:15:56 +00:00
|
|
|
# Copyright (C) 2009-2010 OpenWrt.org
|
2010-01-11 04:44:45 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
|
|
|
JFFS2_BLOCKSIZE=256k 512k
|
|
|
|
|
2010-03-11 19:02:00 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_xburst_qi_lb60),)
|
2010-01-11 04:44:45 +00:00
|
|
|
UBIFS_OPTS = -m 4096 -e 516096 -c 4095
|
|
|
|
UBINIZE_OPTS = -m 4096 -p 512KiB
|
2010-03-05 04:15:51 +00:00
|
|
|
else
|
|
|
|
UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
|
|
|
|
UBINIZE_OPTS = -m 2048 -p 128KiB -s 512
|
|
|
|
endif
|
|
|
|
|
2010-05-12 23:12:41 +00:00
|
|
|
UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage.bin
|
|
|
|
|
|
|
|
define kernel_entry
|
|
|
|
0x$(shell $(TARGET_CROSS)nm $(1) 2>/dev/null | grep " kernel_entry" | cut -f1 -d ' ')
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define MkImageGzip
|
|
|
|
gzip -9 -c $(1) > $(1).gz
|
|
|
|
mkimage -A mips -O linux -T kernel -a 0x80010000 -C gzip \
|
|
|
|
-e $(call kernel_entry,$(LINUX_DIR)/vmlinux) -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
|
|
|
|
-d $(1).gz $(2)
|
|
|
|
endef
|
|
|
|
|
2010-01-11 04:44:45 +00:00
|
|
|
define Image/BuildKernel
|
2010-05-12 23:12:41 +00:00
|
|
|
$(call MkImageGzip,$(KDIR)/vmlinux,$(UIMAGE))
|
2010-01-11 04:44:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
2010-04-12 23:15:56 +00:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
|
2010-01-11 04:44:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|