[xburst] jz4740 pm: Fix gpio suspend/resume. Turn pll off while in suspend and gate
[openwrt-10.03/.git] / target / linux / xburst / image / Makefile
1 #
2 # Copyright (C) 2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 JFFS2_BLOCKSIZE=256k 512k
11
12 UBIFS_OPTS = -m 4096 -e 516096 -c 4095
13 UBINIZE_OPTS = -m 4096 -p 512KiB
14
15 define Image/BuildKernel
16         cp $(KDIR)/linux-$(LINUX_VERSION)/arch/mips/boot/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage.bin
17 endef
18
19 define Image/Build/squashfs
20         $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
21 endef
22
23 define Image/Build
24         $(call Image/Build/$(1))
25         dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync
26 endef
27
28 $(eval $(call BuildImage))