build: centralize fakeroot code
[openwrt/staging/wigyori.git] / target / linux / apm821xx / image / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5 include $(TOPDIR)/rules.mk
6 include $(INCLUDE_DIR)/image.mk
7 include $(INCLUDE_DIR)/host.mk
8
9 DEVICE_VARS += DEVICE_PROFILE IMAGE_SIZE DTB_SIZE
10
11 define Device/Default
12 PROFILES := Default
13 KERNEL_DEPENDS = $$(wildcard ../dts/$$(DEVICE_DTS).dts)
14 DEVICE_PROFILE :=
15 DEVICE_DTS :=
16 KERNEL_ENTRY := 0x00000000
17 KERNEL_LOADADDR := 0x00000000
18 DEVICE_DTS_DIR := ../dts
19 endef
20
21 define Build/dtb
22 $(call Image/BuildDTB,../dts/$(DEVICE_DTS).dts,$@.dtb,,--space $(DTB_SIZE))
23 endef
24
25 define Build/export-dtb
26 cp $(IMAGE_KERNEL).dtb $@
27 endef
28
29 ifeq ($(SUBTARGET),nand)
30
31 define Image/cpiogz
32 ( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9n >$(KDIR_TMP)/$(IMG_PREFIX)-rootfs.cpio.gz )
33 endef
34
35 define Build/copy-file
36 cat "$(1)" > "$@"
37 endef
38
39 define Build/MerakiAdd-dtb
40 $(call Image/BuildDTB,../dts/$(DEVICE_DTS).dts,$@.dtb)
41 ( \
42 dd if=$@.dtb bs=$(DTB_SIZE) conv=sync; \
43 dd if=$@ bs=$(BLOCKSIZE) conv=sync; \
44 ) > $@.new
45 @mv $@.new $@
46 endef
47
48 define Build/MerakiAdd-initramfs
49 $(call Image/cpiogz)
50
51 -$(STAGING_DIR_HOST)/bin/mkimage -A $(LINUX_KARCH) -O linux -T ramdisk \
52 -C gzip -n "$(PROFILE) rootfs" \
53 -d $(KDIR_TMP)/$(IMG_PREFIX)-rootfs.cpio.gz \
54 $(KDIR_TMP)/$(IMG_PREFIX)-uramdisk.image.gz
55
56 ( \
57 dd if=$@ bs=1k conv=sync; \
58 dd if=$(KDIR_TMP)/$(IMG_PREFIX)-uramdisk.image.gz bs=$(BLOCKSIZE) conv=sync; \
59 ) > $@.new
60 @mv $@.new $@
61 endef
62
63 define Build/MerakiNAND
64 -$(STAGING_DIR_HOST)/bin/mkmerakifw \
65 -B $(DEVICE_PROFILE) -s \
66 -i $@ \
67 -o $@.new
68 @cp $@.new $@
69 endef
70
71 define Device/mr24
72 DEVICE_TITLE := Cisco Meraki MR24
73 DEVICE_PACKAGES := kmod-spi-gpio kmod-ath9k wpad-mini
74 DEVICE_PROFILE := MR24
75 DEVICE_DTS := MR24
76 BLOCKSIZE := 63k
77 IMAGES := sysupgrade.tar
78 DTB_SIZE := 64512
79 KERNEL_SIZE := 1984k
80 IMAGE_SIZE := 8191k
81 KERNEL := kernel-bin | lzma | uImage lzma | MerakiAdd-dtb | MerakiNAND
82 KERNEL_INITRAMFS := copy-file $(KDIR)/vmlinux | lzma | uImage lzma | \
83 check-size $$(KERNEL_SIZE) | \
84 MerakiAdd-dtb | pad-to 2047k | MerakiAdd-initramfs | \
85 MerakiNAND
86 IMAGE/sysupgrade.tar := sysupgrade-tar
87 UBINIZE_OPTS := -E 5
88 endef
89 TARGET_DEVICES += mr24
90
91 define Device/mx60
92 DEVICE_TITLE := Cisco Meraki MX60
93 DEVICE_PACKAGES := kmod-spi-gpio swconfig kmod-usb-ledtrig-usbport \
94 kmod-usb-dwc2 kmod-usb-storage block-mount
95 DEVICE_PROFILE := MX60
96 DEVICE_DTS := MX60
97 BLOCKSIZE := 63k
98 IMAGES := sysupgrade.tar
99 DTB_SIZE := 64512
100 # The kernel size will need to match the offset defined in mkmerakifw.c,
101 # otherwise the final image will fail to boot. This is set within the
102 # MX60 kernel header definition which is found at
103 # ./tools/firmware-utils/src/mkmerakifw.c, line 103~
104 KERNEL_SIZE := 2984k
105 IMAGE_SIZE := 1021m
106 KERNEL := kernel-bin | gzip | uImage gzip | MerakiAdd-dtb | MerakiNAND
107 KERNEL_INITRAMFS := copy-file $(KDIR)/vmlinux | gzip | uImage gzip | \
108 check-size $$(KERNEL_SIZE) | \
109 MerakiAdd-dtb | pad-to 2047k | MerakiAdd-initramfs | \
110 MerakiNAND
111 IMAGE/sysupgrade.tar := sysupgrade-tar
112 UBINIZE_OPTS := -E 5
113 endef
114 TARGET_DEVICES += mx60
115
116 define Device/mx60w
117 $(Device/mx60)
118 DEVICE_TITLE := Cisco Meraki MX60W
119 DEVICE_PACKAGES += kmod-ath9k wpad-mini
120 endef
121 TARGET_DEVICES += mx60w
122
123 define Build/create-uImage-dtb
124 # flat_dt target expect FIT image - which WNDR4700's uboot doesn't support
125 -$(STAGING_DIR_HOST)/bin/mkimage -A $(LINUX_KARCH) \
126 -O linux -T kernel -C none \
127 -n '$(call toupper,$(LINUX_KARCH)) LEDE Linux-$(LINUX_VERSION)' \
128 -d $(IMAGE_KERNEL).dtb $@.new
129 @mv $@.new $@
130 endef
131
132 define Build/wndr4700-specialImage
133 rm -rf $@.fakerd $@.new
134
135 dd if=/dev/zero of=$@.fakerd bs=32 count=1 conv=sync
136
137 # Netgear used an old uboot that doesn't have FIT support.
138 # So we are stuck with either a full ext2/4 fs in a initrd.
139 # ... or we try to make the "multi" image approach to work
140 # for us.
141 #
142 # Sadly, the "multi" image has to consists of three
143 # "fixed" parts in the following "fixed" order:
144 # 1. The kernel which is in $@
145 # 2. The (fake) initrd which is in $@.fakerd
146 # 3. The device tree binary which is in $@.dtb
147 #
148 # Now, given that we use the function for the kernel which
149 # already has a initramfs image inside, we still have to
150 # add a "fake" initrd (which a mkimage header) in the second
151 # part of the legacy multi image. Since we need to put the
152 # device tree stuff into part 3.
153
154 -$(STAGING_DIR_HOST)/bin/mkimage -A $(LINUX_KARCH) -O linux -T multi \
155 -C $(1) -a $(KERNEL_LOADADDR) -e $(KERNEL_ENTRY) \
156 -n '$(DEVICE_PROFILE) initramfs' -d $@:$@.fakerd:$@.dtb $@.new
157 mv $@.new $@
158 rm -rf $@.fakerd
159 endef
160
161 define Device/WNDR4700
162 DEVICE_TITLE := Netgear Centria N900 WNDR4700/WNDR4720
163 DEVICE_PACKAGES := badblocks block-mount e2fsprogs \
164 kmod-ath9k kmod-dm kmod-fs-ext4 kmod-fs-vfat kmod-usb-ledtrig-usbport \
165 kmod-md-mod kmod-nls-cp437 kmod-nls-iso8859-1 kmod-nls-iso8859-15 \
166 kmod-nls-utf8 kmod-usb3 kmod-usb-dwc2 kmod-usb-storage \
167 partx-utils swconfig wpad-mini
168 DEVICE_NAME := wndr4700
169 DEVICE_PROFILE := wndr4700
170 DEVICE_DTS := wndr4700
171 PAGESIZE := 2048
172 SUBPAGESIZE := 512
173 BLOCKSIZE := 128k
174 DTB_SIZE := 131008
175 IMAGE_SIZE := 24960k
176 IMAGES := factory.img sysupgrade.tar kernel.dtb
177 KERNEL_SIZE := 1920k
178 KERNEL := dtb | kernel-bin | lzma | uImage lzma | pad-offset $$(BLOCKSIZE) 64 | \
179 append-uImage-fakeroot-hdr
180 KERNEL_INITRAMFS := kernel-bin | gzip | dtb | wndr4700-specialImage gzip
181 IMAGE/factory.img := create-uImage-dtb | append-kernel | pad-to 2M | append-ubi | \
182 netgear-dni | check-size $$$$(IMAGE_SIZE)
183 IMAGE/sysupgrade.tar := sysupgrade-tar
184 IMAGE/kernel.dtb := export-dtb | uImage none
185 NETGEAR_BOARD_ID := WNDR4700
186 NETGEAR_HW_ID := 29763875+128+256
187 UBINIZE_OPTS := -E 5
188 endef
189 TARGET_DEVICES += WNDR4700
190
191 endif
192
193 ifeq ($(SUBTARGET),sata)
194
195 ### Image scripts for the WD My Book Live Series ###
196 define Build/boot-script
197 $(STAGING_DIR_HOST)/bin/mkimage -A powerpc -T script -C none -n "$(PROFILE) Boot Script" \
198 -d mbl_boot.scr \
199 $@.scr
200 endef
201
202 define Build/boot-img
203 $(RM) -rf $@.bootdir
204 mkdir -p $@.bootdir/boot
205
206 $(CP) $@.scr $@.bootdir/boot/boot.scr
207 $(CP) $(IMAGE_KERNEL).dtb $@.bootdir/boot/$(DEVICE_DTB)
208 $(CP) $(IMAGE_KERNEL) $@.bootdir/boot/uImage
209
210 genext2fs --block-size $(BLOCKSIZE:%k=%Ki) --size-in-blocks $$((1024 * $(BOOT_SIZE))) --root $@.bootdir $@.boot
211
212 # convert it to revision 1 - needed for u-boot ext2load
213 $(STAGING_DIR_HOST)/bin/tune2fs -O filetype $@.boot
214 $(STAGING_DIR_HOST)/bin/e2fsck -pDf $@.boot > /dev/null
215 endef
216
217 define Build/hdd-img
218 ./mbl_gen_hdd_img.sh $@ $@.boot $(IMAGE_ROOTFS)
219 endef
220
221 define Device/MyBookLiveDefault
222 IMAGE_SIZE := 48m
223 BLOCKSIZE := 1k
224 DTB_SIZE := 16384
225 KERNEL := kernel-bin | dtb | gzip | uImage gzip
226 KERNEL_INITRAMFS := kernel-bin | dtb | gzip | uImage gzip
227 BOOT_SIZE := 8
228 IMAGES := rootfs.img kernel.dtb
229 DEVICE_DTB := apollo3g.dtb
230 FILESYSTEMS := ext4
231 IMAGE/kernel.dtb := export-dtb
232 IMAGE/rootfs.img := boot-script | boot-img | hdd-img
233 endef
234
235 define Device/MyBookLiveSingle
236 $(Device/MyBookLiveDefault)
237 DEVICE_TITLE := Western Digital My Book Live
238 DEVICE_DTS := apollo3g
239 DEVICE_PROFILE := apollo3g
240 endef
241
242 TARGET_DEVICES += MyBookLiveSingle
243
244 define Device/MyBookLiveDuo
245 $(Device/MyBookLiveDefault)
246 DEVICE_TITLE := Western Digital My Book Live Duo
247 DEVICE_PACKAGES := kmod-usb-dwc2 kmod-usb-ledtrig-usbport kmod-usb-storage kmod-fs-vfat wpad-mini
248 DEVICE_DTS := apollo3g-duo
249 DEVICE_PROFILE := ap2nc
250 endef
251
252 TARGET_DEVICES += MyBookLiveDuo
253
254 endif
255
256 $(eval $(call BuildImage))