procd: make mDNS TXT record parsing more solid
[openwrt/openwrt.git] / package / boot / uboot-kirkwood / Makefile
1 #
2 # Copyright (C) 2010-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_VERSION:=2020.04
11 PKG_RELEASE:=$(AUTORELEASE)
12
13 PKG_HASH:=fe732aaf037d9cc3c0909bad8362af366ae964bbdac6913a34081ff4ad565372
14
15 include $(INCLUDE_DIR)/u-boot.mk
16 include $(INCLUDE_DIR)/package.mk
17
18 define U-Boot/Default
19 BUILD_TARGET:=kirkwood
20 endef
21
22 define U-Boot/dockstar
23 NAME:=Seagate DockStar
24 BUILD_DEVICES:=seagate_dockstar
25 endef
26
27 define U-Boot/dockstar_second_stage
28 NAME:=Seagate DockStar (second stage)
29 BUILD_DEVICES:=seagate_dockstar
30 endef
31
32 define U-Boot/goflexhome
33 NAME:=the Seagate GoFlexHome/GoFlexNet
34 BUILD_DEVICES:=seagate_goflexhome seagate_goflexnet
35 endef
36
37 define U-Boot/ib62x0
38 NAME:=RaidSonic ICY BOX NAS6210 and NAS6220
39 BUILD_DEVICES:=raidsonic_ib-nas62x0
40 endef
41
42 define U-Boot/ib62x0_second_stage
43 NAME:=RaidSonic ICY BOX NAS6210 and NAS6220 (second stage)
44 BUILD_DEVICES:=raidsonic_ib-nas62x0
45 endef
46
47 define U-Boot/iconnect
48 NAME:=Iomega iConnect Wireless
49 BUILD_DEVICES:=iom_iconnect-1.1
50 endef
51
52 define U-Boot/iconnect_second_stage
53 NAME:=Iomega iConnect Wireless (second stage)
54 BUILD_DEVICES:=iom_iconnect-1.1
55 endef
56
57 define U-Boot/l-50
58 NAME:=CheckPoint L-50
59 BUILD_DEVICES:=checkpoint_l-50
60 endef
61
62 define U-Boot/nas220
63 NAME:=Seagate Blackarmor NAS220
64 BUILD_DEVICES:=seagate_blackarmor-nas220
65 endef
66
67 define U-Boot/nsa310
68 NAME:=Zyxel NSA310
69 BUILD_DEVICES:=zyxel_nsa310b
70 endef
71
72 define U-Boot/nsa310s
73 NAME:=Zyxel NSA310S
74 BUILD_DEVICES:=zyxel_nsa310s
75 endef
76
77 define U-Boot/nsa325
78 NAME:=Zyxel NSA325v1 and v2
79 BUILD_DEVICES:=zyxel_nsa325
80 endef
81
82 define U-Boot/pogo_e02
83 NAME:=Cloud Engines Pogoplug E02
84 BUILD_DEVICES:=cloudengines_pogoe02
85 endef
86
87 define U-Boot/pogo_e02_second_stage
88 NAME:=Cloud Engines Pogoplug E02 (second stage)
89 BUILD_DEVICES:=cloudengines_pogoe02
90 endef
91
92 define U-Boot/pogoplugv4
93 NAME:=Cloud Engines Pogoplug V4
94 BUILD_DEVICES:=cloudengines_pogoplugv4
95 endef
96
97 define U-Boot/sheevaplug
98 NAME:=Globalscale SheevaPlug
99 BUILD_DEVICES:=globalscale_sheevaplug
100 endef
101
102 UBOOT_TARGETS := \
103 dockstar dockstar_second_stage \
104 goflexhome \
105 ib62x0 ib62x0_second_stage \
106 iconnect iconnect_second_stage \
107 l-50 \
108 nas220 \
109 nsa310 \
110 nsa310s \
111 nsa325 \
112 pogo_e02 pogo_e02_second_stage \
113 pogoplugv4 \
114 sheevaplug
115
116 define Build/Configure
117 $(if $(findstring _second_stage,$(BUILD_VARIANT)),
118 $(CP) \
119 $(PKG_BUILD_DIR)/configs/$(subst _second_stage,,$(BUILD_VARIANT))_defconfig \
120 $(PKG_BUILD_DIR)/configs/$(BUILD_VARIANT)_defconfig
121 echo CONFIG_SECOND_STAGE=y >> $(PKG_BUILD_DIR)/configs/$(BUILD_VARIANT)_defconfig
122 )
123 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
124 $(BUILD_VARIANT)_config V=1
125 endef
126
127 define Build/Compile
128 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
129 u-boot.kwb \
130 CROSS_COMPILE=$(TARGET_CROSS)
131 mkimage -A $(ARCH) -O linux -T kernel -C none \
132 -a 0x600000 -e 0x600000 \
133 -n 'U-Boot uImage' \
134 -d $(PKG_BUILD_DIR)/u-boot.bin $(PKG_BUILD_DIR)/u-boot.img
135 endef
136
137 define Package/u-boot/install
138 $(CP) \
139 $(PKG_BUILD_DIR)/u-boot.bin \
140 $(PKG_BUILD_DIR)/u-boot.kwb \
141 $(PKG_BUILD_DIR)/u-boot.img \
142 $(1)/
143 endef
144
145 define Build/InstallDev
146 $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
147 $(INSTALL_BIN) $(PKG_BUILD_DIR)/tools/kwboot $(STAGING_DIR_HOST)/bin/
148 endef
149
150 $(eval $(call BuildPackage/U-Boot))