a8c2fbafff8275a4523a2079244a988bc56956ec
[openwrt.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 #
12 # XXX - FIXME, we hardcode for the WRT350N v2 for now
13 #
14 echo -en "\x61\x70\xa0\xe3\x06\x7c\x87\xe3" > $(KDIR)/zImage
15 cat $(LINUX_DIR)/arch/arm/boot/zImage >> $(KDIR)/zImage
16 endef
17
18 define Image/BuildKernel
19 $(STAGING_DIR_HOST)/bin/mkimage -A arm -O linux -T kernel \
20 -C none -a 0x00008000 -e 0x00008000 -n 'Linux-$(LINUX_VERSION)' \
21 -d $(KDIR)/zImage $(KDIR)/uImage
22 cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage
23 endef
24
25 define Image/Build
26 $(call Image/Build/$(1),$(1))
27 endef
28
29 define Image/Build/squashfs
30 $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
31 ( \
32 dd if=$(KDIR)/uImage bs=1024k conv=sync; \
33 dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
34 ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img
35 endef
36
37 $(eval $(call BuildImage))
This page took 0.048224 seconds and 3 git commands to generate.