2009-06-20 23:00:27 +03: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 21:34:08 +03:00
|
|
|
JFFS2_BLOCKSIZE=256k 512k
|
|
|
|
|
2009-07-08 19:59:02 +03: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-20 23:00:27 +03:00
|
|
|
define Image/BuildKernel
|
2009-08-20 20:23:30 +03:00
|
|
|
cp $(KDIR)/linux-$(LINUX_VERSION)/arch/mips/boot/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage.bin
|
2009-06-20 23:00:27 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
2009-08-20 20:05:17 +03:00
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
2009-06-20 23:00:27 +03: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))
|