2009-06-21 04:00:27 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2009-07-24 20:34:08 +02:00
|
|
|
JFFS2_BLOCKSIZE=256k 512k
|
|
|
|
|
2009-07-09 00:59:02 +08:00
|
|
|
ifneq ($(CONFIG_XBURST_UBOOT),)
|
|
|
|
define Build/Clean
|
|
|
|
$(MAKE) -C u-boot clean
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C u-boot compile
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2009-06-21 04:00:27 +08:00
|
|
|
define Image/BuildKernel
|
2009-08-21 01:23:30 +08:00
|
|
|
cp $(KDIR)/linux-$(LINUX_VERSION)/arch/mips/boot/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage.bin
|
2009-06-21 04:00:27 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
2009-08-21 01:05:17 +08:00
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
2009-06-21 04:00:27 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
|
|
|
$(call Image/Build/$(1))
|
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|