968388380a10528b5f54b80a0c5f3a3611fcd959
[openwrt/openwrt.git] / target / linux / bcm53xx / image / Makefile
1 #
2 # Copyright (C) 2013 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 rm -f $(KDIR)/fs_mark
12 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/fs_mark
13 $(call prepare_generic_squashfs,$(KDIR)/fs_mark)
14 endef
15
16 # $(1): dts filename (also used for the firmware file).
17 define Image/Build/initramfs/DTB
18 $(call Image/Build/DTB,zImage-initramfs,$(1))
19 $(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/$(IMG_PREFIX)-$(1)-initramfs.trx \
20 -f $(KDIR)/zImage-initramfs-$(1).lzma
21 endef
22
23 # $(1): dts filename (also used for the firmware file).
24 define Image/Build/squashfs/DTB
25 $(call Image/Build/DTB,zImage,$(1))
26 $(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/$(IMG_PREFIX)-$(1)-squashfs.trx \
27 -f $(KDIR)/zImage-$(1).lzma \
28 -a 1024 -f $(KDIR)/root.squashfs -a 0x10000 -A $(KDIR)/fs_mark
29 endef
30
31 # $(1): kernel (Linux) image file
32 # $(2): dts filename (also used for the firmware file).
33 define Image/Build/DTB
34 rm -f $(KDIR)/$(1)-$(2).lzma
35 rm -f $(KDIR)/$(1)-$(2).dts
36 cat $(KDIR)/$(1) $(DTS_DIR)/$(2).dtb > $(KDIR)/$(1)-$(2).dts;
37 $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/$(1)-$(2).dts $(KDIR)/$(1)-$(2).lzma -d16
38 endef
39
40 # $(1): filesystem type (e.g. squashfs, initramfs).
41 # $(2): dts filename (also used for the firmware file).
42 # $(3): device specific magic.
43 define Image/Build/AsusTrx
44 $(call Image/Build/$(1)/DTB,$(2))
45 # TODO: Put magic in TRX file
46 cp $(KDIR)/$(IMG_PREFIX)-$(2)-$(1).trx $(BIN_DIR)/
47 endef
48
49 # $(1): filesystem type (e.g. squashfs, initramfs).
50 # $(2): dts filename (also used for the firmware file).
51 define Image/Build/Trx
52 $(call Image/Build/$(1)/DTB,$(2))
53 cp $(KDIR)/$(IMG_PREFIX)-$(2)-$(1).trx $(BIN_DIR)/
54 endef
55
56 # $(1): filesystem type (e.g. squashfs, initramfs).
57 # $(2): dts filename (also used for the firmware file).
58 # $(3): board_id (device specific magic).
59 # $(4): region.
60 define Image/Build/Chk
61 $(call Image/Build/$(1)/DTB,$(2))
62 $(STAGING_DIR_HOST)/bin/mkchkimg -o $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).chk -k $(KDIR)/$(IMG_PREFIX)-$(2)-$(1).trx -b $(3) -r $(4)
63 endef
64
65 # $(1): filesystem type (e.g. squashfs, initramfs).
66 define Image/Build
67 $(call Image/Build/AsusTrx,$(1),bcm47081-asus-rt-n18u,RT-N18U)
68
69 $(call Image/Build/Trx,$(1),bcm4708-buffalo-wzr-1750dhp)
70
71 $(call Image/Build/Chk,$(1),bcm4708-netgear-r6250,U12H245T00_NETGEAR,1)
72 $(call Image/Build/Chk,$(1),bcm4708-netgear-r6300-v2,U12H240T00_NETGEAR,1)
73 endef
74
75 define Image/Build/Initramfs
76 $(call Image/Build,initramfs)
77 endef
78
79 $(eval $(call BuildImage))