-
Notifications
You must be signed in to change notification settings - Fork 11
/
CHANGES
12460 lines (9678 loc) · 489 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
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
- 5.17.x kernel headers support added
Filesystem:
- Rework OCI entrypoint/command logic to handle command arguments
- Squashfs block size is now configurable
Graphs: Also generate a build time timeline graph (for top
level parallel builds).
scripts/pkg-stats: Optimize memory consumption for CPE parsing
Fix compatibility issue with the fakeroot script logic and
modern versions of dash.
Change git:// URLs pointing to Github to https://, now that
Github has turned off support for git://
New defconfigs: Octavo osd32mp1_brk / osd32mp1_red
New packages: falcosecurity-libs, lzma-alone, octave,
python-flit-core, python-orjson, python-pydevmem,
qt5webengine-chromium, qt5webengine-chromium-catapult, ragel,
tbb, wilc-driver, wtfutil
Wilc1000-firmware renamed to wilc-firmware
Issues resolved (http://bugs.uclibc.org):
#14596: package dialog is outdated and contains a bug
#14651: OpenSSH 8.9p1 compiler error under ARM
#14656: Adding dependencies from an external tree does not work
#14661: Fakeroot script relies on bash-isms, does not work with..
#14681: QT5WEBENGINE not building
#14686: genimage.cfg have a hard-coded .ext4 extension which..
#14701: Multiple unresolved symbols while building kernel ..
#14706: nodjs build problem
#14711: nodjs build problem missing bzip
#14721: python-argon2_cffi no longer works
#14731: BR2_PACKAGE_IOSTAT
#14751: LVM2 Outdated Link
2022.02.8, released December 10th, 2022
Important / security related fixes.
Updated/fixed packages: asterisk, dash, dovecot,
dovecot-pigeonhole, edk2, edk2-platforms, elf2flt, exim,
freerdp, gcc, gdb, git, gnupg2, heimdal, iwd, kodi,
libarchive, libmdbx, libkrb5, libksba, libopenssl, memcached,
netsnmp, nginx, openpgm, optee-client, python3, rsync,
rtl8723bu, samba4, sdl, sdl2, swupdate, sysstat, systemd,
uboot, vim, vlc, xen, xterm
Issues resolved (http://bugs.uclibc.org):
#15131: Target GDB uses internal zlib
2022.02.7, released November 17th, 2022
Important / security related fixes.
Defconfig: Pine64: Change to mainline ATF to fix build
issue, Zynqmp zcu102 / zcu106: Fix pmufw reset issue
Updated/fixed packages: arm-trusted-firmware, bind, botan,
collectd, darkhttpd, dbus, dhcp, dnsmasq, docker-cli,
docker-engine, exfatprogs, expat, f2fs-tools, faad2, ffmpeg,
freerdp, gnutls, go, gpsd, 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, libfribi, libidn2, libinput,
libmdbx, libopenssl, libosip2, libpng, libtasn1,
libtorrent-rasterbar, libuhttpd, libvncserver, libxml2, linux,
linux-tools, lldpd, lrzip, lz4, matchbox-startup-monitor,
msmtp, multipath-tools, mupdf, musl, mv-ddr-marvell, mxml,
nodejs, ntfs-3g, numactl, openvmtools, oracle-mysql,
paho-mqtt-c, perl-net-ssleay, php, pixman, poppler, procps-ng,
python-django, python3, qdecoder, rpi-userland, rsync,
rtl8189es, rtl8189fs, rtl8723bu, rtl8812au-aircrack-ng,
rtl8821au, rtl_433, samba4, shapelib, socat, squid, sqlite,
squashfs, strongswan, sudo, swupdate, timescaledb, u-boot,
uclibc-ng-test, udisks, uftp, uhd, umtprd, vim, wavemon,
wireguard-linux-compat, wolfssl, wpa_supplicant, wpewebkit,
zlib-ng, zsh
Issues resolved (http://bugs.uclibc.org):
#15026: package/udisks: install to staging
#15061: Node.js Package fails to build against musl i386
2022.02.6, 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, connman,
containerd, cups, dhcpcd, directfb, docker-cli, docker-engine,
edk2, edk2-platforms, elf2flt, expat, ffmpeg, ficl,
freeswitch, freetype, gcc, gdb, git, gnutls, go,
graphicsmagic, grub2, gst1-plugins-bad, gst1-plugins-good,
heirloom-mailx, icu, igh-ethercat, imagemagick, imx-gpu-viv,
jose, jpeg, jquery-ui-themes, kodi, libconfuse, libfreeimage,
libglvnd, libgpg-error, libinput, libmdbx, libsepol, libtirpc,
libupnp, libvirt, libvncserver, libwpe, libxml2, libzlib,
linux, linux-tools, lshw, m4, makedevs, makedumpfile,
mali-driver, mariadb, memcached, mesa3d, minidlna, mosquitto,
mutt, mv-ddr-marvell, ncurses, ne10, netsniff-ng,
networkd-dispatcher, ocrad, opencv4, openocd, openssh, pango,
pcsc-lite, polkit, postgis, postgresql, python-paho-mqtt,
python-pygame, python3, qemu, qlibc,
qoriq-cadence-dp-firmware, qt5xmlpatterns, ranger, rng-tools,
rsync, rsyslog, rtl8189es, rtl8723be, runc, rustc,
sconeserver, sdl2, snort, sox, sqlite, squid, stress-ng,
strongswan, sunxi-mali-utgard-driver, syslinux, syslog-ng,
tcf-agent, tcpreplay, tesseract-ocr, tinyproxy, uacme,
uboot-tools, uclibc, unzip, usbguard, v4l2loopback, vim,
webkitgtk, wolfssl, wpewebkit, xfsprogs, xserver_xorg-server,
xtables-addons, zziplib
Issues resolved:
#13216: [Documentation] 2020.02.6 requires GNU find utils
#14796: 64 bit time and seccomp conflict (OpenSSH server crash)
#14951: boost compile error when running make silently
2022.02.5, 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
Updated/fixed packages: apg, arm-trusted-firmware, assimp,
bayer2rgb-neon, bind, bird, cog, cwiid, diffutils, fluidsynth,
freerdp, gcc, glibc, glslsandbox-player, gdk-pixbuf, gnupg2,
gtest, i2pd, jack2, jquery-validation, jszip, libbsd, libcamera,
libcurl, libest, libiio, libkrb5, libopenssl, libpsl,
luasyslog, lxc, mbedtls, mstpd, mutt, netdata, netsniff-ng,
nodejs, nvidia-driver, openssl, opkg-utils, paho-mqtt-c,
pango, pcsc-lite, perl, pimd, poppler, postgis, powerpc-utils,
pppd, protobuf-c, pulseaudio, python-bottle, python-django,
python-lxml, python3, qt5webkit, rpi-userland, rsyslog, runc,
rustc, sconeserver, sg3_utils, shadowsocks-libev, suricata,
tcpreplay, uacme, uclibc, v4l2loopback,, webkitgtk, 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
#14926: package/nodejs: build for host fails with GTEST errors
2022.02.4, released July 28th, 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, rustc, sofia-sip, systemd,
tcpreplay, tinyproxy, tor, uacme, uboot-tools, vim, watchdogd,
webkitgtk, wireguard-linux-compat, wpa_supplicant, wpewebkit,
zstd
Issues resolved (http://bugs.uclibc.org):
#14881: Watchdogd Package missing INSTALL_STAGING
2022.02.3, released June 19th, 2022
Important / security related fixes.
Infrastructure: Fix building under paths containing regex
characters (E.G. '+')
Toolchain: Only allow ppc64le variants for which a
glibc/musl/uclibc toolchain is supported.
Mark codescape mti/img mips toolchains as shared library only
(glibc).
Updated/fixed packages: arm-trusted-firmware,
at91dataflashboot, boinc, dhcp, diffutils, edk2, fbv, gensio,
glibc, go, gtest, iucode-tool, janet, libcec, libcurl,
libfreeimage, libnftnl, libodb-boost, linux, linux-tools,
lttng-modules, mariadb, memcached, mono, mutt,
network-manager, nginx, ntfs-3g, ogre, openjpeg, openvpn,
qemu, qpid-proton, qt5webengine, rauc, rockchip-mali, rsyslog,
ruby, runc, rustc, samba4, strace, tiff, uclibc, unrar, vim,
webkitgtk, wpewebkit, xdriver_xf86-video-amdgpu,
xdriver_xf86-video-ati, zlib-ng
New packages: qt5webengine-chromium,
qt5webengine-chromium-catapult
Issues resolved (http://bugs.uclibc.org):
#14766: package dhcp on buildroot 2022.02.1 failed
#14821: Samba server is failing to compile
#14826: make qemu_x86_64_defconfig stopped working
2022.02.2, released May 29th, 2022
Important / security related fixes.
Archictures: Drop sh2a, correct x86 Bonnell variant
Toolchain: Bump GCC 11.x to 11.3, correct pre-installed
external toolchain logic when toolchain is available in path.
Rework OCI filesystem entrypoint/command logic to handle
command arguments
Defconfigs: Update Zynqmp zcu102/106 to final 2022.1 release,
fix zcu106 PLL config
Updated/fixed packages: adwaita-icon-theme, afboot-stm32,
aircrack-ng, alchemy, alsa-lib, arptables, assimp, asterisk,
aubio, avrdude, azure-iot-sdk-c, batman-adv, binutils,
bpftool, brotli, cairo, cifs-utils, clamav, cryptodev-linux,
dhcp, diffutils, dmalloc, duktape, e2fsprogs, elf2flt, espeak,
expat, ffmpeg, fluidsynth, freerdp, gcc, git, glorytun,
glslsandbox-player, gnutls, go, gst1-imx, gst1-plugins-good,
gzip, imagemagick, janus-gateway, keepalived, kompexsqlite,
kvm-unit-tests, libarchive, libcgi, libcurl, libevdev,
libeXosip2, libhtp, libinput, libkcapi, libkrb5, libks,
libmdbx, libmnl, libnpupnp, libnspr, libopenssl, liboping,
libpjsip, libpri, libselinux, libsigsegv, libv4l,
libwebsockets, libxml2, linux, linux-tools, ltp-testsuite,
luajit, lvm2, mali-driver, mariadb, mc, minizip, mpd, mutt,
netatalk, netsurf, network-manager, nodejs, numactl, nut,
omniorb, openbox, opencv4, openjdk, openjdk-bin, openocd,
pamtester, pango, pcre2, php, php-apcu, pinentry, pixman,
polkit, postgis, postgresql, pure-ftpd, python-aenum,
python-avro, python-django, python-pillow, python-simplejson,
python-urllib3, python-zopfli, python3, qemu, qpdf, quazip,
redis, rockchip-mali, rsync, rt-tests, rust, rtl8818eu,
rtl8189es, rtl8189fs, rtl_433, sam-ba, samba4, sdl2_ttf,
shadowsocks-libev, shim, subversion, sun20i-d1-spl, suricata,
systemd, tftpd, trinity, tvheadend, udev, uftrace,
urandom-scripts, usb_modeswitch, valgrind, vde2, vim,
wireplumber, wolfssl, wpa_supplicant, xlib_libXfont2, xz,
zlib, zlog
Issues resolved (http://bugs.uclibc.org):
#14751: LVM2 Outdated Link
2022.02.1, released April 11th, 2022
Important / security related fixes.
Graphs: Also generate a build time timeline graph (for top
level parallel builds).
scripts/pkg-stats: Optimize memory consumption for CPE parsing
Fix compatibility issue with the fakeroot script logic and
modern versions of dash.
Change git:// URLs pointing to Github to https://, now that
Github has turned off support for git://
Updated/fixed packages: ace, apache, apr, apr-util, belr,
bind, bluez5_utils, boinc, bpftool, busybox, cloop, cog,
containerd, cppcms, dav1d, dhcp, dieharder, dnsmasq,
docker-cli, docker-engine, efl, ell, fakeroot, flac,
fluidsynth, gdk-pixbuf, glib-networking, gnutls, 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, haproxy, htop, intel-gmmlib,
ipmiutil, iwd, jack1, jack2, lftp, libabseil-cpp, libbluray,
libcamera-apps, libcoap, libcurl, libest, libgee, libglib2,
libgtk3, libiec61850, libkrb5, libminiupnpc, libodb,
libodb-boost, libopenssl, libp11, libpsl, libressl, librstp,
librtlsdr, liburing, libyang, libzlib, luasec, lxc, matio,
meson, minidlna, minizip, mpd, mtools, netatalk, nbd, odb,
openblas, openssh, openvpn, optee-os, opus, paho-mqtt-c,
pango, php, pipewire, pkcs11-helper, postgresql, ppp,
protozero, python-aioconsole, python-avro, python-brotli,
python-greenlet, python-paramiko, python-pillow,
python-rpi-gpio, python-treq, python-twisted, python-ujson,
python-weasyprint, qt5base, qt5wayland, raptor, rpi-firmware,
rpi-userland, rtl_433, runc, rust, rygel, samba4,
shairport-sync, spice, spidev_test, stunnel, systemd,
timescaledb, trace-cmd, trousers, ts4900-fpga, tvheadend,
udpcast, unbound, upower, urandom-scripts, usbguard, valgrind,
valijson, vim, wavpack, wget, wireplumber, wireshark, woff2,
xmrig, zabbix, zlib-ng, zynaddsubfx, zziplib
Issues resolved (http://bugs.uclibc.org):
#13971: ip6tables-nft build does not include MASQUERADE target..
#14651: OpenSSH 8.9p1 compiler error under ARM
#14656: Adding dependencies from an external tree does not work
#14661: Fakeroot script relies on bash-isms, does not work ..
#14686: genimage.cfg have a hard-coded .ext4 extension which..
#14701: Multiple unresolved symbols while building kernel ..
#14711: nodjs build problem missing bzip
#14731: BR2_PACKAGE_IOSTAT
2022.02, released March 8th, 2022
Various fixes.
Fixes to cargo and golang packaging infrastructure.
Defconfigs: OrangePi RK3399: Fix genimage format
Updated/fixed packages: azure-iot-sdk-c, bpftool, cog,
directfb, directfb-examples, dnsmasq, docker-engine, expat,
freerdp, frr, gdb, ghostscript, glib-networking, go, haproxy,
hostapd, kf5-extra-cmake-modules, kf5-kcoreaddons,
kf5-modemmanager-qt, kf5-networkmanager-qt, libcamera-apps,
libgee, libglfw, librstp, libtorrent, libvirt, libxslt, linux,
mariadb, oprofile, osm2pgsql, pulseview, python-cryptography,
python-gnupg, python-treq, qt5base, qt5webkit, rauc, re2,
rygel, safeclib, sconeserver, seatd, sord, upmpdcli,
util-linux, weston, wpa_supplicant, xdriver_xf86-video-mach64,
xdriver_xf86-video-nouveau, xdriver_xf86-video-qxl,
xscreensaver, zabbix
New packages: gdk-pixbuf-xlib
Removed packages: python-pycli
Issues resolved (http://bugs.uclibc.org):
#13126: make fails - bzip2-1.0.6.tar.gz and DirectFB-1.7.7.tar..
#14611: 2022.02-rc2: Build of BR2_x86_64 with BR2_LINUX_KERNEL_..
#14631: host-go-bootstrap: go not being built for package in ..
#14636: azure-iot-sdk-c: Installed headers do not compile
#14641: oprofile can not find the events files
2022.02-rc3, released February 28th, 2022
Fixes all over the tree.
Defconfigs: Xilinx zynqmp zcu102/zcu106: Fix U-Boot DTS config
Updated/fixed packages: bluez5_utils, bpftool, dbus, exempi,
flac, freerdp, frr, gnutls, libpjsip, libxml2, mariadb,
openssh, python-twisted, qt5webkit, samba4, vim, weston,
wireshark, wolfssl, xdg-dbus-proxy, xterm,
2022.02-rc2, released February 20th, 2022
Fixes all over the tree.
Defconfigs: Friendlyarm Nanopi R2S: Fix U-Boot build, Kontron
BL i.MX8M Mini: Fix U-Boot build, PC Engines APU2: Fix Linux
build, ROC-RK3399-PC: Bump rootfs size to fix build
Updated/fixed packages: apache, apparmor, apr-util, arp-scan,
binutils, bluez5_utils, connman, cryptsetup, dnsmasq,
dovecot-pigeonhole, expat, gdk-pixbuf, gst1-plugins-base,
guile, keepalived, kodi, libbpf, libglvnd, libgsasl, libiconv,
librsvg, libuhttpd, libusb, libv4l, luasyslog, mongrel2, neon,
pcre, perl-netaddr-ip, php, psmisc, python-ipython,
python-pycli, python-pygame, python-regex, python-twisted,
qt5location, qt5webkit, resiprocate, rygel, safeclib,
sdl2_ttf, socketcand, strongswan, sudo, systemd, toolchain,
urg, webkitgtk, wireless-regdb, wpewebkit,
xdriver_xf86-video-{ati,mach64,mga,r128,savage,tdfx}, xz, zfs,
zsh
2022.02-rc1, released February 13th, 2022
Numerous package updates and many (80) new packages.
Toolchain:
- glibc: Optional support for compatibility shims for running
on older kernels than what glibc has been built against
- uClibc: Use uClibc-ng 1.0.40
- External toolchains: Update Bootlin toolchains to 2021.11-1
version
Python 2.7 and python 2.x specific packages removed as python
2.x is EOL since April 2020. Likewise a number of python3
specific host packages has been renamed (host-python-foo
instead of host-python3-foo) now host-python is always python
3.x.
Cargo (Rust) package infrastructure added. Vendoring support
added to golang package infrastructure.
New defconfigs: FriendlyARM NanoPi R2S, Kontron BL i.MX8M
Mini, Microchip Sama7g7ek, Olimex STMP157 OlinuXino LIME2,
QEMU PPC Bamboo, PPC64 PowerNV, Raspberry Pi Zero 2W, Spike
Riscv64, Xilinx zcu102
Removed defconfigs: Synopsys arch38 VDK, aarch64 VDK
New packages: ace, alchemy, alfred, bat, bento4, bmx7,
bpftool, brcmfmac_sdio-firmware-rpi, cfm, cups-pk-helper,
davinci-bootcount, dbus-cxx, embiggen-disk, freeipmi,
gocryptfs, kodi-pvr-plutotv, kodi-pvr-waipu, ksmbd-tools,
libcamera-apps, libest, libexecinfo, libfutils, libglvnd,
libks, libmd, libopenaptx, libpeas, libshdata, liburing, lilv,
lua-argon2, lua-cffi, lua-inotify, lv2, mali-driver,
moby-buildkit, modsecurity2, networkd-dispatcher, pahole,
php-apcu, php-lua, php-pam, python-argon2-cffi-bindings,
python-cssselect2, python-distro, python-fonttools,
python-gnupg, python-installer, python-memory-profiler,
python-mpd2, python-pep517, python-pydyf, python-pypa-build,
python-pyphen, python-tinycss2, python-tomli,
python-weasyprint, python-zopfli, qoriq-cadence-dp-firmware,
riscv-isa-sim, rockchip-mali, rpi-rgb-led-matrix, sdbus-cpp,
sentry-cli, serd, simple-mail, sord, sratom,
sunxi-mali-utgard, sunxi-mali-utgard-driver, tinifier, ulog,
vulkan-headers, xlib_libxcvt, zabbix, zchunk, zynaddsubfx
Removed packages: gstreamer1-mm, python, python-backports-abc,
python-backports-functools-lru-cache,
python-backports-shutil-get-terminal-size,
python-backports-ssl-match-hostname, python-configobj,
python-dialog, python-enum, python-enum34, python-functools32,
python-futures, python-id3, python-ipaddr, python-ipaddress,
python-mad, python-nfc, python-pam, python-pathlib2,
python-pycap, python-pyro, python-singledispatch,
python-subprocess32, python-typing, python-yieldfrom,
qt5webkit-examples, rpi-bt-firmware, rpi-wifi-firmware,
sunxi-mali-mainline, sunxi-mali-mainline-driver, zynq-boot-bin
Issues resolved (http://bugs.uclibc.org):
#12271: python-iptables runtime dependencies
#13436: PPP 2.4.9 is out
#14351: needs to mount sysfs before mount -a
#14451: nodejs won't build on Fedora 35
#14471: alsa_utils wrong deployment
#14501: lttng-modules v2.11 package fails to build
#14531: Package EFL - build error
2021.11.3, released March 24th, 2022
Important / security related fixes.
Updated/fixed packages: apache, azure-iot-sdk-c, boinc, dbus,
directfb, docker-engine, exempi, expat, flac, gdb, gdk-pixbuf,
gnutls, go, haproxy, libcurl, libiec61850, libminiupnpc,
libodb, libodb-boost, libopenssl, libpjsip, libressl, librsvg,
libsrtp, libvirt, libxml2, libxslt, lxc, mariadb, minidlna,
odb, openblas, openvpn, oprofile, php, pppd, python-ipython,
python-twisted, raptor, rpi-firmware, samba4, seatd,
timescaledb, usbguard, util-linux, vim, wavpack,
wireless-regdb, wireplumber, wireshark, wolfssl, xscreensaver,
xterm, zsh
New packages: gdk-pixbuf-xlib
Issues resolved (http://bugs.uclibc.org):
#13126: make fails - bzip2-1.0.6.tar.gz and DirectFB-1.7.7.tar..
#14636: azure-iot-sdk-c: Installed headers do not compile
#14641: oprofile can not find the events files
2021.11.2, released February 28th, 2022
Important / security related fixes.
Defconfigs: Andes ae3xx, Intel galileo: Fix build with host
gcc >= 10, ROC-RK3399-PC: Bump rootfs size to fix build issue.
Add conditional patching logic to fix build issues for older
U-Boot / Linux kernel versions when built with a host gcc >=
10.
Updated/fixed packages: apitrace, binutils, casync, cgilua,
connman, expat, gauche, gdb, gensio, glibc, go, gst-omx,
gst1-devtools, gst1-libav, gst1-plugins-bad,