-
Notifications
You must be signed in to change notification settings - Fork 6
/
CHANGES
13045 lines (10121 loc) · 512 KB
/
CHANGES
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
2023.02.9, released January 15th, 2024
Important / security related fixes.
Infrastructure:
- Download: Revert a permission fixup step in the tarball
creation logic, which lead to a hash mismatch issue in two
cargo-vendored packages, ripgrep and sentry-cli.
- Build: Pass GIT_DIR=. in the environment (through
HOST_MAKE_ENV/TARGET_MAKE_ENV) to the build steps to
workaround packages trying to detect if they are building in
a git checkout and getting confused when building in a sub
directory of a Buildroot git checkout.
Updated/fixed packages: apcupsd, arm-trusted-firmware, botan,
cjson, cups, dropbear, duktape, edk2, exim, faad2, freeswitch,
gcc, gdal, gdb, giflib, glibc, go, google-breakpad, gst-omx,
gstd, 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, ipcalc, jq, json-for-modern-cpp,
ksmbd-tools, libaio, libcamera, libcap-ng, libcurl, libebml,
libgtk3, libiec61850, libraw, libsigsegv, libssh, libssh2,
libuev, libwebsockets, liquid-dsp, lvm2, madplay, mesa3d,
micropython, mp4v2, opensc, openssh, orc, php, pipewire,
postgis, postgresql, proftpd, putty, python-sip,
python-werkzeug, rng-tools, shim, squid, strongswan, sway,
tinyssh, tor, tree, uftp, valijson, wireshark, wolfssl,
xserver_xorg-server, xwayland
2023.02.8, released December 4th, 2023
Important / security related fixes.
Defconfigs: Raspberrypi: Fix DT overlay for autoproving of
bluetooth driver, Toradex apalis i.mx6: Add download hashes
for Linux and U-Boot.
Updated/fixed packages: exfatprogs, gcc, imagemagick,
intel-microcode, libpjsip, libxml2, mariadb, memcached,
motion, netsnmp, perl, postgresql, rtty, samba4, speech,
squid, vim, vlc, xenomai, xtables-addons, zfs
Issues resolved (http://bugs.uclibc.org):
#15856: Using BR2_CONFIG= on a different file-system...
2023.02.7, released November 14th, 2023
Important / security related fixes.
Per-package builds: Unbreak SDK relocation logic. Only drop
the hard links for the final host / target directory, fixing a
build time / size regression in 2023.02.6.
Packages where a free-form version/site can be specified
(E.G. Linux, U-Boot, ..) can now have the corresponding
tarballs of these custom downloads checked by the download
infrastructure based on .hash files in the global patch
directory. These hashes are optional unless
BR2_DOWNLOAD_FORCE_CHECK_HASHES is enabled.
A utils/add-custom-hashes helper script has been added to
assist in managing such hash files.
Defconfigs: stm32mp157a-dk1, stm32mp157c-dk2: Unbreak TF-A
build, stm32mp157c-odessey: Use a fixed TF-A version for
reproducibility
Updated/fixed packages: apache, arm-trusted-firmware, aufs,
aufs-util, azure-iot-sdk, cjson, cups-filters, clamav, dhcpcd,
freeradius-server, go, htop, ksmbd-tools, kvmtool, libgdiplus,
libopenssl, libosmium, libtommath, libupnp, libzlib, lxc,
mender, minizip-zlib, mpd, mxsldr, nano, nettle,
network-manager, nghttp2, nodejs, opencv4, opencv4-contrib,
openjdk-bin, openvpn, opusfile, paho-mqtt-c,
perl-lwp-protocol-https, php, python-django, python-urllib3,
python-web2py, rabbitmq-c, redis, riscv64-elf-toolchain,
suricata, tar, tiff, tor, traceroute, vim, websocketpp,
wireshark, wolfssl, xdg-dbus-proxy, xen, xlib_libX11,
xlib_libXpm, zabbix, zchunk
Issues resolved (http://bugs.uclibc.org):
#14741: e2fsck is failing during cronjob build where fail...
#15772: lz4 failed to compile with gcc 10.4.0
#15787: atmel_sama5d3_xplained_mmc_defconfig: Missing...
#15790: at91sam9x5ek_dev_defconfig: Missing...
#15820: make linux-menuconfig does not modify correct .config..
#15823: Installing nodejs modules with native extensions ...
#15835: Incompatibility between network-manager and libcurl 8.4
2023.02.6, released October 16th, 2023
Important / security related fixes.
Per-package builds: Do not use hard links for host / target
dirs, fixing issues with package rebuilds or post-build
scripts modifications.
Infrastructure: Explicitly disable shuffle mode for Make >=
4.4 where needed.
Urandom-scripts: Move seedrng init script to S01 for earlier
random number entrophy initialization.
Go: Bump to 1.20.x as 1.19.x is now EOL and affected by
security issues.
Updated/fixed packages: at91bootstrap, bind, cups, efl,
enlightenment, exim, gcc, glibc, gnu-efi, go, go-bootstrap,
gptfdisk, gst-omx, gst1-devtools, gst1-libav,
gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
gst1-plugins-ugly, gst1-python, gst1-rstp-server,
gst1-rtsp-vaapi, gstreamer1, gstreamer1-editing-services,
libcue, libcurl, libfastjson, libhtp, libmodplug, librsvg,
libvpx, libyang, linux-tools, mbedtls, mosquitto, mutt, neon,
netsnmp, nmap, nodejs, olsr, openblas, opkg-utils, php,
powertop, python-mako, python3, rockchip-mali, samba4, sslh,
suricata, tar, unifdef, unrandom-scripts, webkitgtk,
wireless-regdb, wpewebkit
Issues resolved (http://bugs.uclibc.org):
#15628: Missing dependencies in BR2_PACKAGE_PYTHON_MAKO
#15808: connman is not supported on musl
#15814: C++ not supported by bootlin toolchain
2023.02.5, released September 27th, 2023
Important / security related fixes.
Updated/fixed packages: agentpp, asterisk, at91dataflashboot,
aubio, berkeleydb, bind, bwm-ng, chocolate-doom, clamav,
compiler-rt, connman, cups, dav1d, diffutils, dracut, dt,
expect, fail2ban, fio, flite, freerdp, freeswitch, fstrcmp,
gcc, gdb, ghostscript, gmp, go, grub2, haproxy,
heirloom-mailx, hwloc, icu, intel-microcode, irssi, libcoap,
libcurl, libiec61850, libjxl, libks, libksba, libmodsecurity,
libpjsip, libqb, libraw, libssh, libtommath, less, lldpd,
log4cxx, lsof, mdadm, mosquitto, mpd, mutt, mv-ddr-marvell,
ne10, netatalk, network-manager, nftables, nodejs, ntpsec,
nut, openblas, openjdk, openjdk-bin, opensc, openssh,
pcm-tools, perftest, php, pixman, poppler, postgresql, pppd,
python-django, python-ipython, python-pip, python-pylibfdt,
python-tornado, python3, qt5, ramspeed, rtl8189fs, samba4,
screen, screenfetch, sngrep, sofia-sip, stellarium,
strongswan, sysstat, tar, tcl, uboot, uclibc, vim, webkitgtk,
webp, wireshark, xfsprogs, xserver_xorg-server, xterm, yajl,
zbar, zxing-cpp
Issues resolved (http://bugs.uclibc.org):
#14366: Nodejs fails with "version `GLIBC_2.34' not found"..
#15754: The docker-engine and docker-cli versions are not...
#15787: atmel_sama5d3_xplained_mmc_defconfig: Missing...
#15790: at91sam9x5ek_dev_defconfig: Missing...
2023.02.4, released August 31th, 2023
Important / security related fixes.
Toolchains: Correctly mark Bootlin external toolchains as
having OpenMP support.
Arch: Mark Alderlake x86 variants as having no AVX512 support.
Utils: Ensure utils/docker-run correctly supports git
worktrees.
Defconfigs: Beaglebone qt5: Enable support for green wireless
variant.
Updated/fixed packages: arm-trusted-firmware, bind, cairo,
cmocka, containerd, crudini, dmidecode, ffmpeg, freescale-imx,
gcc, gdb, ghostscript, gkrellm, gnuradio, go, heimdall,
iperf3, libcurl, libmodsecurity, libopenssl, libssh,
libubootenv, libuhttpd, linux-tools, ntp, openssh, php,
pipewire, python-iniparse, python-iptables, python-pysmb,
rtl8189fs, sam-ba, samba4, seatd, speex, supertuxkart, sysdig,
tor, tpm2-tss, uboot, unzip, webkitgtk, wireless-regdb,
wolfssl, wpebackend-fdo wpewebkit, xenomai, yaml-cpp, yavta
Issues resolved (http://bugs.uclibc.org):
#15634: fluidsynths refers to missing libgomp.so.1
2023.02.3, released July 17th, 2023
Important / security related fixes.
Defconfigs: Chiliboard: fix build on hosts without openssl
development headers.
Nitrogen*: fix build on hosts without openssl or pylibfdt.
Raspberrypi: Handle DTB overlays for all variants
Updated/fixed packages: agentpp, alsa-plugins, assimp, bind,
busybox, dbus, c-ares, check, dav1d, fluidsynth, fftw, fwts,
ghostscript, gnupg2, gnuradio, gupnp, haproxy, heimdal,
hwdata, jhead, libcap, libgcrypt, libgpg-error, libgtk3,
libxslt, mesa3d-demos, mpir, nodejs, php, pkgconf,
python-cryptography, python-dbus-fast, python-django,
python-pyicu, python-requests, python3, qt6, quickjs,
sconeserver, taglib, tiff, wireshark, xdriver_xf86-video-dummy
Issues resolved (http://bugs.uclibc.org):
#15643: ERROR: No hash found for linux-6.3.8.tar.xz
#15673: PKGCONF_SITE in pkgconf.mk points to parked domain
#15682: pkgconf: no longer able to download source from...
2023.02.2, released June 16th, 2023
Important / security related fixes.
Infrastructure: Add BR2_HOST_CMAKE_AT_LEAST_* for packages
needing a newer host-cmake than what is currently enforced
(3.18) - Up to the version provided by the cmake package (3.22).
utils/docker-run: Now correctly handles git
workdirs/worktrees.
Defconfigs: QEMU s390x: Bump rootfs size to make room for
kernel modules, Stm32f4xx: Tweak config to save RAM, Xilinx
Versal vck190: Use correct (A72) CPU variant
Updated/fixed packages: atkmm, bird, busybox, cairomm1_14,
cmake, containerd, crudini, cups, delve, docker-cli,
docker-engine, earlyoom, edid-decode, fluent-bit, freeswitch,
gcc, gdb, glibmm_2_66, gnupg2, go, gptfdisk, graphicsmagick,
intel-microcode, libass, libcurl, libdeflate, libgeos,
libgtk3, libjxl, libnftl, libopenssl, libressl, libssh, llvm,
lua, mesa3d, micropython, minidlna, moby-buildkit, mpd, mupdf,
ncurses, nftables, openjdk, openjdk-bin, php, postgresql,
python-can, python-django, python-django, python-ipython,
python-matplotlib, python-mupdf, python-requests, python3,
qemu, redis, rpm, runc, sdl2_mixer, tzdata, uclibc, vdr,
wilc-firmware, xapp_xcalc, xapp_xdpyinfo, xapp_xinput,
xapp_xwininfo, xdata_xbitmaps, xdata_xcursor-themes,
xdriver_xf86-input-mouse, xdriver_xf86-video-ark,
xdriver_xf86-video-geode, xdriver_xf86-video-neomagic,
xfont_encodings, xlib_libX11, xlib_libXaw, xlib_libXi,
xlib_libXfixes, xlib_libXft, xlib_libXpm, zfs, znc
New packages: perl-clone, perl-http-message, python-asttokens,
python-executing, python-pure-eval, python-stack-data
Issues resolved (http://bugs.uclibc.org):
#15421: qemu_aarch64_ebbr_defconfig: Missing Linux kernel source code
2023.02.1, released May 9th, 2023
Important / security related fixes.
Infrastucture:
- go: Ensure go versions of os/user and net are used for
static builds so CGO is not used
- rust / cargo: Correctly split up rust flags for host and
target builds
Defconfigs: Olimex a20 olinuxino lime*: Bring up network at
boot, stmf469 disco sd: Lock U-Boot version
Updated/fixed packages: agentpp, apache, bluez5_utils,
ca-certificates, containerd, coremark, dcron, dnsmasq,
docker-cli, docker-engine, efivar, eudev, ffmpeg, flann,
fluidsynth, git, go, 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, intel-microcode,
kexec, libcurl, libite, libgtk3, libmicrohttpd, libxml2,
linux-tools, lua, mali-driver, matio, mdadm, nginx, openocd,
openssh, php, poppler, postgresql, python-web2py, qt6base,
readline, rtl8189fs, rtl8723ds, rtl8812au-aircrack-ng, runc,
rust, rust-bin, s390-tools, samba4, sdl2, snmppp, sudo,
systemd, tcpdump, uclibc, vim, webkitgtk, wireshark,
wpewebkit, xr819-radio, xserver_xorg-server, zeek
Issues resolved (http://bugs.uclibc.org):
#14356: cronstamp jobs are not performed with bumped version of...
#15306: glibc build fails in Docker container
#15376: Libiconv config
#15461: QtVirtualKeyboard segfaults
2023.02, released March 12th, 2023
Fixes all over the tree.
Updated/fixed packages: ace, apache, audit, bridge-utils,
docker-engine, go, gtkmm3, janet, libbpf, libev, libgcrypt,
libgpg-error, libmad, linux, mesa3d, network-manager, nut,
pcre2, php, rdma-core, rsync, rtl8821cu, rtl_433,
s6-linux-utils, speechd, uqmi, xdriver_xf86-video-qxl, znc
New packages: atkmm2_28, cairomm1_14, glibmm2_66, libsigc2,
pangomm2_46, python-glslang
Issues resolved (http://bugs.uclibc.org):
#15306: glibc build fails in Docker container
#15321: docker-engine now requires libseccomp by default
2023.02-rc3, released March 8th, 2023
Fixes all over the tree.
Updated/fixed packages: apr, bash, docker-engine, exfat,
exfat-utils, f2fs-tools, gensio, gr-osmosdr, libcurl, libglfw,
libolm, libpcap, libpjsip, linux, mender, mpv,
multipath-tools, opus, paho-mqtt-c, proftpd, pugixml,
pulseaudio, qemu, quazip, quickjs, rtl8189es, rtl8821cu,
uacme, uqmi, wpebackend-fdo,
2023.02-rc2, released February 27th, 2023
Fixes all over the tree.
Updated/fixed packages: asterisk, at91dataflashboot, bind,
efivar, erlang, flac, fluent-bit, freerdp, gcc, gdal, gerbera,
gnuradio, gqrx, haproxy, hawktracer, imx-gpu-g2d,
intel-gmmlib, libarchive, libblockdev, libcamera-apps, libjxl,
libmodsecurity, libsigrokdecode, lightning, lirc-tools,
lttng-babeltrace, modem-manager, modsecurity2,
multipath-tools, mutt, mxs-bootlets, netsurf, network-manager,
nginx-naxsi, ntpsec, opensbi, optee-client, pcm-tools,
php-xdebug, pistache, postgresql, proxychains-ng,
python-m2crypto, python-numpy, python-webargs,
python-werkzeug, rtl8723bu, rtty, speechd, sudo, systemd,
tiff, tmux, wilc-driver, wpa_supplicant, xerces,
xtables-addons, xwayland, zabbix
Removed packages: uccp420wlan
2023.02-rc1, released February 20th, 2023
Numerous package updates and many (62) new packages.
Toolchain:
- The check for access to "unsafe" (E.G. from the build host)
header files and libraries by the cross compiler is now
unconditionally enabled.
- Bootlin external toolchains updated to 2022.08
- The handling of the CCACHE_* environment variables by the
toolchain wrapper is now more strict, causing the variables
to only be exported when BR2_CCACHE is enabled.
Infrastructure:
- Br2-external: Fix make performance issue when many (> 6)
external trees are used together.
- Legal-info: Stop warning about not saving sources for local
/ override packages if <PKG>_REDISTRIBUTE is set to NO.
- Go: Ensure our go build and module cache is used, even for the
download step.
- Cargo: CARGO_HOME (the location where cargo stores it
downloaded artifacts) is now located under DL_DIR rather
than in HOST_DIR/share/cargo, ensuring it is shared between
builds.
Misc:
- Erofs: Use fixed timestamp and UUID when BR2_REPRODUCIBLE is
used.
- Ext2: Year 2038+ compatible inodes are now used by default,
independently of the filesystem size.
- Linux: Fix build of < 5.6 kernels with host-gcc >= 10.
A large number of NXP related packages and defconfigs have
been updated as upstream moved the git repositories to Github.
New defconfigs: i.MX8mn BSH SMM S2 / pro, QEMU ARM EBBR,
Sipeed Lichee rv / rv dock, Starfive Visionfive2, Xilinx Versal
VCK190.
New packages: catch2, cli11, dotconf, edk2-non-osi,
fluent-bit, fxdiv, hddtemp, highway, imx-vpu-hantro-daemon,
libjxl, libsolv, libunibreak, neon-2-sse, open-iscsi,
opencv4-contrib, perftest, perl-image-exiftool,
python-apispec, python-async-generator, python-cppy,
python-dbus-fast, python-dicttoxml2, python-flask-smorest,
python-h11, python-hkdf, python-magic-wormhole,
python-magic-wormhole-mailbox-server,
python-magic-wormhole-transit-relay, python-marshmallow,
python-munch, python-outcome, python-pycrate, python-pyspnego,
python-reedsolo, python-selenium, python-smbprotocol,
python-sniffio, python-spake2, python-trio,
python-trio-websocket, python-uhid, python-webargs,
python-wsproto, qt5speech, qt6serialbus, rdma-core, reproc,
rtl8723ds-bt, rtl8821cu, sexpect, speechd, sscep, stb, sway,
termcolor, ti-k3-r5-loader, tl-expected, unifdef,
versal-firmware, xwayland, z3
Removed packages: docker-proxy, elixir, gummiboot,
python-bunch, python-m2r, sun20i-d1-spl, ucl,
xdriver_xf86-input-keyboard, xdriver_xf86-video-glint,
xdriver_xf86-video-imx-viv, xdriver_xf86-video-tga
Issues resolved (http://bugs.uclibc.org):
#14971: Kernel 3.10.108 fail to build in Buildroot 2022.08-rc1
#14996: Too many directories in BR2_EXTERNAL causes hang during make
#15161: kernel can't support SUBDIR
#15196: Setting BR2_PACKAGE_RPI_FIRMWARE_CONFIG_FILE does not work
#15226: lsblk: not found
#15271: no start-qemu.sh
#15281: Error compiling GDAL library for RPi-64 if libgdal-dev install..
#15291: BR2_PACKAGE_GNU_EFI_ARCH_SUPPORTS without location
#15301: Selecting NAND Flash boot media (NAND_BOOT) breaks the uboot..
#15331: Warning on python-flit-core license when generating legal info
2022.11.2, released March 1st, 2023
Important / security related fixes.
Fix make O=..._defconfig builds (regression in 2022.11.1).
A number of additional/stricter checks have been added to
./utils/check-package.
Build host dependencies check extended to check for a number
of specific perl modules to better handle distributions (like
Fedora) with very fine grained perl packages. Also ensure
build host has git >= 2.0.0 when using packages written in
go/rust because the vendoring may need it.
Defconfigs: ASUS tinker rk3288: Fix boot issue related to TPL
Updated/fixed packages: afboot-stm32, apache, barebox, c-ares,
elf2flt, freeswitch, fwts, gcc, gdal, git, gitlab-runner,
ipmitool, kodi, libgit2, libks, libopenssl, libressl, live555,
lua, lxc, mariadb, mesa3d-headers, modsecurity2, mongoose,
netopeer2, nodejs, openjdk, openpowerlink, openvpn, opusfile,
postgresql, proftpd, pugixml, python-future, python-idna, qt5,
rtl8192eu, rtl8723ds, sdl2, sofia-sip, ssdp-responder, sudo,
sunxi-mali-utgard, thermald, ti-sgx-km, tmux, uboot, upx, vim,
webkitgtk, wolfssl, wpewebkit, xlib_libXpm,
xserver_xorg-server, xxhash, xz, yajl, zabbix
Issues resolved (http://bugs.uclibc.org):
#15271: no start-qemu.sh
#15281: Error compiling GDAL library for RPi-64 if libgdal-dev install..
#15291: BR2_PACKAGE_GNU_EFI_ARCH_SUPPORTS without location
#15301: Selecting NAND Flash boot media (NAND_BOOT) breaks the uboot..
#15331: Warning on python-flit-core license when generating legal info
2022.11.1, released January 18th, 2023
Important / security related fixes.
Br2-external: Fix make performance issue when many (> 6)
external trees are used together.
Erofs: Use fixed timestamp and UUID when BR2_REPRODUCIBLE is
used.
Go: Ensure our go build and module cache is used, even for the
download step.
Legal-info: Stop warning about not saving sources for local /
override packages if <PKG>_REDISTRIBUTE is set to NO.
Linux: Fix build of < 5.6 kernels with host-gcc >= 10.
A large number of NXP related packages and defconfigs have
been updated as upstream moved the git repositories to Github.
Defconfigs: zcu106, kria kv260: Fix U-Boot build
Updated/fixed packages: asterisk, bearssl, botan, cairo,
capnproto, check, checkpolicy, connman, containerd, crun,
dbus-cxx, docker-cli, docker-engine, exempi, exfat,
exfat-utils, falcosecurity-libs, fluidsynth, fmc, fmlib,
freeradius-server, gcc, glib-networking, go,
gobject-introspection, gperf, i2pd, ima-evm-utils,
imx-alsa-plugins, imx-kobs, imx-lib, imx-m4fwloader,
imx-mkimage, intel-microcode, janus-gateway, libcurl,
libdeflate, libftdi1, libkcapi, libksba, libmbim, libmng,
libpjsip, libtalloc, libuwsc, libxkbcommon, lpeg, lrzsz,
lttng-tools, lua-cqueues, mali-driver, mbedtls, mfgtools,
moby-buildkit, mutt, opensc, php, policycoreutils, polkit,
postgresql, pptp-linux, qcom-db410c-firmware, qemu, qoriq-rcw,
qt5virtualkeyboard, redis, rhash, rtl8189es, rtl8192eu,
rtl_433, ruby, sqlite, swupdate, tealdeer, tekui, tiff,
tinyxml, tor, webkitgtk, wireshark, wpasupplicant, wpewebkit,
xr819-xradio, xdriver_xf86-video-imx-viv, xserver_xorg-server,
xxhash, zip
Issues resolved (http://bugs.uclibc.org):
#14971: Kernel 3.10.108 fail to build in Buildroot 2022.08-rc1
#14996: Too many directories in BR2_EXTERNAL causes hang during make
#15161: kernel can't support SUBDIR
#15196: Setting BR2_PACKAGE_RPI_FIRMWARE_CONFIG_FILE does not work
#15226: lsblk: not found
2022.11, released December 5th, 2022
Fixes all over the tree.
Defconfigs: Nitrogen8*: Bump rootfs size, Zynqmp
kv260/zcu102/zcu106: Update to Xilinx 2022.2,
Updated/fixed packages: dash, dovecot, elf2flt, exim, gcc,
gdb, git, kodi, libarchive, libmdbx, linuxptp, lxc,
matchbox-keyboard, memcached, netsnmp, optee-client,
python-scipy, python3, qt6base, qt6serialport, rtl8188eu,
rtl8723bu, rtl8723ds, rtl8821au, vim, vlc, wilc-driver
Removed packages: rabbitmq-server
Issues resolved (http://bugs.uclibc.org):
#15131: Target GDB uses internal zlib
#15151: Busybox /etc/init.d scripts are not executable
2022.11-rc3, released November 24th, 2022
Fixes all over the tree.
Updated/fixed packages: asterisk, edk2, edk2-platforms,
freerdp, gitlab-runner, gnupg2, gptfdisk, heimdal,
igh-ethercat, iwd, libkrb5, libksba, libnss, libopenssl,
mesa3d, nginx, nodejs, openpgm, python3, rsync, rtl8189es,
rtl8723ds, samba4, sdl, sdl2, swupdate, sysstat, systemd,
uboot, xen, xterm
Issues resolved (http://bugs.uclibc.org):
#15141: kernel 5.16.2 (realtime patch 19) fails to build
2022.11-rc2, released November 16th, 2022
Fixes all over the tree.
Removed defconfigs: Amarule a64 relic, ARM Juno, Bananapi M1 /
M1 plus / M2 plus / M64, FriendlyARM NanoPC T4 / A64 / M1 / M1
plus / M4 / Neo2 / Neo4 / Neo plus2 / R1 / Orangepi PC2 / Plus
/ Prime / rk3399 / Win, Rock PC rk3399 / PI4 / N10.
Updated/fixed packages: alsa-utils, arm-trusted-firmware,
bdwgc, boost, botan, ca-certificates, crun, dbus-broker,
docopt-cpp, dracut, efivar, freeipmi, gawk, gensio, gptfdisk,
gsl, guile, imagemagick, ipmitool, libidn2, libkcapi,
libopenssl, libqb, libuhttpd, libvncserver, linux,
linux-tools, lxc, makedumpfile, matchbox-startup-monitor,
mdio-tools, multipath-tools, mupdf, ntfs-3g, numactl,
perl-net-ssleay, pixman, procps-ng, rpi-userland, rsync,
s6-linux-init, socat, strongswan, sudo, swupdate, systemd,
udisks, vlc, wavemon, wolfssl, zlib-ng
Removed packages: libdcadec
Issues resolved (http://bugs.uclibc.org):
#15121: make nconfig failes with nvidia drivers and mesa3d selected
2022.11-rc1, released November 3rd, 2022
Fixes all over the tree and new features.
Architecture:
- PowerPC: add Power9 CPU type
- ARM: support dropped for iWMMXt processors
Toolchain:
- binutils 2.39 added, binutils 2.38 is now the default
- gdb 12 added, gdb 11 is now the default
- support for 5.18, 5.19 and 6.0 kernel headers
- glibc updated to 2.36
Filesystem:
- Ability to use dracut to create an initramfs that contains a
subset of the root filesystem contents.
New packages: agent-proxy, catatonit, cni-plugins, crun,
docopt-cpp, dracut, forge, kmemd, libmanette, mdio-tools,
open-isns, python-editables, python-hatch-fancy-pypi-readme,
python-hatch-vcs, python-hatchling, python-libevdev,
python-minimalmodbus, python-pathspec, qt6-serialport,
rtl8192eu, signal-estimator, slirp4netns, tinycompress
More than 400 packages have been updated to a newer version.
New defconfigs: ls1028ardb, qemu_aarch64_ebbr, visionfive.
Issues resolved:
#11776: qt5webengine 5.12.2 build failed with arm toolchain
and linaro toolchain
#12131: qt5webengine builderror in the latest stable Buildroot
2019.05.01 version
#13216: 2020.02.6 requires GNU find utils
#14601: Python build fails on 2022.02-rc2
#14746: Lack of management after loading
#14796: 64 bit time and seccomp conflict (OpenSSH server crash)
#14921: wpewebkit build fails because of internal build order
#14936: nodejs does not build
#15006: toolchain Arm AArch64 toolchain 11.2-2022.02
#15021: Buildroot not compiling with systemd and glibc.
#15026: package/udisks: install to staging
#15061: Node.js Package fails to build against musl i386
#15071: RTL8723BS library is outdated
2022.08.3, released December 10th, 2022
Important / security related fixes.
Updated/fixed packages: asterisk, dash, dovecot, edk2,
edk2-platforms, elf2flt, exim, freerdp, gcc, gdb, git, gnupg2,
heimdal, iwd, kodi, libarchive, libkrb5, libksba, libmdbx,
libopenssl, matchbox-keyboard, memcached, netsnmp, nginx,
nodejs, openpgm, optee-client, python-scipy, python3, rsync,
rtl8723bu, samba4, sdl, sdl2, swupdate, sysstat, systemd,
uboot, vim, vlc, wilc-driver, xen, xterm
Issues resolved (http://bugs.uclibc.org):
15131: Target GDB uses internal zlib
2022.08.2, released November 16th, 2022
Important / security related fixes.
Defconfig: Aspeed ast2600evb: Correct FPU config, Kontron bl
imx8mm: Bump U-Boot to fix build issue, Pine64: Change to
mainline ATF to fix build issue, Zynqmp zcu102 / zcu106 / kria
kv260: Fix pmufw reset issue
Updated/fixed packages: arm-trusted-firmware, bind, botan,
ca-certificates, collectd, darkhttpd, dbus, dbus-broker, dhcp,
dnsmasq, docker-cli, docker-engine, exfatprogs, expat,
f2fs-tools, faad2, ffmpeg, freerdp, gitlab-runner, glibc,
gnutls, go, gpsd, gptfdisk, grub2, gsl, 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, hdparm, hostapd, imagemagick,
iwd, jack2, libbpf, libcurl, libidn2, libinput, libmdbx,
libopenssl, libosip2, libpng, libtasn1, libtorrent-rasterbar,
libuhttpd, libvncserver, libxml2, linux, linux-tools, lldpd,
lrzip, lz4, matchbox-startup-monitor, meson, msmtp,
multipath-tools, mupdf, musl, mv-ddr-marvell, mxml, nodejs,
ntfs-3g, numactl, openssh, openvmtools, oracle-mysql,
paho-mqtt-c, perl-net-ssleay, php, pixman, poppler, procps-ng,
python-django, python3, qdecoder, redis, rpi-userland, rsync,
rtl8189es, rtl8189fs, rtl8723bu, rtl8723ds,
rtl8812au-aircrack-ng, rtl8821au, rtl_433, samba4, shapelib,
socat, sqlite, squashfs, squid, strongswan, sudo, swupdate,
timescaledb, uclibc-ng-test, udisks, uftp, uhd, umtprd,
usbguard, vim, vlc, volk, wavemon, wilc-driver,
wireguard-linux-compat, wolfssl, wpa_supplicant, wpewebkit,
zlib-ng, zsh
Issues resolved (http://bugs.uclibc.org):
#14936: nodejs does not build
#15026: package/udisks: install to staging
#15061: Node.js Package fails to build against musl i386
2022.08.1, released October 2nd, 2022
Important / security related fixes.
Updated/fixed packages: botan, busybox, docker-cli,
docker-engine, expat, git, haproxy, heirloom-mailx, icu,
imx-gpu-viv, libconfuse, libmdbx, libupnp, libxml2,
ltp-testsuite, m4, makedevs, mariadb, mesa3d, meson,
mosquitto, ncurses, openssh, pango, python3, qlibc,
qt5xmlpatterns, rtl8189es, rtl8723bu, rt8723ds,
rtl8812au-aircrack-ng, runc, sox, tinyproxy, uacme, unbound,
unzip, vim, xtables-addons
Issues resolved (http://bugs.uclibc.org):
#14796: 64 bit time and seccomp conflict (OpenSSH server crash)
#14921: wpewebkit build fails because of internal build order
2022.08, released September 10th, 2022
Fixes all over the tree.
Autotools: Drop --runstatedir=/run as it causes build issues
with older packages
Defconfigs: rockpro64: Change to mainline ATF to fix build issue
Updated/fixed packages: dhcpd, fwup, gcc, gdb, go, linux-tools,
minidlna, mosquitto, mv-ddr-mervell, networkd-dispatcher,
optee-os, polkit, python-pillow, python3, sconeserver, uuu,
wolfssl
2022.08-rc2, released September 1st, 2022
Fixes all over the tree.
dependencies: Ensure 'find' and 'xargs' are available on the
build host.
A large number of typo fixes.
Defconfigs: bananapi m1, olimex a20/a33/lime: Use standard FPU
configuration, pine64_sopine: Use mainline ATF to fix build
Updated/fixed packages: ace, alsa-utils, busybox, cups,
dbus-broker, directfb, domoticz, drbd-utils, edk2,
edk2-platforms, ffmpeg, freeradius-server, freeswitch, gauche,
gcc, gdb, glibc, gnutls, gst1-plugins-bad, gst1-plugins-good,
hawktracer, igd-ethercat, imagemagick, intel-mediadriver,
jack2, jose, jpeg, jquery-ui-themes, kodi, libcamera, libdill,
libgit2, libglvnd, libgpg-error, libgpgme, libinput, libp11,
libsepol, libtirpc, libvirtd, libvncserver, libwpe, libzlib,
linux, linux-tools-perf, llvm, lshw, makedumpfile,
mali-driver, memcached, minetest, mutt, ne10, netsniff-ng,
ntpsec, ocrad, ola, opencv4, openocd, opensc, optee-os,
pcsc-lite, postgresql, protobuf, pulseaudio, python-autobahn,
python-paho-mqtt, python-protobuf, python-pygame, python3, qemu,
qoriq-cadence-dp-firmware, qt5doc, qt6base, ranger, rng-tools,
rsync, rustc, sconeserver, sdl2, snort, sqlite, squid,
stress-ng, strongswan, sunxi-mali-utgard-driver, sysdig,
sysklogd, syslinux, syslog-ng, tcf-agent, tcpreplay,
tesseract-ocr, uacme, uboot-tools, uclibc, udpcast, usbguard,
v4l2loopback, vim, webkitgtk, wolftpm, wpewebkit, xenomai,
xserver_xorg-server, zeek, zerofree
2022.08-rc1, released August 12th, 2022
Fixes all over the tree and new features.
Architecture
- Support for NDS32 removed
- Support for C-SKY removed
- Support for configurable page size on ARM64 added
- Architecture menu re-organized: the MMU selection now
appears in this architecture menu.
Toolchain:
- GCC 12.x support added, GCC 11.x is now the default
compiler, and support for building a GCC 9.x toolchain has
been removed.
- glibc bumped to 2.35-134-gb6aade18a7e5719c942aa2da6cf3157aca993fa4
- uclibc bumped to 1.0.42
- BR2_GCC_ENABLE_LTO option removed, the toolchain is now
always built with LTO support. The new option BR2_ENABLE_LTO
enables the use of LTO in a subset of packages that have
explicit handling for LTO.
- GDB enabled on OpenRISC.
- Toolchain menu now appears before "Build options". The
selection of the C library now determines whether static
library (BR2_STATIC_LIBS) will be available or not, instead
of the other way around.
Filesystem:
- genimage.cfg files now use shortcuts from genimage for the
GUID of well-known GPT partitions.
Bootloaders:
- U-Boot can now be built with host-gnutls as a dependency,
needed for some configurations
- OP-TEE can now be built with host-python-pillow as a
dependency, needed for some configurations.
- OP-TEE source can now be retrieved from a custom tarball
URL.
- Grub has been bumped to 2.06.
Over 390 packages updated.
New defconfigs: aspeed_ast2500evb, aspeed_ast2600evb,
broadcom_northstar, canaan_kd233, qemu_riscv64_nommu_virt,
sipeed_maix_bit, sipeed_maix_bit_sdcard, sipeed_maix_dock,
sipeed_maix_dock_sdcard, sipeed_maix_go,
sipeed_maix_go_sdcard, sipeed_maixduino,
sipeed_maixduino_sdcard
Removed defconfigs: andes_ae300, csky_gx6605s,
friendlyarm_nanopi_neo, minnowboard_max-graphical
New packages: clpeak, compiler-rt, crucible, dbus-broker, dht,
double-conversion, dust, freeradius-server, gdal, hawktracer,
hyperfine, libb2, libdeflate, libdill, mbw, mender-connect,
minizip-zlib, nerdctl, ntpsec, opencl-hpp, opensc,
python-alembic, python-appdirs, python-beniget,
python-construct, python-dtschema, python-gast, python-kflash,
python-lark, python-maturin, python-mypy-extensions,
python-pylibfdt, python-pythran, python-pyrsistent,
python-qrcode, python-rfc3987, python-rtoml,
python-ruamel-yaml, python-scipy, python-typeguard,
python-typing-inspect, python-zlmdb, qt6base, rtl8723ds,
spirv-llvm-translator, tealdeer, uuu, vis-network, volk,
wolftpm, zeek, zerofree
Removed packages: rtl8723bs
Issues resolved:
#14556: python-crossbar fails to build
#14951: boost compile error when running make silently
#14646: OpenSSH 8.9p1 compiler error under mipsel
#14841: support/download/git fails with "fatal: No such remote
'origin'" due to incorrect check for origin remote
#13356: libabseil-cpp: not building for raspberry pi
#14911: host-python3 build needs python3 on the host
#13831: mesa3d - kmsro driver requires dri3
#13816: xstart failed since update the x11 libraries
#13796: Problems compiling package gst-plugins-good
#14191: patchelf v0.9 corrupt Nvidia shared libraries
#14891: sudo: group setup fails since commit 9b7f8da96b
#14881: Watchdogd Package missing INSTALL_STAGING
#14876: arm-trusted-firmware can no longer be compiled with fPIE
2022.05.3, released October 2nd, 2022
Important / security related fixes.
Fixed compatibility issue with make 4.3 and the 'printvars' /
'show-vars' commands.
Dependencies: Ensure 'find' and 'xargs' are available on the
build host.
A large number of typo fixes.
Defconfigs: Galileo: Fix defconfig syntax, Licheepi zero: Fix
U-Boot dependencies, Bananapi m1, Olimx a20 olinuxino lime
1+2, a33 olinuxino: Use standard FPU configuration, Pine 64
sopine, Rockpro 64: Change to mainline ATF to fix build issue.
Updated/fixed packages: ace, arm-trusted-firmware,
babeltrace2, boost, botan, busybox, clamav, cog, containerd,
cups, dhcpcd, directfb, docker-cli, docker-engine, connman,
edk2, edk2-platform, elf2flt, expat, ffmpeg, ficl, freeswitch,
gcc, gdb, git, glibc, gnutls, go, gocryptfs, graphicsmagick,
grub2, gst1-plugins-bad, gst1-plugins-good, heirloom-mailx,
icu, igh-ethercat, imagemagick, imx-gpu-viv, jack2, jose,
jpeg, jquery-ui-themes, kodi, kvm-unit-tests, libcamera,
libconfuse, libfreeimage, libglvnd, libgpg-error, libinput,
libmdbx, libp11, libsepol, libtirpc, libupnp, libvirt,
libvncserver, libwpe, libxml2, libzlib, linux, linux-tools,
lshw, m4, makedevs, mali-driver, mariadb, memcached, mesa3d,
minidlna, mosquitto, mutt, mv-ddr-marvell, ncurses, ne10,
netsniff-ng, networkd-dispatcher, ocrad, ola, opencv4,
openocd, openssh, openvmtools, pango, pcsc-lite, pistache,
polkit, postgis, postgresql, python-crossbar,
python-paho-mqtt, python-pygame, python-service-identity,
python-txdbus, python3, qemu, qlibc,
qoriq-cadence-dp-firmware, qt5xmlpatterns, ranger, redis,
rng-tools, rsync, rsyslog, rtl8189es, rtl8723bu, runc, rustc,
sconeserver, sdl2, snort, sox, sqlite, squid, stress-ng,
strongswan, sunxi-mali-utgard-driver, sysdig, syslinux,
syslog-ng, tcf-agent, tcpreplay, tesseract-ocr, tinyproxy,
uacme, uboot-tools, uclibc, unzip, usbguard, v4l2loopback,
vim, waffle, webkitgtk, weston, wolfssl, wpewebkit, xfsprogs,
xserver_xorg-server, xtables-addons, zziplib
Issues resolved:
#13216: [Documentation] 2020.02.6 requires GNU find utils
#14556: python-crossbar fails to build
#14796: 64 bit time and seccomp conflict (OpenSSH server crash)
#14951: boost compile error when running make silently
2022.05.2, released August 31st, 2022
Important / security related fixes.
dependencies: Ensure 'cmp' is available on the build host.
pkg-utils: The KCONFIG_ENABLE_OPT macro used to enforce a specific
Kconfig option to be enabled (E.G. for kernel options needed by
packages) no longer changes a =m (modular) with =y (built in).
check-host-rpath: Silence readelf warnings when clang is used
GCC 10.x updated to 10.4.0
Defconfigs: Kria kv260: Fix u-boot configuration
Updated/fixed packages: apg, arm-trusted-firmware, assimp,
bayer2rgb-neon, bind, bird, cog, cwiid, diffutils, freerdp,
fluidsynth, gcc, gdk-pixbuf, glibc, glslsandbox-player,
gnupg2, gtest, i2pd, jack2, jquery-validation, jszip,
kvm-unit-tests, libbsd, libcamera, libcurl, libest, libiio,
libkrb5, libopenssl, libp11, libpsl, libwebsockets, localedef,
luasyslog, lxc, mbedtls, mstpd, mutt, netdata, netsniff-ng,
nodejs, nvidia-driver, ola, openssl, opkg-utils, paho-mqtt-c,
pango, pcsc-lite, perl, perl-crypt-openssl-rsa, pimd, poppler,
postgis, powerpc-utils, pppd, protobuf-c, pulseaudio,
python-bottle, python-django, python-lxml, python3, qt5webkit,
redis, rpi-userland, rsyslog, runc, rustc, sconeserver,
sg3_utils, shadowsocks-libev, stellarium, suricata, swupdate,
tcpreplay, uacme, uclibc, v4l2loopback, webkitgtk,
wilc-driver, wine, wpewebkit, xdg-dbus-proxy,
xserver_xorg-server, zeromq, zfs, zlib-ng
Issues resolved (http://bugs.uclibc.org):
#13796: Problems compiling package gst-plugins-good
2022.05.1, released July 24th, 2022
Important / security related fixes.
Disable big endian no-mmu on ARM as it is not supported by
elf2flt.
Tighten dependencies for external Bootlin toolchains to ensure
they can only be selected in compatible configurations.
Support external toolchains without gdbserver.
Updated/fixed packages: apache, avahi, bdwgc, bind, bpftool,
cups, darkhttpd, dmalloc, ecryptfs-utils, fxload, ghostscript,
gnutls, gst-omx, gst1-devtools, gst1-libav, gst1-plugins-base,
gst1-plugins-bad, gst1-plugins-good, gst1-plugins-ugly,
gst1-python, gst1-rtsp-server, gst1-vaapi, gstreamer1,
gstreamer1-editing-services, gtest, iptables, keyutils, lcms2,
libabseil-cpp, libcamera, libcurl, libeastl, libgpgme,
libgtk3, libmdbx, libmediaart, libmodsecurity, libnetconf2,
libopenssl, libpjsip, libsamplerate, libsndfile, libtalloc,
logrotate, luajit, nginx, noip, paxtest, php, postgresql,
procrank_linux, pure-ftpd, python-pillow, qdecoder,
rabbitmq-server, rpi-userland, ruby, rustc, sofia-sip,
systemd, tcpreplay, tinyproxy, tor, uacme, uboot-tools, vim,
watchdogd, webkitgtk, weston, wireguard-linux-compat,
wpa_supplicant, wpewebkit, zstd
Issues resolved (http://bugs.uclibc.org):
#14881: Watchdogd Package missing INSTALL_STAGING
2022.05, released June 6th, 2022
Fixes all over the tree.
Rework BR2_STATIC_LIBS handling to ensure it can only be
enabled if a suitable C library is available.
Updated/fixed packages: arm-trusted-firmware, at91bootstap,
boinc, boost, cpulimit, diffutils, edk2, eigen, fbv, gcr,
gensio, glibc, go, gtest, iucode-tool, kvm-unit-tests, libcec,
libcurl, libks, linux, linux-tools, lttng-modules, mariadb,
memcached, mono, musl, mutt, netdata, network-manager, nginx,
ogre, openjpeg, openvpn, pipewire, python-crossbar, qemu,
qpid-proton, rauc, rockchip-mali, rsyslog,
rtl8812au-aircrack-ng, ruby, runc, rustc, samba4, tiff,
uclibc, unrar, vim, webkitgtk, wpewebkit,
xdriver_xf86-video-ati, xml-security-c, zchunk, zlib-ng
Issues resolved (http://bugs.uclibc.org):
#14821: Samba server is failing to compile
#14826: make qemu_x86_64_defconfig stopped working
2022.05-rc2, released May 30th, 2022
Fixes all over the tree.
Defconfigs: qemu_ppc64*: Use binutils 2.36.1 to fix build
issue, qemu_arm_vexpress_tz: Fix optee-os build issue,
qemu_arm_versatile_nommu: Drop now that nommu for ARMv5 is no
longer available
Updated/fixed packages: dhcp, edk2, gcr, glibc, i2pd, janet,
janus-gateway, libfreeimage, libnftnl, libnss, libodb-boost,
libostree, libwebsockets, linux-tools, midori, ntfs-3g, ola,
optee-client, pcsc-lite, pipewire, python-flask,
python-service-identity, python-werkzeug, qemu, rng-tools,
rockchip-mali, strace, xdriver_xf86-video-amdgpu
Removed packages: ktap
2022.05-rc1, released May 18th, 2022
Fixes all over the tree and new features.
Toolchain:
- glibc update to 2.35, musl updated to 1.2.3
- gcc 11.x updated to 11.3, support for external gcc 12.x
- binutils 2.38 added, 2.32/2.35.2 removed, default changed to 2.37
- s390x Bootlin external toolchain added