mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 14:21:53 +02:00
bb05897208
*add layer7_2 patch fix the iptables compile error *remove the 'sizes.h' include in jz_mmc.c *chmod -x jz_mmc.* *not make uImage in Makefile, let openwrt do it. Signed-off-by: Xiangfu Liu <xiangfu.z@gmail.com>
36 lines
768 B
Makefile
36 lines
768 B
Makefile
#
|
|
# 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
|
|
|
|
JFFS2_BLOCKSIZE=256k 512k
|
|
|
|
ifneq ($(CONFIG_XBURST_UBOOT),)
|
|
define Build/Clean
|
|
$(MAKE) -C u-boot clean
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C u-boot compile
|
|
endef
|
|
endif
|
|
|
|
define Image/BuildKernel
|
|
cp $(KDIR)/linux-$(LINUX_VERSION)/arch/mips/boot/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage
|
|
endef
|
|
|
|
define Image/Build/squashfs
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
|
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))
|