gemini: drop unnecessary image build default variables
[openwrt/openwrt.git] / target / linux / gemini / image / Makefile
1 #
2 # Copyright (C) 2009-2018 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 # Cook a "WRGG" image, this board is apparently one in the D-Link
11 # WRGG family and uses the exact same firmware format as other
12 # D-Link devices.
13 define Build/dir685-images
14 mkwrggimg -i $(IMAGE_KERNEL) \
15 -o $@.new \
16 -d /dev/mtdblock/1 \
17 -s wrgns01_dlwbr_dir685RBWW \
18 -v 'N/A' \
19 -m dir685 \
20 -B 96bb
21
22 mv $@.new $@
23 endef
24
25 # Build D-Link DNS-313 images using the special header tool.
26 # rootfs.tgz and rd.tgz contains nothing, we only need them
27 # to satisfy the boot loader on the device. The zImage is
28 # the only real content.
29 define Build/dns313-images
30 mkdir -p $@.tmp/.boot
31
32 echo "dummy" > $@.tmp/dummyfile
33
34 dns313-header $@.tmp/dummyfile \
35 $@.tmp/.boot/rootfs.tgz
36 dns313-header $@.tmp/dummyfile \
37 $@.tmp/.boot/rd.gz
38 dns313-header $(IMAGE_KERNEL) \
39 $@.tmp/.boot/zImage
40
41 tar --sort=name --owner=0 --group=0 --numeric-owner -czf $@ \
42 -C $@.tmp .boot \
43 $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)")
44
45 rm -rf $@.tmp
46 endef
47
48 # Create the special NAS4220B and Itian Square One SQ201 image
49 # format with the squashfs and overlay inside the "rd.gz" file.
50 # We pad it out to 6144K which is the size of the initramfs partition.
51 #
52 # The "application" partition is just blank. You can put anything
53 # there when using OpenWRT. We just use that to create the
54 # "sysupgrade" firmware image.
55 define Build/nas4220b-sq201-images
56 mkdir -p $@.tmp
57
58 mv $@ $@.tmp/rd.gz
59 dd if=/dev/zero of=$@.tmp/hddapp.tgz bs=6144k count=1
60 cp $(IMAGE_KERNEL) $@.tmp/zImage
61 cp ./ImageInfo-$(1) $@.tmp/ImageInfo
62
63 (cd $@.tmp; tar --sort=name --owner=0 --group=0 --numeric-owner -czf $@ * \
64 $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)"))
65
66 rm -rf $@.tmp
67 endef
68
69 # WBD-111 and WBD-222:
70 # work around the bootloader's bug with extra nops
71 # FIXME: is this really needed now that we no longer append the code
72 # to change the machine ID number? Needs testing on Wiliboard.
73 define Build/wbd-nops
74 mv $@ $@.tmp
75 echo -en "\x00\x00\xa0\xe1\x00\x00\xa0\xe1\x00\x00\xa0\xe1\x00\x00\xa0\xe1" > $@
76 cat $@.tmp >> $@
77 rm -f $@.tmp
78 endef
79
80 # All DTB files are prefixed with "gemini-"
81 define Device/Default
82 PROFILES := Default
83 DEVICE_DTS := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(1).dtb)))
84 KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
85 KERNEL_NAME := zImage
86 KERNEL := kernel-bin | append-dtb
87 BLOCKSIZE := 128k
88 endef
89
90 # A reasonable set of default packages handling the NAS type
91 # of devices out of the box (former NAS42x0 IcyBox defaults)
92 GEMINI_NAS_PACKAGES:=kmod-md-mod kmod-md-linear kmod-md-multipath \
93 kmod-md-raid0 kmod-md-raid1 kmod-md-raid10 kmod-md-raid456 \
94 kmod-fs-btrfs kmod-fs-cifs kmod-fs-nfs \
95 kmod-fs-nfsd kmod-fs-ntfs kmod-fs-reiserfs kmod-fs-vfat \
96 kmod-nls-utf8 kmod-usb-storage-extras \
97 samba36-server mdadm cfdisk fdisk e2fsprogs badblocks
98
99 define Device/dlink-dir-685
100 DEVICE_TITLE := D-Link DIR-685 Xtreme N Storage Router
101 DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES) \
102 kmod-switch-rtl8366rb swconfig \
103 rt2800-pci
104 IMAGES := factory.bin
105 IMAGE/factory.bin := dir685-images
106 endef
107 TARGET_DEVICES += dlink-dir-685
108
109 define Device/dlink-dns-313
110 DEVICE_TITLE := D-Link DNS-313 1-Bay Network Storage Enclosure
111 DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES)
112 IMAGES := factory.bin
113 IMAGE/factory.bin := dns313-images
114 endef
115 TARGET_DEVICES += dlink-dns-313
116
117 define Device/nas4220b-sq201
118 IMAGES := factory.bin
119 IMAGE/factory.bin := append-rootfs | pad-to 6144k | nas4220b-sq201-images $(1)
120 DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES)
121 endef
122
123 define Device/nas4220b
124 $(Device/nas4220b-sq201)
125 DEVICE_TITLE := Raidsonic NAS IB-4220-B
126 endef
127 TARGET_DEVICES += nas4220b
128
129 define Device/rut1xx
130 DEVICE_TITLE := Teltonika RUT1xx
131 DEVICE_PACKAGES := $(GEMINI_NAS_PACKAGES)
132 endef
133 TARGET_DEVICES += rut1xx
134
135 define Device/sq201
136 $(Device/nas4220b-sq201)
137 DEVICE_TITLE := ITian Square One SQ201
138 DEVICE_PACKAGES += rt61-pci usb2-pci
139 endef
140 TARGET_DEVICES += sq201
141
142 define Device/wbd111
143 DEVICE_TITLE := Wiliboard WBD-111
144 KERNEL := kernel-bin | append-dtb | wbd-nops
145 endef
146 TARGET_DEVICES += wbd111
147
148 define Device/wbd222
149 DEVICE_TITLE := Wiliboard WBD-222
150 KERNEL := kernel-bin | append-dtb | wbd-nops
151 endef
152 TARGET_DEVICES += wbd222
153
154 $(eval $(call BuildImage))