073c24f63ee736015e35f31575e9b2927c1f3318
[openwrt-10.03/.git] / target / linux / orion / 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/Prepare
11         cp $(LINUX_DIR)/arch/arm/boot/uImage $(KDIR)/uImage
12 endef
13
14 define Image/BuildKernel
15         cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage
16 #
17 # XXX - FIXME
18 #
19 #       BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/arm-magic.sh
20 endef
21
22 define Image/Build
23         $(call Image/Build/$(1),$(1))
24 endef
25
26 define Image/Build/squashfs
27         $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
28         ( \
29                 dd if=$(LINUX_DIR)/arch/arm/boot/uImage bs=1024k conv=sync; \
30                 dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
31         ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img
32 endef
33
34 $(eval $(call BuildImage))