targets: add kernel image dependencies on device tree files
[openwrt/staging/wigyori.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 $(CP) $(DTS_DIR)/*.dtb $(KDIR)/
12
13 rm -f $(KDIR)/fs_mark
14 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/fs_mark
15 $(call prepare_generic_squashfs,$(KDIR)/fs_mark)
16
17 # For UBI we want only one extra block
18 rm -f $(KDIR)/ubi_mark
19 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/ubi_mark
20
21 $(CP) ./ubinize.cfg $(KDIR)
22 endef
23
24 define Build/append-dtb
25 cat $(KDIR)/$(DT).dtb >> $@
26 endef
27
28 define Build/lzma-d16
29 $(STAGING_DIR_HOST)/bin/lzma e $@ -d16 $(1) $@.new
30 @mv $@.new $@
31 endef
32
33 define Build/mkfs/squashfs
34 ( cd $(KDIR); $(STAGING_DIR_HOST)/bin/ubinize -p 128KiB -m 2048 -o $(KDIR)/root-block-0x20000-min-0x800.ubi ubinize.cfg )
35 endef
36
37 define Build/trx-serial
38 $(STAGING_DIR_HOST)/bin/trx \
39 -o $@ \
40 -f $(word 1,$^) -a 1024 \
41 -f $(KDIR)/root.squashfs -a 0x10000 -A $(KDIR)/fs_mark
42 endef
43
44 define Build/trx-nand
45 # kernel: always use 4 MiB (-28 B or TRX header) to allow upgrades even
46 # if it grows up between releases
47 # root: UBI with one extra block containing UBI mark to trigger erasing
48 # rest of partition
49 $(STAGING_DIR_HOST)/bin/trx \
50 -o $@ \
51 -m 33554432 \
52 -f $(word 1,$^) -a 0x20000 -b 0x400000 \
53 -f $(KDIR)/root-block-0x20000-min-0x800.ubi \
54 -A $(KDIR)/ubi_mark -a 0x20000
55 endef
56
57 define Build/asus-trx
58 $(STAGING_DIR_HOST)/bin/asustrx \
59 -p $(PRODUCTID) -i $@ -o $@.new
60 mv $@.new $@
61 endef
62
63 DEVICE_VARS += DT PRODUCTID NETGEAR_BOARD_ID NETGEAR_REGION
64
65 define Device/Default
66 # .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names
67 # extract the full dtb name based on the device info
68 DT := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(1).dtb)))
69 KERNEL := kernel-bin | append-dtb | lzma-d16
70 KERNEL_DEPENDS = $$(wildcard $(KDIR)/$$(DT).dts)
71 FILESYSTEMS := squashfs
72 KERNEL_NAME := zImage
73 IMAGE_NAME = $$(IMAGE_PREFIX)-$$(1).$$(2)
74 IMAGES := trx
75 IMAGE/trx := trx-nand
76 endef
77
78 define Device/asus
79 IMAGES := trx
80 IMAGE/trx := trx-nand | asus-trx
81 endef
82
83 define AsusDevice
84 define Device/asus-$(1)
85 $$(Device/asus)
86 PRODUCTID := $(2)
87 endef
88 TARGET_DEVICES += asus-$(1)
89 endef
90
91 define Device/linksys
92 IMAGES := trx
93 IMAGE/trx := trx-nand
94 endef
95
96 define LinksysDevice
97 define Device/linksys-$(1)
98 $$(Device/linksys)
99 endef
100 TARGET_DEVICES += linksys-$(1)
101 endef
102
103 define Device/netgear
104 IMAGES := chk
105 IMAGE/chk := trx-nand | netgear-chk
106 NETGEAR_REGION := 1
107 endef
108
109 define NetgearDevice
110 define Device/netgear-$(1)
111 $$(Device/netgear)
112 NETGEAR_BOARD_ID := $(2)
113 endef
114 TARGET_DEVICES += netgear-$(1)
115 endef
116
117 define Device/netgear-r6250
118 $(Device/netgear)
119 NETGEAR_BOARD_ID := U12H245T00_NETGEAR
120 endef
121
122 define Device/netgear-r6300-v2
123 $(Device/netgear)
124 NETGEAR_BOARD_ID := U12H240T00_NETGEAR
125 endef
126
127 define Device/netgear-r8000
128 $(Device/netgear)
129 NETGEAR_BOARD_ID := U12H315T00_NETGEAR
130 endef
131
132 define Device/smartrg-sr400ac
133 IMAGES := trx
134 IMAGE/trx := trx-serial
135 endef
136
137 TARGET_DEVICES += \
138 buffalo-wzr-1750dhp buffalo-wzr-600dhp2 buffalo-wzr-900dhp \
139 buffalo-wxr-1900dhp \
140 netgear-r6250 netgear-r6300-v2 netgear-r8000 \
141 smartrg-sr400ac
142
143 $(eval $(call AsusDevice,rt-ac56u,RT-AC56U))
144 $(eval $(call AsusDevice,rt-ac68u,RT-AC68U))
145 $(eval $(call AsusDevice,rt-ac87u,RT-AC87U))
146 $(eval $(call AsusDevice,rt-n18u,RT-N18U))
147 $(eval $(call LinksysDevice,ea6300-v1))
148 $(eval $(call NetgearDevice,r7000,U12H270T00_NETGEAR))
149
150 $(eval $(call BuildImage))