ath79: drop, its not ready for a release yet
[openwrt/openwrt.git] / target / linux / xburst / image / Makefile
1 #
2 # Copyright (C) 2009-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 JFFS2_BLOCKSIZE=256k 512k
9
10 include $(TOPDIR)/rules.mk
11 include $(INCLUDE_DIR)/image.mk
12
13 ifneq ($(CONFIG_TARGET_xburst_qi_lb60),)
14 UBI_OPTS = -m 4096 -p 512KiB
15 UBIFS_OPTS = -m 4096 -e 516096 -c 4095
16 else
17 UBI_OPTS = -m 2048 -p 128KiB -s 512
18 UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
19 endif
20
21 UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage.bin
22
23 define MkImageGzip
24 gzip -9n -c $(1) > $(1).gz
25 mkimage -A mips -O linux -T kernel -a 0x80010000 -C gzip \
26 -e 0x80010000 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
27 -d $(1).gz $(2)
28 endef
29
30 define Image/Prepare
31 $(call MkImageGzip,$(KDIR)/vmlinux,$(KDIR)/uimage)
32 endef
33
34 define Image/BuildKernel
35 cp $(KDIR)/uimage $(UIMAGE)
36 endef
37
38 define Image/Build/squashfs
39 $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
40 endef
41
42 define Image/Build
43 dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
44 endef
45
46 $(eval $(call BuildImage))