67764d647c758ae7535e7a7e92dc9d16d02046b1
[openwrt-10.03/.git] / target / linux / ar71xx / image / Makefile
1
2 # Copyright (C) 2008 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 define Image/BuildKernel
11         cp $(KDIR)/vmlinux.elf $(BIN_DIR)/openwrt-$(BOARD)-vmlinux.elf
12         gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz
13         $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.bin.l7
14         dd if=$(KDIR)/vmlinux.bin.l7 of=$(BIN_DIR)/openwrt-$(BOARD)-vmlinux.lzma bs=65536 conv=sync
15         dd if=$(KDIR)/vmlinux.bin.gz of=$(BIN_DIR)/openwrt-$(BOARD)-vmlinux.gz bs=65536 conv=sync
16         $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.lzma
17         mkimage -A mips -O linux -T kernel -a 0x80060000 -C gzip -e \
18                 0x80060000 \
19                 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
20                 -d $(KDIR)/vmlinux.bin.gz $(BIN_DIR)/openwrt-$(BOARD)-uImage.gz
21 endef
22
23 define Image/Build/squashfs
24     $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
25 endef
26
27 define Image/Build
28         $(call Image/Build/$(1))
29         dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync
30 endef
31
32
33 $(eval $(call BuildImage))