-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
4665 lines (3819 loc) · 195 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
2016.05, Released May 31st, 2016
Minor fixes.
External toolchain: Fix for symlink handling when copying
links to target.
Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
net-tools, openpowerlink, pulseview, rpm, tinyalsa,
xdriver_xf86-video-fbturbo, xserver_xorg-server
2016.05-rc3, Released May 26th, 2016
Fixes all over the tree.
Tweaks for SSP handling for external toolchains.
Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
mpg123, mtr, openpgm, openpowerlink, oprofile, php,
postgresql, putty, python-service-identity, python-treq,
qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
ustr, valgrind, webkitgtk, libxml2, xorriso,
xserver_xorg-server
Issues resolved (http://bugs.uclibc.org):
#8936: Aircrack-ng - Alot of missing dependencies
2016.05-rc2, Released May 17th, 2016
Fixes all over the tree.
Rootfs overlay handling now refuses to overwrite
/{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
even if these directories are present in the overlay.
External toolchain: Unbreak user provided libraries deployment
(BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
QEMU coldfire: Fix for signal handling kernel issue, enable
networking support.
Updated/fixed packages: android-tools, assimp, boost, gcc,
glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
2016.05-rc1, Released May 10th, 2016
Fixes all over the tree and new features.
Architectures: new ARM variants: Cortex A17 and M4, improved
nonmmu (cortex-M) support, m68k has been re-enabled with
support for ColdFire. For x86, support for the i386 variant
has been dropped.
Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
deprecated. Go programming language support, Add Binutils 2.26
support. Old Sourcery PowerPC external toolchains removed,
Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
added for m68k, eXtensa-nommu and ColdFire.
Linux: use zImage by default on ARM, subversion repository
support (for u-boot as well).
New packages: aer-inject, android-tools, cannelloni,
cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
gmrender-resurrect, flannel, font-awesome, freeswitch, go,
go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
kodi-adsp-basic, kodi-adsp-freesurround,
kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
python-autobahn, python-characteristic, python-crossbar,
python-cryptography, python-iniparse, python-iowait,
python-lmdb, python-pexpect, python-ptyprocess,
python-pyasn-modules, python-pygments, python-pymysql,
python-pynacl, python-pyopenssl, python-pysocks,
python-pytrie, python-rpi-gpio, python-service-identity,
python-setproctitle, python-shutilwhich, python-treq,
python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
raptor, scrub, taskd, tegrarcm, turbolua, valijson,
wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
xdriver_xf86-video-amdgpu
Removed packages: foomatic-filters, python-m2crypto,
qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
Issues resolved (http://bugs.buildroot.org):
#6830: Qt5: no fonts are installed
#7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
#7580: Invalid filesystem in Pandaboard defconfig
#8346: wf111 package removes all kernel module dependencies
#8436: xserver_xorg-server Segmentation fault
#8736: IPV6 forced on in busybox
#8746: At startup system stops with 'cannot set terminal proces..
#8751: make fail [fio does not build on sh]
#8766: Compiling host-gcc-final-4.9.3 broken on i386
#8771: make savedefconfig modifies sources
#8781: Unable to build uboot for imx28evk
#8786: gdb fails to build with xz and expat support at the same
#8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
#8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
#8836: Can't select Vim in menuconfig
#8851: Make sure fio can compile with libaio support if it...
#8861: With buildroot 2016.02 trying to build for corei7-avx
fails while trying to build host-binutils
#8866: Making an USB flash bootable with extlinux build with
buildroot does not work
2016.02, Released March 1st, 2016
Minor fixes, mostly security related.
Circular dependency issue with same-as-kernel linux-headers
option fixed.
Updated/fixed packages: bluez5_utils, heirloom-mailx,
imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
2016.02-rc3, Released February 27th, 2016
Fixes all over the tree.
Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
where VFP is optional (but present on the specific hw). Fix
ARM variant selection for freescale_imx31_3stack_defconfig.
Ensure tarballs of downloaded git trees do not contain a
timestamp.
Clarify license of patches in COPYING.
Updated/fixed package: avahi, binutils, cairo, can-festival,
chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
omniorb, openipmi, openobex, patch, pax-utils, perf,
pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
wpa_supplicant, xerces, zsh
Issues resolved (http://bugs.uclibc.org):
#8651: libMonoPosixHelper.so wrong link reference in buildroot..
2016.02-rc2, Released February 18th, 2016
Fixes all over the tree.
Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
crash, backport of Xtensa .init/.fini literals handling.
glibc security patches for CVE-2014-8121, CVE-2015-1781
and CVE-2015-7547.
Defconfigs for Acmesystems Arietta g25 added.
Updated/fixed packages: binutils, boost, chrony, dovecot,
e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
Issues resolved (http://bugs.uclibc.org):
#8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
#8606: Problem compiling on Arch Linux
#8681: kbd 2.0.3 does not build on rpi
2016.02-rc1, Released February 10th, 2016
Fixes all over the tree and new features.
Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
arc-2015.12. Support for legacy uClibc dropped, default to
uClibc-ng instead. Added sys/queue.h implementation for MUSL
for compatibility. Updated versions of Code sourcery and
Linaro toolchains. MIPS Codescape toolchains added. Version
selection for preconfigured external toolchains removed.
New Defconfigs: ARM Juno r0/r1 development boards, Freescale
i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
A number of defconfigs have been extended to generate complete
system images using genimage.
Linux: Automatically patch timeconst.pl for <3.9 kernels,
which isn't compatible with modern perl versions, breaking the
build when building on recent (Fedora 23, Debian
Testing/Unstable, ..) distributions.
Makedevs utility now accepts textual (non-numerical) user and
group names.
Vagrant file to easily setup a working development environment
in a VM has been added.
Size-stats-compare script to compare rootfs sizes between
builds has been added.
Infozip package renamed to zip. EFL packages restructured.
Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
angularjs, apache, apr, argp-standalone, armadillo, arptables,
at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
clamav, cmake, collectd, connman, coreutils, cppcms, crda,
cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
elementary, elfutils, enlightenment, erlang, espeak, eudev,
eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
jquery-sparkline, jquery-ui, jquery-ui-themes,
jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
libedbus, libedit, libedje, libeet, libefreet, libeina,
libeio, libelementary, libembryo, libepoxy, libethumb, libev,
libevas, libevas-generic-loaders, libevdev, libevent, libffi,
libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
libnss, liboauth, liboping, libpciaccess, libplist, libpng,
libraw, libraw1394, librsvg, libseccomp, libsecret,
libserialport, libsigc, libsigrok, libsigrokdecode,
libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
libunwind, libupnpp, liburcu, libuv, libv4l, libva,
libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
lightning, lighttpd, linknx, linux-firmware, linux-fusion,
linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
mesa3d, mesa3d-demos, mesa3d-headers, micropython,
micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
openldap, openntpd, openobex, openocd, openpgm,
open-plc-utils, openpowerlink, openssh, openssl, openswan,
openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
python-alsaaudio, python-can, python-cffi, python-cherrypy,
python-httplib2, python-jinja2, python-lxml, python-m2crypto,
python-mako, python-msgpack, python-psutil, python-pyasn,
python-pycparser, python-pydal, python-pyftpdlib,
python-pyroute2, python-pyxml, python-pyzmq, python-requests,
python-serial, python-setuptools, python-six, python-spidev,
python-tornado, python-twisted, python-web2py, python-webpy,
python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
qt5graphicaleffects, qt5imageformats, qt5multimedia,
qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
qt5serialport, qt5svg, qt5webchannel, qt5webkit,
qt5webkit-examples, qt5websockets, qt5x11extras,
qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
smack, snowball-init, socat, sp-oops-extract, sqlite,
squashfs, squeezelite, squid, sredird, sshfs,
start-stop-daemon, strace, strongswan, stunnel, subversion,
sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
udpcast, unionfs, upmpdcli, usb_modeswitch,
usb_modeswitch_data, ustr, util-linux, vala, valgrind,
vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
xfont_encodings, xfont_font-adobe-100dpi,
xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
xfont_font-alias, xfont_font-arabic-misc,
xfont_font-bh-100dpi, xfont_font-bh-75dpi,
xfont_font-bh-lucidatypewriter-100dpi,
xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
xfont_font-bh-type1, xfont_font-bitstream-100dpi,
xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
xfont_font-daewoo-misc, xfont_font-dec-misc,
xfont_font-ibm-type1, xfont_font-isas-misc,
xfont_font-jis-misc, xfont_font-micro-misc,
xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
xfont_font-misc-meltho, xfont_font-misc-misc,
xfont_font-mutt-misc, xfont_font-schumacher-misc,
xfont_font-screen-cyrillic, xfont_font-sony-misc,
xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
ympd, zeromq, zic, znc, zsh,
New packages: acsccid, assimp, atkmm, autofs, bcm2835,
cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
obsidian-cursors, openal, openbox, pangomm,
python-backports-abc, python-beautifulsoup4, python-cbor,
python-click, python-cssselect, python-ecdsa, python-html5lib,
python-idna, python-ipaddress, python-mistune, python-netaddr,
python-paho-mqtt, python-paramiko, python-pyparted,
python-pysmb, python-pyudev, python-singledispatch,
python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
Removed packages: libungif, python-pyxml,
Issues resolved (http://bugs.uclibc.org):
#7886: gettext: link failure with locally-installed libxml2
#7892: systemd-journald is broken
#8066: nodejs crashes when built with gcc 4.9
#8296: nodejs 0.12.7 - npm crashes (seg core dump)
#8501: gunzip fails to uncompress files
#8541: fail to build host-fakeroot-1.20.2
#8546: build instructions for raspberry pi don't work
#8571: strace for ARC compile error
#8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
#8616: Fail to build for raspberrypi_defconfig with big endian
#8621: sqlite package, properly enable readline
2015.11, Released November 30th, 2015
Minor fixes.
Merged/seperate /usr handling is now also performed for
staging so cross-gdb / gdbserver can find the libraries.
Updated/fixed packages: autossh, conntrack-tools, dcron,
espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
zmqpp
Issues resolved (http://bugs.uclibc.org):
#8441: Invalid directory for X11 fonts in target (RPi2)
#8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
2015.11-rc3, Released November 26th, 2015
Fixes all over the tree.
We have a new modern website!
Updated/fixed packages: apitrace, audiofile, autossh, bullet,
c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
libfreeimage, libgsasl, libgtk3, libxml2, localedef,
lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
yajl, zmqpp
Issues resolved (http://bugs.uclibc.org):
#6872: gpsd: disabled on microblaze
#8321: invalid opcode error with minidlna and ffmpeg
#8336: Default systemd configuration fails to boot correctly in 2015-08
#8446: rpi-userland failed to build with glibc 2.22
2015.11-rc2, Released November 19th, 2015
Fixes all over the tree.
LD_LIBRARY_PATH is no longer used to ensure host binaries find
their libraries, fixing issues on recent Fedora.
Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
with ${TARGET}-cc after the move to use a toolchain wrapper
for the internal toolchain.
Appy-patches.sh now correctly applies all files listed in
series files.
Fixes for merged /usr handling when a custom skeleton is used.
Updated/fixed packages: axfsutils, boost, busybox, dhcp,
directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
libecore, libgudev, libnss, libpng, libserial, libssh2,
libuecc, libxml2, linux-headers, liquid-dsp, ltris,
lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
ushare, wine, wpa_supplicant, x265,
xdriver_xf86-video-siliconmotion, zxing-cpp
Issues resolved (http://bugs.uclibc.org):
#4790: Running udhcpc on a system with NFS root kills NFS
#8456: Building host-pkgconf on Fedora 23 fails due to..
2015.11-rc1, Released November, 7th 2015
Fixes all over the tree and new features.
Architectures:
- Support for sparc64 added (internal toolchain with glibc
only).
- Support for mips32r6 and mips64r6 added.
- Support for Intel Quark X1000 CPU.
- Switch to EABIhf by default on ARM when a VFP is available.
Toolchains:
- glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
uclibc-ng 1.0.8, host-gdb enabled on AArch64.
- The toolchain wrapper which was used only for external
toolchains is now also used for Buildroot internal
toolchains. This allowed to fix the ccache support, prepare
the way for top-level parallel build support and remove gcc
patches used to detect header/library path poisoning.
- Remove Analog Devices Blackfin toolchain 2012R2.
- Fix several Xtensa build failures by switching from
text-section-literals to auto-litpools.
- Enable MIPS64 support in uClibc-ng, use uClibc on ARC
rather than a specific fork.
- Linaro toolchains for ARM, ARMeb and AArch64 updated to
2015.08. 2014.09 version is kept since 2015.08 only runs on
x86_64 hosts.
Bootloaders:
- Fix ARM64 support in U-Boot.
Defconfigs:
- Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
Synopsys AArch64 VDK virtual platform.
- Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
raspberrypi2, riotboard, snps_axs10*, wandboard.
- Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
calao_snowball_defconfig, gnublin, integrator926_defconfig.
Infrastructure:
- Support for fetching from Mercurial tags fixed.
- Introduce LINUX_NEEDS_MODULES, which allows to enforce
module support to be enabled in the kernel when a package
builds out-of-tree kernel modules (through the
pkg-kernel-module infrastructure or on its own).
- Improve the perl package infrastructure to automatically add
the dependency to the perl interpreter to target perl module
packages.
- Remove trailing slashes in <pkg>_SITE and addition of a
check to ensure such trailing slashes are no longer added.
- Extend the legal infrastructure to allow packages to declare
their actual source code. This is useful for packages for
which <pkg>_SOURCE points to pre-built binaries (as is the
case for external toolchains). The new <pkg>_ACTUAL_SOURCE
variable allows to point to the source code in such cases.
- Improved ccache support, thanks to the usage of a toolchain
wrapper for internal toolchain. Now a single cache directory
can be shared between different Buildroot builds.
- Addition of a 'graph-size' make targets, which generates a
PDF graph of per-package size of the root filesystem.
- Addition of <pkg>_EXCLUDES so that packages can request
certain parts of the source code tarball to not be
extracted. This feature is currently used by gcc and
toolchain-external.
- Packages can now use the <pkg>_PKGDIR variable, provided by
the package infrastructure, to reference their package
directory, instead of explicitly using package/<pkg>/.
Filesystems:
- Add high lz4 compression to squashfs.
- Simplification of shell profile files in the default
skeleton.
- Remove ftp user and /home/ftp from the skeleton, and let ftp
server packages create these when needed.
- Add support for /bin, /sbin and /lib to be symlinks to their
corresponding directories in /usr. This is enforced for
systemd configurations, and optional for other
configurations.
- Support for AXFS filesystem image generation added.
- New options to add extra space/inodes to ext2/3/4 images.
Updated/fixed packages:
adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
barebox, bash, batctl, bind, binutils, bluez_utils, boost,
bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
collectd, connman, conntrack-tools, coreutils, cpio,
cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
dhrystone, dillo, directfb, directfb-examples, dmraid,
dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
genimage, gettext, git, glib-networking, glmark2, gnupg2,
gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
kodi-pvr-stalker, kodi-pvr-vbox,
kodi-visualisation-waveforhue, less, lftp, libbluray,
libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
linux, linux-firmware, linux-fusion, linux-headers,
lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
openssl, openswan, openvpn, pango, parted, perl, perl-cross,
perl-crypt-openssl-random, perl-http-message,
perl-io-socket-ssl, perl-module-build, perl-mojolicious,
perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
poco, polarssl, portaudio, portmap, postgresql, proftpd,
protobuf, protobuf-c, pulseaudio, python-configshell-fb,
python-networkmanager, python-numpy, python-pyparsing,
python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
samba4, sane-backends, sconeserver, sdl, sed, setools,
shairport-sync, shared-mime-info, sland, smartmontools,
softether, spice-protocol, sqlcipher, sqlite, squid,
strongswan, stunnel, subversion, sudo, sunxi-tools,
supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
xdriver_xf86-video-sis, xlib_libXi, xorg-server,
xtables-addons, xterm, xz, zic, znc, zsh
New packages:
axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
libg7221, libhttpparser, libilbc, libldns, libmng,
libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
micropython, micropython-libs, python-pyratemp,
python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
Removed packages:
blackbox (was deprecated), divine (merged in directfb),
kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
sawman (merged in directfb), schifra (marked broken since a
long time), texinfo (host variant only, no longer used), zxing
(replaced by zxing-cpp),
Issues resolved (http://bugs.uclibc.org):
#4099: cut utility from GNU coreutils works incorrect
#7772: libxml-parser-perl build failure: missing dependency
ExtUtils/MakeMaker
#7931: Default configuration for Cubieboard v1 is outdated
#8116: 2015.05-rc2 raspberrypi2_defconfig network interface
not coming up
#8246: X.org DRI2 build issue
#8256: pointing to /usr/bin/objcopy old version (x86) instead
of the generated one
#8266: mplayer build issue
#8281: pyrexc fails to run when path is too long
#8316: lttng-tools and lttng-babeltrace executables contain
bad RPATH pointing to host machine
#8331: kexec wants shutdown in /sbin, but systemd installs it
in /usr/sbin
#8361: Buildroot 2015.08.1 skeleton inittab overwritten by
busybox's version
#8366: libevent does not build
#8386: build failed with external toolchain
#8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
#8396: CCACHE initialization
#8401: gpsd 3.15 NMEA support
#8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
#8421: util-linux installs systemd files in output/target/home/
2015.08, Released August 31st, 2015
Minor fixes.
OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
reintroduced as opencv.
Updated/fixed packages: bootutils, canfestival, cppcms,
curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
ltrace, midori, network-manager, openssh, perl-file-listing,
perl-http-cookies, perl-http-daemon, perl-http-negotiate,
perl-www-robotrules, python-can, qt5base, qt5multimedia,
setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
x264, xserver_xorg-server, zyre
2015.08-rc2, Released August, 24th 2015
Fixes all over the tree.
Toolchain: fix gcc build on NIOS-II.
Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
hybrid ISO image generation.
Architectures: add arm1136j-s variant.
Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
netatalk, nodejs, ola, opencv, oprofile, php, poco,
postgresql, powertop, protobuf, protobuf-c, qt5base,
qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
Issues resolved (http://bugs.uclibc.org):
#8276: package/dropbear: symlink resolution incorrect
#8286: Error with buildroot
#8301: ldconfig parameter in Makefile
2015.08-rc1, Released August, 5th 2015
Fixes all over the tree and new features.
Architectures:
- Refactor how the availability of an MMU is described.
- Minimal support for Cortex-M3
- Minimal support for AArch64 big-endian
Toolchains:
- Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
- Use uClibc-ng as the default uClibc version, instead of the
official uClibc, which hasn't done any release since 3+
years
- eglibc is now marked as deprecated
- GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
support for gcc 5.x added.
- Binutils: use Binutils 2.24 as the default, 2.25.x series
bumped to 2.25.1, remove old Binutils 2.22.
- Update ARC toolchain components to 2015.06
- Add support for Fortran when building gcc
Bootloaders:
- Support for using the kconfig configuration system in
U-Boot
New Defconfigs:
- VIA VAB-820/AMOS-820
- OLimex OLinuxino A20 Lime
- Many new defconfigs for Atmel evaluation boards:
at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
Xplained Ultra, sama5d3 Xplained.
- ACME Systems Aria G25
- WarPboard
- Altera Cyclone 5 Development Board
- Xilinx zc706
- ARC AXS101 and AXS103 Software Development Platforms
- Significant updates to Raspberry Pi / Raspberry Pi 2
Infrastructure:
- Buildroot takes better care now of generating predictable
permissions in the target filesystem. However, existing
permissions on a custom skeleton or rootfs overlay will no
longer be preserved. Therefore, it is necessary to add a
permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
required permissions.
- Add support for kconfig fragments.
- No longer pass --{enable,disable}-debug to autotools
packages depending on the value of
BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
whether we build with -g or not.
- Support for extracting archives in .lzma in the generic
package infrastructure.
- Remove random-seed file from the default skeleton, since
seeding the entropy pool with a known seed makes more harm
than good.
- In the CVS download helper, add support to use a date as
the version.
- Add support for a per-package <pkg>_STRIP_COMPONENTS
variable, which packages can use to specify how many path
components should be stripped when extracting the tarball.
- Addition of a 'kernel-module' package infrastructure, which
simplifies the packaging of external kernel modules. Many
existing packages are converted to use it.
- Allow bootloaders to be implemented in $(BR2_EXTERNAL)
- Remove /etc/securetty from the default skeleton.
- Migration of sysV initscripts from the default skeleton to
a package called 'initscripts', installed only when Busbox
init or sysvinit are used.
- Migration of the skeleton logic to a proper 'skeleton'
package.
- Addition of a 'linux-tools' infrastructure in the 'linux'
package, to support building user-space tools bundled
within the Linux kernel sources, such as perf and cpupower.
- Usage of backticks instead of make $(shell ...) to execute
shell commands. This allows to delay the evaluation of such
commands when actually needed, and not when expanding the
variables. It is useful to make 'make printvars' less
noisy, and as a preparation to support top-level parallel
build.
- Libtool .la files are not mungled for all package types,
instead of being handled only for packages using the
autotools-package infrastructure.
- Add mechanism to allow packages to express a dependency on
gcc versions. This is needed for packages that use C++11 or
C11 support for example.
Important package updates:
- Complete rework of the matchbox packaging
- Lots of fixes in packages for compatibility with musl and
gcc 5.
- Hash files added to a large number of packages.
- Update a significant number of packages to use a new
hosting, after the announcement of Google Code and
Gitorious closing.
- Major packages needed for SELinux support have been merged,
but the support is not complete yet.
- Significant update of OpenCV to version 3.0, and addition
of lots of eatures.
- Significant update of all packages supporting the GPU and
VPU of i.MX ARM processors.
- Addition of systemd support in a significant number of
packages.
- Qt5 updated to 5.5.0
- Use modular X.org server by default instead of KDrive
Filesystems:
- Complete overhaul of the iso9660 support. Now allows to use
directly IS9660 as the root filesystem format and not only
an initrd, and supports Grub 2 and isolinux in addition to
Grub.
Updated packages: a10disp, agentpp, apache, at91bootstrap3,
audit, barebox, bc, bind, bmon, boost, btrfs-progs,
ca-certificates, can-utils, ccache, cloog, collectd, connman,
coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
kodi-audioencoder-lame, kodi-audioencoder-vorbis,
kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
libunistring, libupnp, libuv, libv4l, libva,
libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
linux-firmware, linux-headers, live555, ltrace, lua,
lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
nodejs, ntp, ola, opencv, openldap, openssh, openssl,
openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
perl-cross, perl-encode-locale, perl-io-socket-ssl,
perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
perl-xml-libxml, php, pinentry, polarssl, postgresql,
pulseview, pure-ftpd, python, python-dpkt, python-lxml,
python-networkmanager, python-pyinotify, python-pypcap,
python-tornado, qextserialport, qt, qt5, rapidjson, redis,
rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
zic.
New packages: angularjs, atf, audit, c-icap, c-icap-modules,
cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
jquery-datetimepicker, kodi-audioencoder-modplug,
kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
kodi-screensaver-pingpong, kodi-screensaver-pyro,
kodi-screensaver-stars, kodi-visualisation-shadertoy,
kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
kodi-visualisation-waveform, kvmtool, kyua, libfm,
libfm-extra, libplatform, librtas, libsodium, libsquish,
libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
python-pycli, python-pydal, python-pyyaml, python-web2py,
qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
rtl8821au, sepolgen, setools, skeleton, stm32flash,
webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
Deprecated packages: webkitgtk, libgail, eglibc support in
glibc package.
Issues resolved (http://bugs.uclibc.org):
#4291: Segmentation fault with all binaries that use threads
when compiled with gcc 4.6
#6944: building toolchain for sh4 fails
#7592: Buildroot GCC: -lto requires plugin support in ranlib
#7628: Python SSL does not get built for Raspberry Pi
#7682: Missing dependencies for NFS
#7742: dhcp lacks important features when BR2_ENABLE_DEBUG
#7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
#7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
#7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
#7971: python-flask, python-werkzeug. No module named zlib
#7981: Target file system skeleton permissions hazard
#8006: rpcdebug in nfs-utils built for the host
#8036: alsa-lib headers problem that prevents to compile alsa
dependent projects
#8081: systemd init system: /tmp is not mode 1777
#8121: php opcache extension doesn't get installed
#8151: x86-64 make fails with ncurses 5.9
#8156: pkg-kconfig infra broken for *-update-{config, defconfig}
#8161: default /bin/sh symlink to busybox is full path and not relative
#8171: glamor missing
#8191: Request update support for the cubieboard series
#8201: Important security upgrades for node.js
2015.05, Released May 31st, 2015
Minor fixes.
Updated/fixed packages: conntrack-tools, directfb, fio, flite,
gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
python3, sconeserver, udpcast, upmpdcli
2015.05-rc3, Released May 22nd, 2015
Several fixes, mainly related to static linking.
Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
wvstreams, xmlstarlet, zeromq, zmqpp
New packages: c-periphery
Issues resolved (http://bugs.uclibc.org):
#8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
#8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
#8126: exim lacks plaintext and cram-md5 auth
2015.05-rc2, Released May 11th, 2015
Minor fixes.
Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking