-
-
Notifications
You must be signed in to change notification settings - Fork 479
Expand file tree
/
Copy pathMakefile
More file actions
320 lines (291 loc) · 14.2 KB
/
Copy pathMakefile
File metadata and controls
320 lines (291 loc) · 14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
BR_VER = 2024.02.10
BR_MAKE = $(MAKE) -C $(TARGET)/buildroot-$(BR_VER) BR2_EXTERNAL=$(PWD)/general O=$(TARGET)
BR_LINK = https://github.com/buildroot/buildroot/archive
BR_FILE = /tmp/buildroot-$(BR_VER).tar.gz
BR_CONF = $(TARGET)/openipc_defconfig
TARGET ?= $(PWD)/output
export CMAKE_POLICY_VERSION_MINIMUM := 3.5
# GCC 15 defaults to -std=gnu23, where an empty parameter list means "takes no
# arguments" rather than "unspecified". Several host packages Buildroot pins
# here predate that and their configure probes stop compiling: gmp 6.3.0 fails
# its compiler test with "too many arguments to function 'g'", which surfaces as
# the far less helpful "could not find a working compiler" and halts any
# `make toolchain` on a current distro. Pin the dialect rather than carry a
# version bump for every affected host package. Applies only to host C builds,
# is overridable from the environment, and is a no-op on hosts whose GCC still
# defaults to gnu17.
#
# "Applies only to host C builds" is what the prepare: rule below has to make
# true -- Buildroot appends HOST_CFLAGS to HOST_CXXFLAGS wholesale.
HOST_CFLAGS ?= -O2 -std=gnu17
export HOST_CFLAGS
CONFIG = $(error variable BOARD not defined)
TIMER := $(shell date +%s)
ifeq ($(or $(MAKECMDGOALS), $(BOARD)),)
LIST := $(shell find ./br-ext-*/configs/*_defconfig | sort | \
sed -E "s/br-ext-chip-(.+).configs.(.+)_defconfig/'\2' '\1 \2'/")
BOARD := $(or $(shell whiptail --title "Available boards" --menu "Select a config:" 20 70 12 \
--notags $(LIST) 3>&1 1>&2 2>&3),$(CONFIG))
endif
ifneq ($(BOARD),)
CONFIG := $(shell find br-ext-*/configs/*_defconfig | grep -m1 $(BOARD))
include $(CONFIG)
endif
ifneq ($(filter repack,$(MAKECMDGOALS)),)
-include $(BR_CONF)
endif
all: repack-final timer
build: defconfig
@$(BR_MAKE) all -j$(shell nproc)
br-%: defconfig
@$(BR_MAKE) $(subst br-,,$@) -j$(shell nproc)
defconfig: prepare
@echo --- $(or $(CONFIG),$(error variable BOARD not found))
@cat $(CONFIG) $(PWD)/general/openipc.fragment > $(BR_CONF)
@grep -s '^BR2_GLOBAL_PATCH_DIR=' $(CONFIG) >> $(BR_CONF) || true
@$(BR_MAKE) BR2_DEFCONFIG=$(BR_CONF) defconfig
prepare:
@if test ! -e $(TARGET)/buildroot-$(BR_VER); then \
wget -c -q $(BR_LINK)/$(BR_VER).tar.gz -O $(BR_FILE); \
mkdir -p $(TARGET); tar -xf $(BR_FILE) -C $(TARGET); fi
@# The majestic and majestic-webui tarballs are rolling release assets:
@# a fixed filename, no hash, refreshed upstream whenever those repos
@# publish. Buildroot's dl cache keeps the first copy forever, so a
@# from-source build with an old cache pairs a majestic that expects the
@# setup page with a webui from before the page existed -- the browser
@# door then 404s while SSH works. Expire cached copies after a day;
@# fresh ones are kept, offline rebuilds inside that window still work,
@# and CI downloads into an empty cache every run and never gets here.
@find $(or $(BR2_DL_DIR),$(TARGET)/buildroot-$(BR_VER)/dl) -maxdepth 2 \
\( -name 'majestic.*.master.tar.bz2' -o -name 'majestic-webui-dist.tar.gz' \) \
-mmin +1440 -delete 2>/dev/null || true
@if test -f $(TARGET)/buildroot-$(BR_VER)/linux/Config.in; then \
sed -i '/source "$$(BR2_EXTERNAL_GENERAL_PATH)\/linux\/Config.ext.in"/d' \
$(TARGET)/buildroot-$(BR_VER)/linux/Config.in; \
grep -qF 'source "$$BR2_EXTERNAL_GENERAL_PATH/linux/Config.ext.in"' \
$(TARGET)/buildroot-$(BR_VER)/linux/Config.in || \
sed -i '/source "linux\/Config.ext.in"/a source "$$BR2_EXTERNAL_GENERAL_PATH/linux/Config.ext.in"' \
$(TARGET)/buildroot-$(BR_VER)/linux/Config.in; \
fi
@# Keep the C dialect pinned at the top of this file out of host C++ builds.
@# package/Makefile.in does `HOST_CXXFLAGS += $$(HOST_CFLAGS)`, so -std=gnu17
@# reaches every host C++ compile, where it is not a C++ dialect at all: g++
@# ignores it and prints "command-line option '-std=gnu17' is valid for
@# C/ObjC but not for C++". Compilation still succeeds -- what does not is
@# CMake, whose cm_check_cxx_feature discards any feature whose try_compile
@# output contains the word "warning" (Source/Checks/cm_cxx_features.cmake).
@# host-cmake therefore decides the compiler has no std::unique_ptr and
@# aborts its own configure, taking every `make BOARD=...` with it.
@# Filtering -std= rather than that one value so a C dialect set from the
@# environment does not reintroduce this.
@if test -f $(TARGET)/buildroot-$(BR_VER)/package/Makefile.in; then \
grep -qF 'filter-out -std=%' \
$(TARGET)/buildroot-$(BR_VER)/package/Makefile.in || \
sed -i 's|^HOST_CXXFLAGS += \$$(HOST_CFLAGS)$$|HOST_CXXFLAGS += $$(filter-out -std=%,$$(HOST_CFLAGS))|' \
$(TARGET)/buildroot-$(BR_VER)/package/Makefile.in; \
fi
help:
@printf "BR-OpenIPC usage:\n \
- make list - show available device configurations\n \
- make deps - install build dependencies\n \
- make clean - remove defconfig and target folder\n \
- make package - list available packages\n \
- make distclean - remove buildroot and output folder\n \
- make br-linux - build linux kernel only\n\n"
list:
@ls -1 br-ext-chip-*/configs
package:
@find $(PWD)/general/package/* -maxdepth 0 -type d -printf "br-%f\n" | grep -v patch
toolname:
@echo toolchain.$(BR2_OPENIPC_SOC_VENDOR)-$(BR2_OPENIPC_SOC_FAMILY)
clean:
@rm -rf $(TARGET)/build $(TARGET)/images $(TARGET)/per-package $(TARGET)/target
distclean:
@rm -rf $(BR_FILE) $(TARGET)
audit-abi:
@python3 $(PWD)/general/scripts/audit-vendor-abi.py
deps:
sudo apt-get install -y automake autotools-dev bc build-essential cpio \
curl file fzf git libncurses-dev libtool lzop make rsync unzip wget libssl-dev \
python3 python3-pip
# kconfiglib is the only non-stdlib dep added by general/scripts/kconfig_graph.py;
# install with --break-system-packages on PEP 668 distros (Ubuntu 24.04+, Debian 12+).
python3 -m pip install --user --break-system-packages kconfiglib
timer:
@echo - Build time: $(shell date -d @$(shell expr $(shell date +%s) - $(TIMER)) -u +%M:%S)
toolchain: defconfig
ifeq ($(BR2_TOOLCHAIN_EXTERNAL),y)
@cp -rf $(PWD)/general/package/gcc $(TARGET)/buildroot-$(BR_VER)/package
@$(MAKE) -f $(PWD)/general/toolchain.mk BR_CONF=$(BR_CONF) CONFIG=$(PWD)/$(CONFIG)
@$(BR_MAKE) BR2_DEFCONFIG=$(BR_CONF) defconfig
endif
@$(BR_MAKE) sdk -j$(shell nproc)
@$(call BUNDLE_SDK)
toolchain-asan: defconfig
ifeq ($(BR2_TOOLCHAIN_EXTERNAL),y)
@cp -rf $(PWD)/general/package/gcc $(TARGET)/buildroot-$(BR_VER)/package
@$(MAKE) -f $(PWD)/general/toolchain.mk BR_CONF=$(BR_CONF) CONFIG=$(PWD)/$(CONFIG)
@$(BR_MAKE) BR2_DEFCONFIG=$(BR_CONF) defconfig
endif
@echo 'BR2_EXTRA_GCC_CONFIG_OPTIONS="--enable-libsanitizer"' >> $(BR_CONF)
@$(BR_MAKE) BR2_DEFCONFIG=$(BR_CONF) defconfig
@$(BR_MAKE) sdk -j$(shell nproc)
@$(call BUNDLE_SDK)
repack-final: build
@$(MAKE) --no-print-directory BOARD=$(BOARD) TARGET=$(TARGET) repack
repack:
ifeq ($(BR2_PACKAGE_OPENIPC_NFS_ROOT),y)
ifeq ($(BR2_OPENIPC_SOC_VENDOR),"rockchip")
@$(call PREPARE_REPACK,zboot.img,16384,,,nfs-root)
else
@$(call PREPARE_REPACK,uImage,16384,,,nfs-root)
endif
else
ifeq ($(BR2_OPENIPC_SOC_FAMILY),"hi3516cv6xx")
# The cv610 u-boot boots from a fixed table: 2048K(kernel) read whole by
# `sf read ${kernaddr} ${kernsize}`, then 5120K(rootfs) at a fixed offset. The
# combined firmware.bin hides both bounds, so on the 8 MiB part measure the two
# halves against their slots here, where a PR sees it. 16 MiB is left on the
# whole-blob figure: its kernel already overruns 2048K on master, and that is a
# u-boot table question, not one a size check here can settle.
ifeq ($(BR2_OPENIPC_FLASH_SIZE),"8")
@$(call CHECK_SIZE,fitImage,2048)
@$(call CHECK_SIZE,rootfs.squashfs,5120)
endif
@$(call PREPARE_REPACK,firmware.bin,$(shell expr $(subst ",,$(BR2_OPENIPC_FLASH_SIZE)) \* 1024),,,nor)
else ifeq ($(BR2_OPENIPC_SOC_FAMILY),"hi3519dv500")
@$(call PREPARE_REPACK,firmware.bin,$(shell expr $(subst ",,$(BR2_OPENIPC_FLASH_SIZE)) \* 1024),,,nor)
else ifneq ($(wildcard $(TARGET)/images/firmware.bin),)
@$(call PREPARE_REPACK,firmware.bin,8192,,,nor)
else
ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS),y)
ifeq ($(BR2_OPENIPC_SOC_VENDOR),"rockchip")
@$(call PREPARE_REPACK,zboot.img,4096,rootfs.squashfs,8192,nor)
else ifeq ($(BR2_OPENIPC_FLASH_SIZE),"8")
@$(call PREPARE_REPACK,uImage,2048,rootfs.squashfs,5120,nor)
else
@$(call PREPARE_REPACK,uImage,2048,rootfs.squashfs,8192,nor)
endif
endif
ifeq ($(BR2_TARGET_ROOTFS_UBI),y)
ifneq ($(filter $(BR2_OPENIPC_SOC_VENDOR),"rockchip" "sigmastar"),)
@$(call PREPARE_REPACK,,,rootfs.ubi,16384,nand)
else
@$(call PREPARE_REPACK,uImage,4096,rootfs.ubi,16384,nand)
endif
endif
ifeq ($(BR2_TARGET_ROOTFS_INITRAMFS),y)
@$(call PREPARE_REPACK,uImage,16384,,,initramfs)
endif
endif
endif
size-report:
@TARGET_DIR=$(TARGET)/target \
BR2_OUTPUT_DIR=$(TARGET) \
IMAGES_DIR=$(TARGET)/images \
OPENIPC_SOC_MODEL=$(BR2_OPENIPC_SOC_MODEL) \
OPENIPC_VARIANT=$(BR2_OPENIPC_VARIANT) \
BR2_OPENIPC_FLASH_SIZE=$(BR2_OPENIPC_FLASH_SIZE) \
BR2_OPENIPC_SOC_VENDOR=$(BR2_OPENIPC_SOC_VENDOR) \
BR2_TARGET_ROOTFS_SQUASHFS=$(BR2_TARGET_ROOTFS_SQUASHFS) \
BR2_TARGET_ROOTFS_UBI=$(BR2_TARGET_ROOTFS_UBI) \
python3 $(PWD)/general/scripts/size_report.py
kconfig-graph:
@TARGET_DIR=$(TARGET)/target \
BR2_OUTPUT_DIR=$(TARGET) \
IMAGES_DIR=$(TARGET)/images \
OPENIPC_SOC_MODEL=$(BR2_OPENIPC_SOC_MODEL) \
OPENIPC_VARIANT=$(BR2_OPENIPC_VARIANT) \
BR_VER=$(BR_VER) \
PWD=$(PWD) \
python3 $(PWD)/general/scripts/kconfig_graph.py
define BUNDLE_SDK
OSDRV_DIR=$(PWD)/general/package/$(BR2_OPENIPC_SOC_VENDOR)-osdrv-$(BR2_OPENIPC_SOC_FAMILY)/files; \
MPP_HEADERS=$(PWD)/general/package/hisilicon-osdrv-hi3516cv100/files/include; \
SDK_TGZ=$$(find $(TARGET)/images -name '*_sdk-buildroot.tar.gz' | head -1); \
UCLIBC_COMPAT_SRC=$(PWD)/general/package/uclibc-compat/src/uclibc-compat.c; \
UCLIBC_COMPAT_STATIC=$(PWD)/general/package/uclibc-compat/src/uclibc-compat-static.c; \
GLIBC_COMPAT_SRC=$(PWD)/general/package/glibc-compat/src/glibc-compat.c; \
GLIBC_COMPAT_STATIC=$(PWD)/general/package/glibc-compat/src/glibc-compat-static.c; \
SDK_CC=$$(ls $(TARGET)/host/bin/*-gcc 2>/dev/null | head -1); \
if [ -d "$$OSDRV_DIR" ] && [ -n "$$SDK_TGZ" ]; then \
SDK_TOP=$$(tar tzf $$SDK_TGZ | head -1 | cut -d/ -f1); \
rm -rf /tmp/sdk-overlay && mkdir -p /tmp/sdk-overlay/$$SDK_TOP/sdk; \
cp -a $$OSDRV_DIR/* /tmp/sdk-overlay/$$SDK_TOP/sdk/; \
if [ "$(BR2_OPENIPC_SOC_VENDOR)" = "hisilicon" ] && [ ! -d "$$OSDRV_DIR/include" ] && [ -d "$$MPP_HEADERS" ]; then \
mkdir -p /tmp/sdk-overlay/$$SDK_TOP/sdk/include; \
cp -a $$MPP_HEADERS/. /tmp/sdk-overlay/$$SDK_TOP/sdk/include/; \
fi; \
if [ -n "$$SDK_CC" ]; then \
SDK_AR=$$(echo $$SDK_CC | sed 's/-gcc$$/-ar/'); \
if [ -f "$$UCLIBC_COMPAT_SRC" ]; then \
$$SDK_CC -shared -Wall -O2 -fPIC \
-o /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/libuclibc-compat.so \
$$UCLIBC_COMPAT_SRC; \
fi; \
if [ -f "$$UCLIBC_COMPAT_STATIC" ]; then \
$$SDK_CC -Wall -O2 -fPIC -c \
-o /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/uclibc-compat-static.o \
$$UCLIBC_COMPAT_STATIC; \
$$SDK_AR rcs /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/libuclibc-compat-static.a \
/tmp/sdk-overlay/$$SDK_TOP/sdk/lib/uclibc-compat-static.o; \
rm -f /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/uclibc-compat-static.o; \
fi; \
if [ -f "$$GLIBC_COMPAT_SRC" ]; then \
$$SDK_CC -shared -Wall -O2 -fPIC \
-o /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/libglibc-compat.so \
$$GLIBC_COMPAT_SRC; \
fi; \
if [ -f "$$GLIBC_COMPAT_STATIC" ]; then \
$$SDK_CC -Wall -O2 -fPIC -c \
-o /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/glibc-compat-static.o \
$$GLIBC_COMPAT_STATIC; \
$$SDK_AR rcs /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/libglibc-compat-static.a \
/tmp/sdk-overlay/$$SDK_TOP/sdk/lib/glibc-compat-static.o; \
rm -f /tmp/sdk-overlay/$$SDK_TOP/sdk/lib/glibc-compat-static.o; \
fi; \
fi; \
gunzip $$SDK_TGZ && \
tar rf $${SDK_TGZ%.tar.gz}.tar -C /tmp/sdk-overlay $$SDK_TOP && \
gzip $${SDK_TGZ%.tar.gz}.tar; \
rm -rf /tmp/sdk-overlay; \
fi
endef
define PREPARE_REPACK
$(if $(1),$(call CHECK_SIZE,$(1),$(2)))
$(if $(3),$(call CHECK_SIZE,$(3),$(4)))
$(call REPACK_FIRMWARE,$(1),$(3),$(5))
endef
# The headroom line exists because "fits" and "only just fits" read the same in
# a green build. hi3519v101_lite sat at exactly 5120KB of a 5120KB cap for weeks
# -- reported, passing, and one 34-line edit from the overflow it hit on
# 2026-08-18. 32KB is the threshold because what tips these boards is a change
# to the shared overlay, which is single-digit KB at a time; a board under that
# is a couple of ordinary commits from red, and a board over it is not.
define CHECK_SIZE
$(eval FILE_SIZE = $(shell expr $(shell stat -c %s $(TARGET)/images/$(1) || echo 0) / 1024))
if test $(FILE_SIZE) -eq 0; then exit 1; fi
echo - $(1): [$(FILE_SIZE)KB/$(2)KB]
if test $(FILE_SIZE) -gt $(2); then \
echo -- size exceeded by: $(shell expr $(FILE_SIZE) - $(2))KB; exit 1; fi
if test $(shell expr $(2) - $(FILE_SIZE)) -lt 32; then \
echo -- headroom warning: $(1) has $(shell expr $(2) - $(FILE_SIZE))KB left of $(2)KB; fi
endef
define REPACK_FIRMWARE
cd $(TARGET)/images && if test -e rootfs.tar; then mv -f rootfs.tar rootfs.$(BR2_OPENIPC_SOC_MODEL).tar; fi
$(if $(1),cd $(TARGET)/images && if test -e $(1); then mv -f $(1) $(1).$(BR2_OPENIPC_SOC_MODEL); fi)
$(if $(2),cd $(TARGET)/images && if test -e $(2); then mv -f $(2) $(2).$(BR2_OPENIPC_SOC_MODEL); fi)
$(if $(1),cd $(TARGET)/images && md5sum $(1).$(BR2_OPENIPC_SOC_MODEL) > $(1).$(BR2_OPENIPC_SOC_MODEL).md5sum)
$(if $(2),cd $(TARGET)/images && md5sum $(2).$(BR2_OPENIPC_SOC_MODEL) > $(2).$(BR2_OPENIPC_SOC_MODEL).md5sum)
$(if $(1),$(eval KERNEL = $(1).$(BR2_OPENIPC_SOC_MODEL)),$(eval KERNEL =))
$(if $(2),$(eval ROOTFS = $(2).$(BR2_OPENIPC_SOC_MODEL)),$(eval ROOTFS =))
$(if $(1),$(eval KERNEL_MD5 = $(1).$(BR2_OPENIPC_SOC_MODEL).md5sum),$(eval KERNEL_MD5 =))
$(if $(2),$(eval ROOTFS_MD5 = $(2).$(BR2_OPENIPC_SOC_MODEL).md5sum),$(eval ROOTFS_MD5 =))
$(eval ARCHIVE = openipc.$(BR2_OPENIPC_SOC_MODEL)-$(3)-$(BR2_OPENIPC_VARIANT).tgz)
# Checksums first, so an unpack that runs out of room in /tmp on a 32 MB
# camera loses the IMAGE and keeps the .md5sum that convicts it. The other
# order loses the checksum and leaves a short image that sysupgrade's
# `md5sum -c *.md5sum` then cannot see at all.
cd $(TARGET)/images && tar -czf $(ARCHIVE) $(KERNEL_MD5) $(ROOTFS_MD5) $(KERNEL) $(ROOTFS)
rm -f $(TARGET)/images/*.md5sum
endef