forked from buildroot/buildroot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGES
More file actions
15230 lines (11799 loc) · 594 KB
/
CHANGES
File metadata and controls
15230 lines (11799 loc) · 594 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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2025.02.4, released June 23th, 2025
Important / security related fixes:
- assimp: CVE-2025-3015, CVE-2025-3016
- binutils: CVE-2025-3198
- connman: CVE-2025-32366, CVE-2025-32743
- go: CVE-2025-0913, CVE-2025-4673, CVE-2025-22874
- iputils: CVE-2025-47268, CVE-2025-48964
- jq: CVE-2024-23337, CVE-2025-48060, CVE-2024-53427
- libcurl: CVE-2025-4947, CVE-2025-5025, CVE-2025-5399
- net-tools: CVE-2025-46836
- nodejs: CVE-2025-23165, CVE-2025-23166
- openvmtools: CVE-2025-22247
- python-django: CVE-2025-48432
- python-requests: CVE-2024-47081
- python-tornado: CVE-2025-47287
- redis: CVE-2025-21605, CVE-2025-27151
- samba4: CVE-2025-0620
- sox: CVE-2021-23159, CVE-2021-23172, CVE-2021-23210, CVE-2021-3643,
CVE-2021-40426, CVE-2022-31650, CVE-2022-31651, CVE-2023-26590,
CVE-2023-32627, CVE-2023-34318
- webkitgtk: CVE-2025-24223, CVE-2025-31204, CVE-2025-31205,
CVE-2025-31206, CVE-2025-31215, CVE-2025-31257
Updated / fixed packages: alsa-utils, atkmm, atmm2_28, audit,
bluez5_utils, busybox, catch2, connman, dbus-glib, dlib, dovecot,
esp-hosted, execline, firmware-ele-imx, flex, fluent-bit, freescale-imx,
ghostscript, gmrender-resurrect, grub2, gst1-plugins-bad, gtkmm3, iputils,
kmsxx, libcamera, libcurl, libglade, libical, libuv, llvm-project,
lm-sensors, m4, mesa3d, mongoose, openvmtools, php, protobuf-c,
python-django, python-fastapi, python-flit-core, python-jc,
python-requests, python-uvicorn, qt5 (declarative, webengine,
webengine-chromium), qt6 (base, multimedia, tools), rpm, samba4, spdlog,
systemd, uacme, uboot-tools, yasm
Removed package: libebur128
Infrastructure updates / fixes:
- pkg-cmake now forces CMake>=3.5
- pkg-meson now uses a dedicated buildroot build directory
see https://gitlab.com/buildroot.org/buildroot/-/issues/64
- include defconfigs in sub-directories in make list-defconfigs
- new manual section about private repositories
- pkg-autotools: handle libtool 2.5.x
- pkg-cmake: force check_language(CXX) to be false when building w/o C++
- pkg-stats: add support for reporting stale CVE entries
- add basic support for package file download over smb
- toolchain/wrapper: check unsafe paths earlier
- test_flutter: drop unneeded vga/vnc stanzas from QEMU invocation
Test improvements
- new python-pydantic runtime tests
- new dieharder runtime test
- test_xen: fix runtime test
- test_timezone: fix test by setting a fixed time
- new tree runtime test
Boards fixes
- imx6ulz-bsh-smm-m2: fix missing U-Boot
- freescale: fix cpu name in i.MX9 boards
- imx8mn-bsh-smm-s2: erase the entire NAND chip
- freescale_t1040d4rdb: fix kernel build
In addition, thanks to the new stale CVE reporting, reported
vulnerabilities have been fixed for the following packages:
busybox, dnsmasq, dovecot, exim, exim, freeradius-server, grub2,
libopenh264, libssh, netsnmp, ninja, qt5base, ripgrep, sox, tinyxml
2025.05, released June 9th, 2025
Various fixes.
Updated/fixed packages: armadillo, busybox, dhcpcd, dovecot,
easyframes, exim, ghostscript, go, gst1-plugins-bad, iputils,
jq, libcurl, libftdi1, libglib2, lm-sensors,
mender-update-modules, mesa3d, mongoose, mpd, ninja, podman,
python-django, python-gobject, qoriq-mc-utils, qt5declarative,
qt5webengine, qt5webengine-chromium, qt6base, qt6tools, redis,
rtl8723ds, spirv-llvm-translator, unzip, yasm
2025.05-rc2, released May 28th, 2025
Fixes all over the tree.
Defconfigs: imx8mn-bsh-smm-s2: Unbreak boot after move to
U-Boot 2025.04.
Updated/fixed packages: assimp, atkmm, atkmm2_28, binutils,
casync-nano, esp-hosted, gmrender-resurrect, gtkmm3, kmsxx,
libcamera, libglade, linux, lzo, python-click, python-django,
python-flask-restx, python-pydantic, python-pydantic-core,
python-referencing, python-tornado, sane-airscan, systemd,
uacme, uuu
2025.05-rc1, released May 19th, 2025
Fixes all over the tree and package updates.
Download:
- Rust updated to version 1.86.0, which has slightly changed
the cargo fetching behaviour, so the generated tarballs now
use a -cargo4 suffix to reflect that.
- Subversion download logic is now reproducible with non-US
locales
- Sources can now be fetched from a smb:// location (using
curl).
Dependencies:
- AWK is now required on the build host.
Toolchains:
- Bootlin ARMv7-A toolchains are now also available for
ARMv8-A CPUs in 32bit mode
Misc:
- /etc/resolv.conf symlink now points to /run rather than /tmp
- support/scripts/pkg-stats can now report stale CVE entries,
E.G. entries in <PKG>_IGNORE_CVES that are no longer needed
after a NVD update.
New defconfigs: Engicam PX30 SOM, Freescale i.IM 91 EVK and 93
Freedom, HiFive Unmatched, Pine64 ROCKPro64 EBBR boot,
Raspberrypi 2 in 64bit mode, Sipeed LicheePi 4A
New packages: aardvark-dns, amazon-ecr-credential-helper,
casync-nano, cgroupfs-v2-mount, docker-credential-acr-env,
docker-credential-gcr, grout, lowdown, lpac,
mender-update-modules, netavark, passt, podman,
python-aniso8601, python-cachelib, python-emailproxy,
python-flask-caching, python-flask-restx, python-mypy,
python-pyproj, python-simple-pid, python-smbus2,
python-types-psutil, python-types-setuptools,
python-typing-inspection, python-tzlocal,
qoriq-ddr-phy-binary, qoriq-firmware-inphi, qoriq-mc-binary,
qoriq-mc-utils, sane-airscan, sipeed-lpi4abin, ufs-utils,
xilinx-fpgautil
Issues resolved:
- openh264's build/ should not be removed
https://gitlab.com/buildroot.org/buildroot/-/issues/64
- package/dbus: incorrect session bus configuration file..
https://gitlab.com/buildroot.org/buildroot/-/issues/67
- Update pkcs11-tool to v1.9.1
https://gitlab.com/buildroot.org/buildroot/-/issues/109
- netsnmp: unexpected header length in /proc/net/snmp...
https://gitlab.com/buildroot.org/buildroot/-/issues/110
2025.02.3, released May 19th, 2025
Build issues and other problems solved for packages:
libcap
2025.02.2, released May 18th, 2025
Important / security related fixes:
- openvpn: CVE-2025-2704
- ghostscript: CVE-2025-27830, CVE-2025-27831, CVE-2025-27832,
CVE-2025-27833, CVE-2025-27834, CVE-2025-27835,
CVE-2025-27836, CVE-2025-27837,
- libfcgi: CVE-2025-23016
- perl: CVE-2024-56406
- mosquitto: CVE-2023-28366
- c-ares: CVE-2025-31498
- graphicsmagick: CVE-2025-32460, CVE-2025-27795
- libxml2: CVE-2025-32414, CVE-2025-32415
- wireshark: CVE-2025-1492
- yam: CVE-2021-33454
- sqlite: CVE-2025-29087
- xz: CVE-2025-31115
- python-django: CVE-2025-32873
- libraw: CVE-2025-43961, CVE-2025-43962, CVE-2025-43963,
CVE-2025-43964
- dropbear: CVE-2025-47203
- intel-microcode: CVE-2025-24495, CVE-2024-28956, CVE-2024-43420,
CVE-2025-20103
- openssh: CVE-2025-32728
- screen: CVE-2025-23395, CVE-2025-46802, CVE-2025-46803,
CVE-2025-46804, CVE-2025-46805
- python-flask: CVE-2025-47278
- python-h11: CVE-2025-43859
- postgresql: CVE-2025-4207
Updated / fixed packages: sysklogd, libfcgi, double-conversion,
igh-ethercat, c-periphery, socat, lua-periphery, fluent-bit,
samba4, ca-certificates, dbus-cxx, atkmm2_28, pangomm2_46,
cairomm1_14, glibmm2_66, gtkmm3, file, opencsd, libopenmpt,
fwts, libtracefs, iproute2, ripgrep, bat, dust, trace-cmd,
libubootenv, micropython, python-cryptography, dnsmasq,
wireless-regdb, python-setuptools, libuci, libubox, ubus, waf,
armadillo, ncftp, expat, libxml2, wireshark, hiredis, zfs,
sunxi-mali-utgard-driver, ruby, mtools, hwdata, traceroute,
zic, tzdata, jo, gdb, tpm2-pkcs11, nss-pam-ldapd, ghostscript,
dropbear, intel-microcode, screen, python-flask, python-h11,
mariadb, ffmpeg, postgresql
Test Improvements:
- test_edk2: add a few build tests
- weston: fix the weston shutdown test
- lighttpd: runtime test
- openocd: runtime test
- hyperfine: runtime test
- python-urllib3: runtime test
- test_edk2: add macchiatobin build test
- bat: runtime test
- dust: runtime test
Infrastructure updates / fixes:
- libopenh264: ignore CVE-2025-27091
- edk2: drop dependency on tf-a for macchiatobin
- vim: extend comment about vi symlink
- board/raspberrypi/readme.txt: various improvements
- raspberrypi5: install Raspberry Pi 500 device-tree blob
- gen-bootlin-toolchains: allows armv8-a CPU to use armv7-a toolchains
- libsigrokdecode: needs python3 w/ zlib support
- dejavu: update homepage
- pulseview: fix, update, and reorganise dependencies
- boost: move host variables closer together
- boost: move target library selection variables closer together
- support/download/git: use FOO_DL_OPTS
- stm32mp135f_dk: fix optee hash
- libcamera: various fixes
- apparmor don't reference libapparmor variables
- rpi-firmware: add note to keep in sync with kernel
- python-sdbus: fix upstream url
- qt5webengine: drop unused file
- warp7: Improve Wifi instructions
- cryptopp: add upstream URL in help text
- dpdk: fixup Config.in comment about dependencies
- ffmpeg: add support for libopenmpt
- pkg-stats: fix typo in --disable help text
- imx28evk: enable BR2_DOWNLOAD_FORCE_CHECK_HASHES
- friendlyarm_nanopi_r3s: fix host linux headers custom version
- support/dependencies/dependencies.sh: awk is needed by Buildroot
- Config.in: introduce BR2_HOST_GCC_AT_LEAST_{12..15}
- dbus: set session-socket-dir to /tmp
- fs/erofs: unbreak custom compression handling
- nodejs: make target nodejs package virtual
- mpd: update CPE/CVE information
- Various fix for GCC15 host
Build issues and other problems solved for packages:
sqlite, pahole, libv4l, arm-trusted-firmware, libopenmpt, iptables,
tailscale, wilc-driver, rtl8188eu, rtl8723ds, lmbench, fluent-bit,
mosquitto, iproutes2, pixman, linux-tools, libcoap, libcamera,
strongswan, mpv, hiredis, zfs, bird, netsnmp, libcap, musepack,
ffmpeg, libqrencode
2025.02.1, released April 22nd, 2025
Changes with potentially large impact:
- gstreamer1 and related packages: updated from 1.22.x to 1.24.x.
1.22.x was already EOL when Buildroot 2025.02 was released, so
GStreamer should really already have been udpated to 1.24.x.
This update was needed to fix a lot of vulnerabilities.
- frr: updated from 9.1.3 to 10.3. Version 9 is no longer
maintained upstream, and not in any distro either. This update
was needed to fix a vulernability.
Important / security related fixes:
- libmodsecurity: CVE-2025-27110.
- tinyxml2: CVE-2024-50615.
- xserver_xorg-server & xwayland: CVE-2024-9632, CVE-2025-26594,
CVE-2025-26595, CVE-2025-26596, CVE-2025-26597, CVE-2025-26598,
CVE-2025-26599, CVE-2025-26600, CVE-2025-26601.
- exim: CVE-2025-30232.
- mbedtls: CVE-2025-27809, CVE-2025-27810.
- libfreeglut: CVE-2024-24258, CVE-2024-24259.
- libopenh264: CVE-2025-27091.
- gstreamer1: CVE-2024-47834, CVE-2024-47835, CVE-2024-47778,
CVE-2024-47777 CVE-2024-47776, CVE-2024-47775, CVE-2024-47774,
CVE-2024-47615, CVE-2024-47613, CVE-2024-47607, CVE-2024-47606,
CVE-2024-47603, CVE-2024-47602, CVE-2024-47601, CVE-2024-47600,
CVE-2024-47599, CVE-2024-47598, CVE-2024-47597, CVE-2024-47596,
CVE-2024-47546, CVE-2024-47545, CVE-2024-47544, CVE-2024-47543,
CVE-2024-47542, CVE-2024-47541, CVE-2024-47540, CVE-2024-47539,
CVE-2024-47538, CVE-2024-47537.
- augeas: CVE-2025-2588.
- libndp: CVE-2024-5564.
- python-jinja2: CVE-2025-27516.
- python-django: CVE-2025-26699.
- libarchive: CVE-2024-57970, CVE-2025-1632.
- frr: CVE-2024-55553.
Updated / fixed packages: libmodsecurity, intel-mediadriver,
intel-vpl-gpu-rt, python-aerich, python-aiohttp, python-maturin,
python-tortoise-orm, python-sqlalchemy, kodi-pvr-waipu, tor, mc,
tinyxml2, libgeos, intel-vpl-gpu-rt, intel-mediadriver, ruby,
ncftp, xserver_xorg-server, exim, mbedtls, gdb, freerdp, uclibc,
libsoup3, cairo, zabbix, armadillo, spdlog, go, linux, linux-tools,
gstreamer, linux-header, ethtool, apr, mali-driver, libcoap, libcap
python-fastapi, python-twisted.
Test Improvements:
- linux-tools: selftests: Add path containing BPF binary.
- testing: make time setting portable.
- testing: set date in emulated machine.
- testing: add git runtime test.
- test_gstreamer1: fix test by using bootlin toolchain.
Infrastructure updates/fixes:
- kconfig: Handle backspace (^H) key.
- xilinx-embeddedsw: fix menuconfig visualization.
- DEVELOPERS: change arnout's address.
- support/download/svn: use 'svn info' whith LC_ALL=C
- glibc: disable on RISC-V ilp32f and lp64f, not supported.
- dillo: Fix an issue related to _SITE url for make show-info.
- pkg-stats: add -v/--verbose option
Build issues/problems solved for packages:
dillo, freerdp, freeswitch, gdb, glibc, linux-tools,
mesa3d-demos, ncftp, tesseract-ocr,
v4l2loopback, zabbix
2025.02, released March 17th, 2025
Various fixes.
Updated/fixed packages: expat, fio, libopenssl, php, rauc,
rt-tests
2025.02-rc2, released March 13th 28th, 2025
Fixes all over the tree.
Linux: Support device tree overlays and support custom device
tree files with Linux >= 6.12, which changed the build
logic. For this a new BR2_LINUX_KERNEL_CUSTOM_DTS_DIR option
has been introduced and the existing _CUSTOM_DTS_PATH option
deprecated.
Updated/fixed packages: compiler-rt, elfutils, fluidsynth,
freescale-imx, go, jbig2dec, libcamera, libcdio, libjxl, musl,
optee-os, postgresql, prboom, sqlite, systemd, util-linux,
webkitgtk
2025.02-rc1, released February 28th, 2025
Fixes all over the tree and new features.
Nios2 architecture support removed.
Toolchain:
- binutils 2.44 added, binutils 2.43.1 becomes the default.
- gdb 16.1 added, gdb 15.1 becomes the default.
- glibc 2.41, uclibc-ng 1.0.51
- Synopsys external ARC toolchains marked as broken as they
are not "bare" toolchains, causing various build issues
- ARM external toolchains bumped to 12.4.rel1 and are now also
available for Aarch64 build machines
Infrastructure:
- utils/generate-cyclonedx script added to generate SBOM in
CycloneDX format. To use it, run
make show-info | utils/generate-cyclonedx > sbom.json
new defconfigs: FriendlyARM NanoPi R3S, NXP imx8mm-evk /
imx8mm-ddr4 /imx8mp-evk / imx93-evk / ls1043a-rdb /
ls1046a-rdb, Orangepi 5 plus, Polyhex Debix model A,
Raspberrypi zero 2w 64bit, Raxda rock 4SE, STM STM32MP135F-DK
New packages: bmap-writer, cpuinfo, cross-ldd, farmhash,
fft2d, fp16, gemmlowp, libecoli, libglib2-bootstrap, lynis,
nxp-bt-wifi-firmware, nxp-mwifiex, panel-mipi-dbi-firmware,
parsec, psimd, pthreadpool, python-aiohttp-sse-client,
python-asyncclick, python-changelog-chug, python-telnetlib3,
python-waitress, qt6graphs, qt6multimedia, qt6quick3d,
rnnoise, ruy, snooze, tensorflow-lite, usbip, utfcpp,
wlr-randr, xilinx-embeddedsw, xnnpack
Removed packages: angularjs, angular-websocket, directfb,
directfb-examples, fconfig, genromfs, giblib, gst-omx,
hiwatha, latencytop, libhid, linux-fusion, lite, mimic,
mongodb, obsidian-cursors, python-m2crypto, quagga, ramsmp,
w_scan
Issues resolved:
- bluetooth.service cannot connect to D-BUS
https://gitlab.com/buildroot.org/buildroot/-/issues/65
- gdb package doesn't have a licence hash in the gdb.hash file
https://gitlab.com/buildroot.org/buildroot/-/issues/66
- package/libsha1: Build failure with GCC 14 [-Wimplicit-int]
https://gitlab.com/buildroot.org/buildroot/-/issues/69
- samba4 build failed in master
https://gitlab.com/buildroot.org/buildroot/-/issues/86
2024.11.4, released April 22nd, 2025
Important / security related fixes:
- xserver_xorg-server & xwayland: CVE-2024-9632, CVE-2025-26594,
CVE-2025-26595, CVE-2025-26596, CVE-2025-26597, CVE-2025-26598
CVE-2025-26599, CVE-2025-26600, CVE-2025-26601.
- exim: CVE-2025-30232.
- mbedtls: CVE-2025-27809, CVE-2025-27810.
- augeas: CVE-2025-2588.
- libarchive: CVE-2024-57970, CVE-2025-1632, CVE-2025-25724.
- xwayland: CVE-2024-31081, CVE-2024-31083, CVE-2024-9632,
CVE-2025-26594, CVE-2025-26595, CVE-2025-26596,
CVE-2025-26597, CVE-2025-26598, CVE-2025-26599,
CVE-2025-26600, CVE-2025-26601
- libopenh264: CVE-2025-27091.
- libmodsecurity: CVE-2025-27110.
- tinyxml2: CVE-2024-50615.
Updated/fixed packages:
libgeos, freerdp, libsoup3, cairo, linux, apr, mali-driver,
libcoap, python-fastapi, python-twisted, tor, mc, linux-header,
linux-tools.
Test Improvements:
- linux-tools: selftests: Add path containing BPF binary.
- testing: add git runtime test.
Infrastructure updates/fixes:
- DEVELOPERS: change arnout's address.
- DEVELOPERS: add Dario Binacchi for ti-k3-boot-firmware.
- support/download/svn: use 'svn info' whith LC_ALL=C**.
- dillo: Fix an issue related to _SITE url for make show-info.
- kconfig: Handle backspace (^H) key.
- pkg-stats: add -v/--verbose option
Build issues/problems solved for:
freeswitch, glibc, v4l2loopback, ls1028ardb, ls1028ardb,
mesa3d-demos.
2024.11.3, released March 24st, 2025
Important / security related fixes.
Defconfigs: Octavo osd23mp1: Fix TF-A/Linux compilation after
move to newer toolchain versions.
Updated/fixed packages: compiler-rt, exim, expat, fio, foot,
go, jbig2dec, libcamera, libjxl, libopenssl, libxml2, mokutil,
musl, optee-os, php, pkgconf, postgresql, prboom,
python-typing-extensions, rauc, systemd, util-linux,
watchdogd, webkitgtk
2024.11.2, released February 21st, 2025
Important / security related fixes.
Infrastructure: support/script/genimage.sh: exit on errors
Defconfigs: ti_am62ax_sk: Include PMIC driver to fix boot
issue
Updated/fixed packages: acpica, apache, assimp, asterisk,
bind, busybox, clamav, curlpp, dillo, elfutils, fakeroot,
ffmpeg, freetype, git, glibc, gnu-efi, gnutls, go, gpsd,
heimdal, imagemagick, intel-microcode, kodi, libbsd, libcurl,
libopenssl, libtasn1, libxml2, mdnsd, mpg123, musl, nettle,
nginx, nodejs, openjpeg, openssh, openvpn, php, pipewire,
postgresql, python-django, python3, redis, rsync, socat,
swipl, syslinux, tor, tzdata, uclibc, uemacs, unbound,
usbutils, util-linux, webkitgtk, xen, zic, zlog, zstd,
zxing-cpp
Issues resolved:
- samba4 build failed in master
https://gitlab.com/buildroot.org/buildroot/-/issues/86
2024.11.1, released January 9th, 2025
Important / security related fixes.
Infrastructure:
- Ensure CONFIG_TRIM_UNUSED_KSYMS is disabled when building
external Linux kernel modules
Updated/fixed packages: apr, bc, bluez5_utils, c-icap,
cryptodev-linux, dahdi-linux, dpdk, freeipmi, gdb, gnupg2,
gnuplot, gnutls, go, gobject-introspection, grub2, gst-omx,
gst1-devtools, gst1-libav, gst1-plugins-bad,
gst1-plugins-base, gst1-plugins-good, gst1-plugins-ugly,
gst1-python, gst1-rtsp-server, gst1-vaapi, gstreamer1,
gstreamer1-editing-services, igt-gpu-tools, iperf3, libcurl,
libsha1, libsndfile, libsoup3, libvirt, libxcrypt, libxml2,
libzenoh-pico, linux, linux-pam, netatalk, nettle, octave,
opensc, perl, php, pixman, polkit, procps-ng,
python-autocommand, python-django, python3, quickjs, samba4,
skeleton, subversion, ti-k3-r5-loader, tzdata, v4l2loopback,
wayland, webkitgtk, weston, wget, wireshark, wpewebkit,
xr819-xradio, xxhash, zfs, zic
Issues resolved:
- bluetooth.service cannot connect to D-BUS
https://gitlab.com/buildroot.org/buildroot/-/issues/65
- gdb package doesn't have a licence hash in the gdb.hash file
https://gitlab.com/buildroot.org/buildroot/-/issues/66
- package/libsha1: Build failure with GCC 14 [-Wimplicit-int]
https://gitlab.com/buildroot.org/buildroot/-/issues/69
2024.11, released December 8th, 2024
Various fixes.
Updated/fixed packages: eza, foot, gnutls, ibm-sw-tpm2,
mosquitto, pixman
Issues resolved:
- procps-ng: builderror in 2024.08
https://gitlab.com/buildroot.org/buildroot/-/issues/38
2024.11-rc3, released Decemmber 5th, 2024
Fixes all over the tree.
Updated/fixed packages: alsa-lib, android-tools, bats-core,
doxygen, frr, gnutls, libvpl, linux-tools, lmbench, lrzsz,
musl, nfs-utils, opkg, polkit, postgresql, procps-ng,
python-psycopg2, quagga, rt-tests, rust, sexpect
2024.11-rc2, released November 23rd, 2024
Fixes all over the tree.
Updated/fixed packages: bmap-tools, go, intel-microcode,
libblockdev, libcurl, libkrb5, libnvme, libpng, php,
postgresql, python-sip, skopeo, tiff, util-linux-libs
2024.11-rc1, released November 13th, 2024
Fixes all over the tree and package updates.
Toolchain:
- binutils 2.43 added, binutils 2.42 becomes the default.
- glibc updated to 2.40
- ARM, Bootlin and Synopsys external toolchains updated
- Support added for ARM FDPIC, which allows to use shared
libraries on ARM noMMU targets
Go support: allow using a pre-built Go compiler, using the new
go-bin package.
New defconfigs: friendlyarm_nanopi_neo, nvidia_bf3,
stm32f746_disco_sd, ti_am62px_sk, versal_vek280
Removed defconfigs: qemu_nios2_10m50
New packages: andes-spi-burn, bfscripts, cpp-httplib, dlib,
dpdk, evilwm, go-bin, iana-assignments, iotools, lua-uuid,
oath-toolkit, perl-mime-base32, python-aiohappyeyeballs,
python-aiomqtt, python-argcomplete, python-dotenv,
python-dunamai, python-immutabledict, python-iterable-io,
python-path, python-poetry-dynamic-versioning,
python-propcache, python-proto-plus, python-psygnal,
python-pyaml, python-pydantic-settings, python-pyqt5-sip,
python-pysnmpcrypto, python-rgbmatrix, python-sdbus,
python-sdbus-networkmanager, python-simple-websocket,
python-tinyhtml5, python-zipstream-ng, qt6charts, qt6scxml,
superiotool, tailscale, tinyinit, uefisettings
Removed packages: bsdiff, popperjs
Added tests: erofs filesystem, audit, dosfstools, dtc,
exfatprogs, go-bin, iputils, oath-toolkit, parted, pppd, pv,
pyqt5, python-sdbus, python-sdbus-networkmanager, rrdtool,
unbound, which
Issues resolved:
- host rpath fixups misses needed directory
https://gitlab.com/buildroot.org/buildroot/-/issues/39
- procps-ng: build failure when linking to systemd
https://gitlab.com/buildroot.org/buildroot/-/issues/28
- ripgrep leaves /usr/crates2.json / .crates.toml files
https://gitlab.com/buildroot.org/buildroot/-/issues/17
2024.08.3, released December 8th, 2024
Important / security related fixes.
Defconfigs: fix mender_x86_64_efi_defconfig build on setups
where /bin/sh is not bash.
Updated/fixed packages: alsa-lib, android-tools, bats-core,
bluez-alsa, bmap-tools, boost, checksec, ebtables, expat, fbv,
ffmpeg, foot, frr, gnuplot, gnutls, intel-microcode, irssi,
libcurl, libgit2, libkrb5, libmodbus, libpng, libvpl,
linux-pam, linux-tools, lmbench, mbedtls, mosquitto, musl,
musl-compat-headers, nfs-utils, ntp, php, picotool,
postgresql, procps-ng, python-psycopg2, python-sip, qt6base,
quagga, rt-tests, sexpect, sshguard, systemd, tiff, x11vnc
Issues resolved:
- procps-ng: builderror in 2024.08
https://gitlab.com/buildroot.org/buildroot/-/issues/38
- fbv package download link is broken in long term support branch
https://gitlab.com/buildroot.org/buildroot/-/issues/73
2024.08.2, released November 14th, 2024
Important / security related fixes.
Updated/fixed packages: apache, asterisk, bind, cmake, criu,
file, fluidsynth, ghostscript, heimdal, intel-microcode,
iproute2, jailhouse, jsoncpp, libarchive, libcurl, libldns,
libgit2, liblinear, libmdbx, libopenh264, libpng,
libtraceevent, libxml2, ltrace, nethogs, nghttp2, ntp,
openjdk, php, postgresql,procps-ng, python-pyqt5, python3,
qemu, ruby, sqlite, sysvinit, tor, trace-cmd, wpebackend-fdo
New packages: python-pyqt5-sip
2024.08.1, released October 20th, 2024
Important / security related fixes.
Per-package-directories fixes for the .gdbinit file and RPATH
fixups for SDK.
Legal-info: Ensure host-tar and redist directory exists when
using override-srcdir, as otherwise the tarball generation
(silently) fails.
utils/check-package: Also check for correct indentation of
help lines.
A large number of typo fixes.
Defconfigs: imx6slevk: Bump Linux kernel to 6.6.51 to fix
build issue with GCC 13
Updated/fixed packages: asterisk, aubio, bind, busybox, cairo,
cryptsetup, cups, expat, ffmpeg, genpart, glibc, gnutls, go,
grub2, libarchive, libcurl, libilbc, libpcap, lighttpd, linux,
linux-pam, mosquitto, mtd, nginx, php, procps-ng, pure-ftpd,
python-django, python3, qt6core5compat, qt6svg, qt6tools,
rp-pppoe, samba4, sysklogd, wireplumber, wpewebkit, xenomai
Issues resolved:
- procps-ng: build failure when linking to systemd
https://gitlab.com/buildroot.org/buildroot/-/issues/28
- orange pi 2w does not boot
https://gitlab.com/buildroot.org/buildroot/-/issues/36
- glibc configure fails on aarch64 with mathvec SVE ACLE error
https://gitlab.com/buildroot.org/buildroot/-/issues/40
- Kernel Build from Custom Git Repo fails with hash-error
https://gitlab.com/buildroot.org/buildroot/-/issues/46
- package/linux-pam: Remove unneeded flex dependency
https://gitlab.com/buildroot.org/buildroot/-/issues/47
2024.08, released September 6th, 2024
Various fixes.
Fixed defconfigs: imx8mqevk: Bump TF-A, U-Boot and Linux to
fix build with gcc 13.x
Removed defconfigs: pandaboard
Updated/fixed packages: aer-inject, arm-trusted-firmware,
armadillo, babeld, cache-calibrator, clamav, fbdump, gerbera,
libgtk4, libopenssl, mender, p910nd, tllist, wpa_supplicant
Removed packages: midori
2024.08-rc3, released September 1st, 2024
Fixes all over the tree.
Removed defconfigs: mx25pdk
Updated/fixed packages: chicken, comix-cursors, dovecot,
dovecot-pigeonhole, elf2flt, enscript, fbset, freeipmi, gcc,
grub2, libcuefile, libcurl, libglob, libuecc, norm, php,
postgresql, proftpd, python-sqlparse, python3, sofia-sip,
szip, unbound, x264, xserver_xorg-server, zabbix
Removed packages: frotz
2024.08-rc2, released August 22nd, 2024
Fixes all over the tree.
Infrastructure: use "-ztext" rather than "-z text" in LDFLAGS
to work around buggy build systems
Defconfigs: Beaglev fire / Microchip mpfs icicle: Correct
Linux/U-Boot tarballs, Raspberryi 5: Correct CPU setting,
Zynqmp zcu106: use v1.0 DDR config, Zynqmp zcu10* / kria*:
Correct U-Boot dependency
Updated/fixed packages: aer-inject, asterisk, atop, aumix,
avahi, botan, chicken, dc3dd, ffmpeg, flashrom, gnuradio,
gnu-efi, gnutls, hiawatha, iperf3, iproute2, ledmon, libffi,
libgpg-error, libkcapi, libpcap, mariadb, mdadm, ncurses,
nginx, ntpsec, python-huepy, python-tpm2-pytss,
python-unittest-xml-reporting, qt6base, qt6tools, skopeo,
strongswan, systemd, uboot, uclibc, unbound, vboot-utils,
wpa_supplicant, wpebackend-fdo
Removed packages: fan-ctrl
2024.08-rc1, released August 8th, 2024
Fixes all over the tree (especially related to GCC 14.x
compatibility) and package updates.
Toolchains:
- uClibc updated to 1.0.49
- GDB 15.x added, GDB 14.x now the default
- GCC 14.x updated to GCC 14.2.0
- Support for Linux 6.9/6.10 headers added
Infrastructure:
- Patches on packages are now applied with -F0, which means no
fuzz is accepted anymore.
- Improvements to the canonical example of SysV init script
New defconfigs: arm_fvp_ebbr, beagleplay, beaglev_fire,
cubieboard1, imx6ulz_bsh_smm_m2_defconfig, raspberrypi5,
spike_riscv32. ti_am62ax_sk, versal_vpk180
Removed defconfigs: beagleboardx15, beaglev, imx8mpico
New packages: blake3, chicken, cloudfared, docker-cli-buildx,
espflash, fd, freescale-imx/firmware-upower, fwupd, fwupd-efi,
gtkiostream, graphene, kmon, libavif, libdex, libgtk4,
libjcat, libopenmpt, libtpms, mxt-app, nethogs, openconnect,
parsec-tool, pico-sdk, picotool, python-aerich,
python-autocommand, python-betterproto, python-configobj,
python-grpclib, python-inflect, python-jaraco-collections,
python-jaraco-context, python-jaraco-text, python-pyasynchat,
python-pyasyncore, python-dictdiffer, python-pkgconfig,
python-pypika-tortoise, python-ruamel-yaml-clib,
python-tomlkit, python-tomli-w, python-tpm2-pytss,
python-tortoise-orm, python-uswid, qt6declarative,
qt6languageserver, qt6mqtt, qt6opcua, qt6shadertools,
qt6tools, qt6virtualkeyboard, qt6wayland, qt6websockets,
skopeo, sqlitecpp, swipl, swtpm, tig, tipidee, tpm2-openssl,
xilinx-prebuilt, zoxide
Removed packages: beaglev-ddrinit, beaglev-secondboot,
beecrypt, cgic, dvb-apps, gamin
New runtime tests: 4th, attr, atftp, bcc, btrfs, btrfsprogs,
dmidecode, go, gpsd, iproute2, kmod, lame, make, mariadb,
mawk, mosquitto, nmap, ntp, python-asn1crypto, python-pymupdf,
python-ruamel-yaml, rt-tests, swipl, vorbis-tools, xfsprogs
Issues resolved:
- Are there plans to add raspberrypizero2w_64_defconfig config?
https://gitlab.com/buildroot.org/buildroot/-/issues/1
- Some folders can't visit and some file is missing while running
https://gitlab.com/buildroot.org/buildroot/-/issues/2
- wpewebkit build fails on ARM Neon
https://gitlab.com/buildroot.org/buildroot/-/issues/3
- TAR-1.35 will not build for target (host-variant will build)
https://gitlab.com/buildroot.org/buildroot/-/issues/4
- package/xz without shared libraries breaks Python build
https://gitlab.com/buildroot.org/buildroot/-/issues/5
- unable to build - 404 at sources.buildroot.net
https://gitlab.com/buildroot.org/buildroot/-/issues/10
- OpenSSH 9.8 broken
https://gitlab.com/buildroot.org/buildroot/-/issues/11
- Update Openssh to Version 9.8p1 (CVE-2024-6387) in Long Term
Support Release 2024.02.x
https://gitlab.com/buildroot.org/buildroot/-/issues/14
- Toolchain (host-gcc-final-14.1.0) build failure with
y2038/BR2_TIME_BITS_64 enabled
https://gitlab.com/buildroot.org/buildroot/-/issues/16
- building go/golang gives error
https://gitlab.com/buildroot.org/buildroot/-/issues/18
- GCC 13.3 is missing
https://gitlab.com/buildroot.org/buildroot/-/issues/20
- package containerd update to avoid hanging docker exec
commands
https://gitlab.com/buildroot.org/buildroot/-/issues/21
- "BR2_EXTERNAL broken missing srctree error Config.in"
https://gitlab.com/buildroot.org/buildroot/-/issues/24
- Can't subscribe buildroot mailing list
https://gitlab.com/buildroot.org/buildroot/-/issues/25
2024.05.3, released September 9th, 2024
Important / security related fixes.
A large number of GCC 14.x compilation fixes and additional
runtime tests.
Infrastructure:
- Be more robust against text files (for package hashes and
users) incorrectly missing a terminating newline.
- Fix various issues with the pkg-kconfig infrastructure and
per-package-directories builds
(BR2_PER_PACKAGE_DIRECTORIES).
Updated/fixed packages: aer-inject, am335x-pru-package,
apache, apr, apr-util, attr, augeas, autossh, bandwidthd,
bcusdk, boost, brcm-patchram-plus, btrfs-progs, busybox,
can-utils, coreutils, cpuload, cryptsetup, cwiid, dhrystone,
dvb-apps, elfutils, faifa, fetchmail, ffmpeg, fluent-bit,
fluidsynth, freerdp, gcc, gcc-bare-metal, gdb, gnutls, gpsd,
hiawatha, hostapd, htop, ibm-sw-tpm2, intel-microcode, iperf3,
iproute2, ksmbd-tools, libcli, libcoap, libcurl, libest,
libfreefare, libgtk3, libngs, libpwquality, libressl, libupnp,
libxml2, libxslt, lrzsz, mdio-tools, micropython,
mjpg-streamer, mokutil, mpir, ncftp, nginx, nodejs, odb,
open-iscsi, openldap, openswan, openvpn, pistache, procps-ng,
python-django, quotatool, rtty, ruby, sconeserver, speex,
swaybg, tar, tftpd, tinyssh, uclibc, uclibc-ng-test, unbound,
uuu, vorbus-tools, wpewebkit, zfs, zsh
Issues resolved:
- TAR-1.35 will not build for target (host-variant will build)
https://gitlab.com/buildroot.org/buildroot/-/issues/4
- Toolchain (host-gcc-final-14.1.0) build failure with
y2038/BR2_TIME_BITS_64 enabled
https://gitlab.com/buildroot.org/buildroot/-/issues/16
2024.05.2, released August 14th, 2024
Important / security related fixes.
Various minor improvements to utils/check-package
Defconfigs: Add download hashes for chromebook-elm,
chromebook-snow and stm32mp157a_dk1
Updated/fixed packages: android-tools, bcc, bitcoin, boost,
btrfs-progs, c-ares, cdrkit, check, containerd, directfb,
dump1090, ed, exim, fail2ban, frotz, fwts, gcc, gdb, go, gpm,
kexec, libarchive, libgeos, libressl, llvm, mupdf, ncftp,
nodejs, ntpsec, octave, openssh, pppd, python-mupdf,
python-ruamel-yaml, qt5webkit, rawk-hawkbit-updater,
rtl8188eu, snappy, squid, sunxi-tools, syslinux, systemd,
tcf-agent, tftpd, ubus, util-linux, uvw, webkitgtk, wolfssl,
wpewebkit, x265, xlib_libxshmfence, xvisor
Issues resolved (http://bugs.uclibc.org):
#15231: gcc --help -v doesn't work correctly with gcc>=10 and..
2024.05.1, released July 13th, 2024
Important / security related fixes.
Infrastructure: Ensure support/scripts/apply-patches can be
used outside Buildroot (regression in 2024.05).
Defconfig: Pine64 rockpro64: Build ethernet driver in kernel
rather than as module. QEMU sh4: Change to initramfs to
workaround regression in QEMU. Visionfive2: Correct kernel
headers version
Updated/fixed packages: apache, avro-c, daq, dav1d,
fluent-bit, ghostscript, glibc, libmad, libopenssl,
linux-firmware, mesa3d, network-manager, ntp, nut, octave,
openssh, openvpn, php, raspberrypi-usbboot, redis, sentry-cli,
tor, uuu, vlc, xmrig, znc
2024.05, released June 12th, 2024
Various fixes.
Infrastructure: Ensure a custom tar program specified with
make TAR=/path/to/custom/tar is used everwhere.
Defconfigs: Fix build issues and runtime warnings for
Beaglebone qt5, Qemu ppc64/le pseries, TI am62x/am64x.
Add hashes for Beaglebone qt5, imx8mn bsh sm s2 / pro,
stm32f429 disco XIP, stm32f769 disco sd.
Updated/fixed packages: bc, collectd, composer, cvs,
docker-compose, flutter-engine, git, liblockfile, libzenoh-c,
lightning, nginx, p11-kit, python-lxml, python3, qt6base,
rrdtool, sofia-sip, syslog-ng, systemd, uclibc, unixodbc
2024.05-rc2, released June 4th, 2024
Fixes all over the tree.
Download:
- Dropped the (noop) --passive-ftp option from default wget
options for compatibility with wget2
- Fixed an issue with the generated archives (for
git/svn/cargo/go) when multiple packages share an archive
(E.G. linux vs linux-headers).
Defconfigs: Fix build issue with binutils 2.41+ for
Acmesystems Aria / Arietta, add download hashes for a number
of defconfigs. Fix FIT external position for i.MX8 boards
Updated/fixed packages: dnsmasq, docker-compose, doom-wad,
ebtables, esp-hosted, file, freeradius-client,
freeradius-server, go, kmod, libmnl, libnetfilter_acct,
libnetfilter_log, linux, luarocks, lynx, makedumpfile,
micropython, mtd, ncftp, newlib-bare-metal, nfacct, ntp,
octave, proftpd, qt5base, systemd, tpm2-tss, uboot-tools,
ulogd, vala, zip
Removed packages: at91bootstrap, at91dataflashboot,
on2-8170-libs, on2-8170-modules
Issues resolved (http://bugs.uclibc.org):
#15973: imx8m bootloader image generation broken since update..
#16093: kmod and gcc-14 build error
2024.05-rc1, released May 30th, 2024
Fixes all over the tree and new features.
Toolchains:
- Binutils 2.24 added, 2.39 dropped, 2.41 is now default
- GCC 14.x added, 11.x dropped, 13.x is now default
- uClibc-ng bumped to 1.0.48
- Musl bumped to 1.2.5, adds riscv32 support
- Glibc bumped to 2.39, libcrypt no longer available (see
libxcrypt package)
- External glibc based toolchains no longer install libcrypt
files (except for libcrypt.so.1) to not conflict with the
libxcrypt package
- Bootlin external toolchains updated to 2024.02
- Support for external toolchains using GCC version 14
- Old external Codesourcery ARM/AARCH64 toolchains removed
- Old external Codesourcery niosII toolchain removed
- Old external Codescape mips toolchains removed
- Support for Linux 6.7 / 6.8 kernel headers added
Architecture:
- Support for riscv32 noMMU added
- Internal toolchains for SPARC (re-)added
- Support for the Motorola m68k specific shared library
support for the FLAT binary format dropped, as support has
been removed from the Linux kernel as of v5.19.
Download (notice, Buildroot generated tarballs have changed):
- Tar 1.35 is now required (will be automatically built if not
available on the host). Notice that tar 1.35 changes the way
devmajor/minor is stored, so tarballs created with 1.35 are
not binary identical to <1.35
- The tarball creation logic has now been extended to
correctly handle when ACLs are set on the download
directory.
- An issue with conflicting git tags between (different
versions of) a package has been fixes
- Git attributes are now handled correctly
Security:
- The /dev/shm entry in the default /etc/fstab used for
busybox and sysv init systems was missing the sticky bit,
allowing users to delete and replace other users files.
Infrastructure:
- kconfig/menuconfig can now be built with GCC 14.x
- Git is now used to to fetch CVE data from the FKIE
repository to work around an issue with missing meta files
in the releases.
- utils/check-package now also checks if defconfigs use
BR2_DOWNLOAD_FORCE_CHECK_HASHES to ensure custom
bootloader/kernels are correctly downloaded.
New defconfigs: Beagleboneai64, Orangepi Zero2w, Pine64 star64
New packages: basu, bats-assert, bats-file, bats-support, bcc,
bpftrace, export-subst, flutter-adaptive-scaffold-example,
flutter-animations-example, flutter-dynamic-layouts-example,
flutter-go-router-example, flutter-image-example,