6fae13fc1a0cd0edbd13330178a025d58a953fea
[openwrt/svn-archive/archive.git] / target / linux / kirkwood / 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 define Image/Prepare
11 cp $(LINUX_DIR)/arch/arm/boot/uImage $(KDIR)/uImage
12 endef
13
14 define Image/BuildKernel
15 # do mach-id fixup here, if needed
16 cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage
17 endef
18
19 define Image/Build
20 $(call Image/Build/$(1),$(1))
21 endef
22
23 define Image/Build/squashfs
24 $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
25 ( \
26 dd if=$(KDIR)/uImage bs=1024k conv=sync; \
27 dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
28 ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img
29 endef
30
31 $(eval $(call BuildImage))