forked from buildroot/buildroot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
2271 lines (1799 loc) · 89.4 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
2013.08, Released August 31th, 2013:
Minor fixes.
Documentation build fixed.
Updated/fixed packages: ltrace, strongswan
2013.08-rc3, Released August 29th, 2013:
Fixes all over the tree.
External toolchain lib32/lib64 handling, ABI name for EABIhf,
misc fixes for generatelocales, apply-patches and module
stripping.
Top level menu names reordered and renamed for clarity.
Updated/fixed packages: acl, attr, bash, dbus, directfb,
dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
openssh, openssl, pulseaudio, python-setuptools, qt5,
qt5webkit, redis, strongswan, sunxi-mali
Issues resolved (http://bugs.uclibc.org):
#6464: dbus-daemon-launch-helper needs setuid
2013.08-rc2, Released August 16th 2013:
Documentation improvements.
External toolchains fixes.
Updated/fixed packages: aircrack-ng, bash, boost, cairo,
cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
uclibc, udev, wayland, webkit, zeromq.
Issues resolved (http://bugs.uclibc.org):
#6440: typo in ffmpeg makefile
2013.08-rc1, Released August 5th, 2013:
Architectures:
- improved support for floating point on ARM and Thumb/Thumb2
- support for ARM OABI removed
Toolchains:
- support added for Sourcery CodeBench ARM and MIPS 2013.05
- Linaro ARM and Aarch64 toolchains updated
- support added for the Arago ARMv5 and ARMv7 toolchains
- gcc 4.8.x version bumped
- support for installing both FDPIC and FLAT libraries on
Blackfin
- support for uClibc 0.9.31 removed,
- convert the internal toolchain backend to use the package
infrastructure
- support added for eglibc in the internal toolchain backend
- toolchain components for the ARC architecture updated and
gdb for ARC added.
- support for Blackfin in the internal toolchain fixed
Defconfigs: beaglebone_defconfig updated, new defconfig for
CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
TNY-A9G20-LPW.
A number of packages have been fixed to use the
<pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
script installed and modified properly. Licensing informations
has been added to a number of packages.
Use XZ tarballs for a number of packages.
Noticeable package changes/additions:
- The glib2/libgtk2/webkit stack has been updated to recent
versions.
- Support for Gstreamer 1.x has been added.
- OpenGL support for TI OMAP platforms has been added.
- OpenGL support for Allwinner platforms has been added.
- OpenMAX support for RasberryPi has been added.
Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
cpanminus, cups, curl, dash, dbus, dhcp, directfb,
directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
libvncserver, libxml2, linphone, lm_sensors, logrotate,
ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
sane-backends, sconeserver, sdl_image, sdparm, ser2net,
socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
zlib.
New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
gcc-final, gcc-initial, gcc-intermediate, git,
gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
gst1-plugins-good, gst1-plugins-ugly, gst-omx,
gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
linux-headers, lockdev, luabitop, luacrypto, lua-ev,
luaexpatutils, msgpack, ocrad, on2-8170-libs,
on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
tree, tstools, uclibc, w_scan.
Issues resolved (http://bugs.uclibc.org):
#4718: python (built for powerpc) distutils has paths to host
compiler toolchain
#5516: appended device tree blobs on uImage fails
#6302: Versions of packages retrieved from github.com are wrong
#6308: dosfstools download link is wrong
#6326: Dropbear: Add options to allow better config for
different target devices (e.g. routers)
#6338: Wrong download link for minicom package
#6344: Wrong handling of license text files with same name and
different directory
#6374: gnutls package broken if linux cryptodev module
selected
#6410: omap3_beagle has uimage error load address error
2013.05, Released May 31th, 2013:
Minor fixes.
External toolchain wrapper fix for if host/usr/bin is placed
in the patch.
Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
flex, jamvm, kmod, libplayer, libtirpc, libv4,
lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
Issues resolved (http://bugs.uclibc.org):
#4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
#4988: flex and m4 problems
#5912: obsolete CVS files
2013.05-rc3, Released May 25th, 2013:
Minor fixes.
Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
wireshark
2013.05-rc2, Released May 15th, 2013:
Fixes all over the tree.
Default number of parallel jobs is now number of CPUs + 1.
Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
Updated/fixed packages: aircrack-ng, busybox, cairo,
classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
filemq, gst-plugin-bad, gutenprint, hplip, json-c,
libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
pulseaudio, python-nfc, qt5imageformats, quota, openssl,
sconeserver, strace, sylpheed, wvstreams,
xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
xdata_xcursor-themes,
xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
xdriver_xf86-input-{tslib,vmmouse,void},
xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
xfont_encodings, xfont_font-adobe-{100,75}dpi,
xfont_font-utopia-{100dpi,75dpi,type1},
xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
xfont_font-{mutt,schumacher}-misc,
xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
xserver_xorg-server, xutil_{makedepend,util-macros}
Readded Packages: xapp_xinit
Issues resolved (http://bugs.uclibc.org):
#5054: amd64: cannot find init - due to missing /lib64 folder
2013.05-rc1, Released May 8th, 2013:
Architectures: ARC support, Blackfin support, FLAT binary
format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
Toolchains: Add new Microblaze external toolchains, Linaro
ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
internal toolchain, default to GCC 4.7.x. Internal
Crosstool-ng backend deprecated.
Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
& p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
pi, gnublin board.
FS: LZO and XZ compression methods, extra ubifs options,
ext2 rev 0/1 and ext3/4 support.
Patch handling: apply-patches now has .patch.xz support,
Patch logic reworked as discussed during Febrary dev days:
http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
<pkg>-rsync now excludes version control files.
linux: uImage load address for ARM multiplatform kernels
Infrastructure for multiple OpenGL / ES / EGL / OpenVG
providers, similar to how libjpeg / libjpeg-turbo is handled.
Infrastructure for packages to add system users.
kconfig: updated to 3.9-rc2, support make olddefconfig
Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
bash, blackbox, bind, binutils, bison, boost, bridge-utils,
busybox, ccache, cifs-utils, cmake, collectd, connman,
conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
httping, icu, inotify-tools, intltool, iproute2, ipset,
iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
mediastreamer, memtester, mesa3d,
mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
omap-u-boot-utils, openssh, openssl, openswan, openvpn,
oprofile, orc, patch, pciutils, pcre, perl, php, poco,
polarssl, proftpd, psmisc, pulseaudio, python,
python-{bottle,netifaces,serial,setuptools}, qt, quagga,
quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
speex, squid, stress, stunnel, sudo, syslinux, sysstat,
sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
xdriver_xf86-input-{tslib,vmmouse,void},
xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
xserver_xorg-server, xutil_makedepend, xz, zeromq
New packages: aircrack-ng, bcusdk, chrony, crda,
cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
iozone, jansson, jhead, jquery-keyboard, jquery-ui,
jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
qt5declarative, qt5graphicaleffects, qt5imageformats,
qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
xcursor-transparent-theme, zic, zmqpp, zyre
Removed packages: microperl, ocf-linux, xapp_xinit,
xapp_xplsprinters, xapp_xprehashprinterlist,
xfont_font-bitstream-speedo,
xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
xproto_{print,xf86rush}proto
Deprecated packages: vala
Issues resolved (http://bugs.uclibc.org):
#1291: Add support for Faraday 526 arm processor (fa526)
#2683: cups does not install correctly to target
#3313: mesa3d fails to build
#5186: initramfs/cpio should support lzo compression
#5636: agetty - cannot get controlling tty error - need updated...
#5906: collectd client headers not exported
#5966: bison unnecessarily required as build dependency
#6140: --enable-fileinfo not applied for php package
#6164: openvpn usage of ip tool from Busybox
2013.02, Released February 28th, 2013:
Misc manual updates.
Updated/fixed packages: busybox, collectd, flashbench,
libgtk2, libupnp, mii-diag, quota
2013.02-rc3, Released February 26th, 2013
Minor fixes.
Updated/fixed packages: conntrack-tools, dialog,
enlightenment, haserl, keyutils, libfif, libmad,
linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
ruby, spawn-fcgi, vtun
Issues resolved (http://bugs.uclibc.org):
#5960: fusion.ko driver does not install to target rootfs
2013.02-rc2, Released February 19th, 2013
Fixes all over the tree.
Various manual updates and fixes.
Updated/fixed packages: busybox, collectd, gesftpserver,
glib-networking, gnutls, inotify-tools, libcurl, libffi,
libglib2, libtorrent, libvorbis, neard, network-manager,
ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
Issues resolved (http://bugs.uclibc.org):
#5906: collectd client headers not exported
2013.02-rc1, Released February 10th, 2013
Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
libraries install fixed. Add Linaro ARM
2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
CodeBench MIPS 2012.03/09. Infrastructure to warn about
missing 32bit support for binary toolchains. Toolchain wrapper
is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
7.1. Deprecate uClibc 0.9.31.
Architecture: Xtensa fixes, add missing powerpc variants, arm
1136jf-s rev1, add A5/A15, neon support toggle, OABI
deprecated. Sparc: drop old unused variants
Bootloaders: At91bootstap: fix upstream URL, Barebox: add
2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
environment image support, U-Boot: add 2013.01.01
Linux: fix appended dtb handling for v3.8+ kernels, support
multiple device trees
Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
updated, at91rm9200df: misc fixes. Lock kernel headers to
match kernel.
Infrastructure: Git download fixes. Toolchain make target
renamed from 'cross' to 'toolchain'. Eclipse integration
support. Option to set root password, post image scripts,
config scripts handling.
Updated/fixed packages: alsa-lib, argp-standalone, argus,
arptables, atk, audiofile, axel, beecrypt, bind, bison,
bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
diffutils, directfb, distcc, divine, dnsmasq, docker,
dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
gadget-test, gawk, gdb, genext2fs, gettext, giblib,
glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
jquery-sparklines, jqeury-validation, kismet, kmod, lame,
libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
libedbus, libedje, libeet, libefreet, libeina, libeio,
liberation, libelementary, libembryo, libethumb, libev,
libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
libxml2, libxslt, lighttpd, links, linux-firmware,
linux-fusion, ltp-testsuite, ltrace,
lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
python, python3, qemu, qextserialport, qt, quagga, radvd,
readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
xserver_xorg-server, xstroke, xvkbd, xz
New packages: b43-firmware, b43-fwcutter, bustle,
cache-calibrator, cegui06, celt051, classpath, curlftpfs,
dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
libebml, libevas-generic-loaders, libfslcodec, libfslparser,
libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
proxychains, python-bottle, python-pyparsing, rpi-firmware,
rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
spice-protocol, tcllib, tvheadend, udisks, usbredir
ux500-firmware, vde2, xcb-utils-keysyms, yavta,
zd1211-firmware
Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
xdriver_xf86-video-{tsend,xgi,xgixp}
Deprecated packages: xstroke
Issues resolved (http://bugs.uclibc.org):
#4237: building shared openssl w/-Os fails due to gcc bug
#5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
#5602: python3 should install a "python" symbolic link
#5846: Extra slash added to last slash in URL
2012.11.1, Released January 3rd, 2013:
Toolchain: Fixed non-largefile builds on recent Ubuntu
versions.
Arch: fix missing x86/generic handling, Build for Xtensa with
longcalls option.
Updated/fixed packages: dosfstools, qt
2012.11, Released December 2nd, 2012:
Git shallow clone fix for older git version.
Updated/fixed packages: ctuio, libtool
Issues resolved (http://bugs.uclibc.org):
#5726: List all the available hook points
2012.11-rc2, Released November 30th, 2012:
Minor fixes around the tree.
Various manual updates and fixes.
Add checks for legacy features.
Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
scons, strace, sylpheed
Issues resolved (http://bugs.uclibc.org):
#5732: Error : package/alsa-lib/alsa-lib.mk
2012.11-rc1, Released November 17th, 2012
Fixes all over the tree and new features.
Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
+ nitrogen6x defconfigs.
Bootloaders: add u-boot 2012.07/10, ais target format, add
barebox 2012.08/09/10/11, linker overlap issue fix for
at91bootstrap, mxs-bootlets updated for new Barebox versions.
Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
Libtirpc support for modern glibc variants. Toolchain on
target has been deprecated.
Initial Aarch64 support, Xtensa support re-added.
Infrastructure: Use shallow git clone when possible, use
tarballs rather than git URLs for github. Moved to pkgconf
rather than pkg-config. System directory added, default
skeleton/device tables moved. More than 1 post-build script
can now be used. output/target now contains a
THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
understand how to (not) use it.
Manual has been reworked and extended.
Legal-info: Lots of package annotations, CSV file fixes,
_LICENSE / _REDISTRIBUTE splitup, per-package hooks.
Updated/fixed packages: acpid, alsa-lib, alsa-utils,
alsamixergui, attr, autoconf, automake, bash, bind, binutils,
bison, blackbox, bluez-utils, busybox, cairo, can-utils,
cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
lmbench, lockfile-progs, logrotate, lshw, lsof,
lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
python3, qemu, qextserialport, qtuio, rpcbind, schifra,
sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
yasm
Deprecated packages: netkitbase, netkittelnet
Issues resolved (http://bugs.uclibc.org):
#807: [PATCH] samba - make iconv and smbd optional
#3049: binutils have a sysroot bug in ld
#5330: update vsftpd to 3.0.0
#5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
#5666: Fails to build python 2.7.2 for 2440 arm
2012.08, Release August 31th, 2012
Updated/fixed packages: microperl, cups, luajit, rrdtool,
prboom, oprofile.
Added license information for: sqlite.
Changed the source URLs of all packages located on Sourceforge
in order to use the automatic mirror selection URL
downloads.sourceforge.net, and get rid of the
BR2_SOURCEFORGE_MIRROR option.
2012.08-rc3, Released August 25th, 2012
Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
Added license informations for: barebox, grub, syslinux,
uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
faad2, nano, fbdump, rsync, librsync, fontconfig,
inotify-tools,
2012.08-rc2, Released August 15th, 2012
Updated/fixed packages: imagemagick, sudo, crosstool-ng.
Added license informations for: mxml, nanocom, empty, expat,
lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
input-event-daemon, luajit, cgilua, copas, coxpcall,
luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
mtd, openssl, psmisc, socat, spawn-fcgi.
Fixes to Microblaze external toolchains
configuration. Improvements of the pkg-stats
script. Out-of-tree fix for the graph-depends script.
Kernel headers version bump.
2012.08-rc1, Released August 1st, 2012
Fixes all over the tree and new features.
Integration of a legal information reporting infrastructure,
which allows to generate detailed informations about the
licenses and source code of all components of a system
generated by Buildroot. License information will progressively
be added on packages.
Default configuration files added for Calao-systems USB-A9263
and Calao-systems USB-A9G20-LPW.
External toolchains update: allow download of a custom
toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
2011.09.
Allow the restriction of downloads to the primary site only.
This is useful for project developers who want to ensure that
the project can be built even if the upstream tarball
locations disappear.
Add a 'System configuration' choice to select between 3
different init systems: Busybox init, SysV init and Systemd
init.
Cleanups to the package infrastructure. The visible change to
developers is that $(eval $(call AUTOTARGETS)) is now $(eval
$(autotools-package)), and similarly for other package
infrastructures and host packages. Refer to the documentation
for details.
By default, automatic detection of the number of compilation
jobs to use, depending on the number of CPUs available.
Improvements to generate systems with static libraries only
(infrastructure and package fixes).
Add proper support in the Linux kernel package to generate
Device Tree Blobs or combined Device Tree / Kernel
images. This will be useful on Microblaze, PowerPC and ARM,
which are architectures making extensive use of the Device
Tree.
Updated/fixed packages: audiofile, autoconf, automake, axel,
barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
libfuse, libidn, libmad, libmbus, libmnl,
libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
lttng-tools, lua, m4, memtester, midori, mii-diag,
module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
openssl, pciutils, php, polarssl, portaudio, pppd,
pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
fbterm, flashrom, freerdp, inadyn, libfreefare,
libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
luajit, mediastreamer, mobile-broadband-provider-info, monit,
mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
opkg, ortp, owl-linux, python-id3, python-nfc, quota,
ramspeed, rtorrent, sound-theme-borealis,
sound-theme-freedesktop, sysprof, webrtc-audio-processing,
xinetd, zxing
Issues resolved (http://bugs.uclibc.org):
#1315: Allow use of older external toolchains without sysroot
support [won't fix]
#5276: Hiawatha needs to manage IPV6 if so [fixed]
#5360: buildroot fails when building "host-libglib2 2.30.2
Building" [won't fix, upstream problem]
#5384: Can't build packages relying on gets on newer glibc
[fixed]
2012.05, Released May 30th, 2012:
Updated/fixed packages: busybox, netsnmp, pptp-linux
2012.05-rc3, Released May 25th, 2012:
Minor fixes around the tree.
Infra: Fix for DOWNLOAD macro when using primary mirrors with
scp targets.
Toolchain: Kernel headers 3.2.18 / 3.3.7.
Updated/fixed packages: binutils, bison, busybox, cifs-utils,
gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
xserver-xorg
2012.05-rc2, Released May 18th, 2012:
Fixes all over the tree.
Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
dependency, disable decimal floats support, Linux 3.2.17 /
3.3.6 kernel headers. Fix sysroot copy handling for toolchains
without C++ support.
Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
2012.05-rc1, Released May 10th, 2012:
Fixes all over the tree and new features.
Use /etc/os-release for version info rather than
/etc/br-version.
CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
Apply-patches.sh: cleanups, archived patches handling fixes,
support series files.
Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
atngw100, use 3.3.x for qemu configs.
Menu structure: Libraries moved out of multimedia section
Atom processor support. Prescott fix, blackfin ABI fix,
Microblaze architecture support (using ext toolchain). Cleanup
architecture names, deprecate Xtensa support.
Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
default to uClibc 0.9.33.x, enable
UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
fixes for external toolchains, linaro ext toolchains, new
sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
1.15.2.
Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
support. Barebox: add 2012.04, remove 2011.12.
Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
barebox, berkeleydb, bind, bluez_utils, boost, busybox,
can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
openssh, openssl, parted, pango, pcre, php, pixman, poco,
psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
xfsprogs, zlib
New packages: apr, apr-util, audiofile, bellagio,
conntrack-tools, empty, fmtools, glib-networking,
heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
socketcand, stress, systemd, ushare, zeromq
Deprecated packages: ttcp
Removed packages: ntfsprogs
Issues resolved (http://bugs.uclibc.org):
#2353: [lua] fix build with 2010.08-rc1
#2503: Microperl fails build on MIPSel or with Fedora13.x86_64
#2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
#2881: Can't build project statically with external toolchain
#3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
#4808: ccache may build against wrong zlib
#4880: New package lcdproc
#4886: New package protobuf
#4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
#4898: * make: [target-finalize] Error 1 (ignored)*
#4985: Qt 4.7.4 build crashes with Linux 2.6.29
#4970: udev 181 fails to build if kernel version 3.3 is selected
#5018: dialog broken: exits with assert in uClibc
#5102: qt package moc, uic, rcc read from wrong place
#5144: Patch to fix ixon bug in uemacs
#5198: Line graphics output is broken in GNU Screen
#5204: Missing terminfo file(s) for GNU screen terminal type
2012.02, Released February 29th, 2012:
Updated/fixed packages: libecore
2012.02-rc3, Released February 27th, 2012:
Fixes all over the tree.
Automatic host dependencies handling for cmake packages
fixed. Customize package deprecated as using a post-build
script is nowadays the preferred way of adding extra stuff to
the rootfs.
Linux-headers 3.0.x / 3.2.x stable version bumped.
QEMU defconfigs updated to 3.2.x kernels and readme fixed.
Updated/fixed packages: dropbear, ffmpeg, libpng
2012.02-rc2, Released February 19th, 2012:
Fixes all over the tree.
Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
linux-headers 3.0.x / 3.2.x stable versions.
Documentation: Added makedev / <pkg>_DEVICES /
<pkg>_PERMISSIONS documentation.
Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
libvncserver, mxml, python.
2012.02-rc1, Released February 12th, 2012:
Fixes all over the tree and new features.
Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
support removed, Powerpc SPE ABI support. GDB ELF support fix,
GDB 7.4, crosstool-NG 1.13.4.
Gentargets: scp and mercurial support.
Autotools: derive host dependencies from target by default.
Packages can now declare device table snippets.
Host utilities menu with commonly used host tools.
defconfigs: qemu configs for x86-64, mips and sparc, at91
defconfigs now use modern U-Boot / mainline Linux, added
lpc3250 defconfigs.
uClibc: remove 0.9.30, backport unshare() support, add
0.9.32.1 / 0.9.33, use same config for ctng.
Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
bootloaders added.
Various manual updates. Release tarballs now contain generated
manual in text/html/pdf formats.
Buildroot now calls the stop function of scripts in
/etc/init.d at shutdown.
Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
python, python-serial, qt, ruby, samba, sdl, sdparm,
squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
util-linux, vala, valgrind, vsftpd, wpa_supplicant,
xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
xf86-video-sis, xfont_{encodings,font-util},
xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
xlib_libxkbfile, xterm, xutil_makedepend, yajl
New packages: boost, connman, dstat, expedite, explorercanvas,
feh, flot, giblib, igh-ethercat, imlib2, jquery,
jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
libedbus, libedje, libeet, libeina, libelementary, libesmtp,
libethumb, libevas, libical, libmbus, liboauth, liburcu,
libvncserver, linux-firmware,
lttng-{babeltrace,libust,modules,tools}, NetworkManager,
open2300, python-distutilscross, python-dpkt,
python-netifaces, python-pygame, python-setuptools, rt-tests,
sam-ba, sane-backends, sqlcipher, transmission, unionfs,
xf86-input-tslib, xinput-calibrator
Issues resolved (http://bugs.uclibc.org):
#743: Add Transmission bit torrent option to buildroot
#755: Add Boost libraries as a package
#2299: Add crypto support to libsoup
#2617: Pixman 0.19.2 & Cairo 1.10.0
#3403: libgpg-error: bump to version 1.10
#3409: libgpg-error: download from gnupg.org
#3421: nano: make tiny flag optional
#3691: New EFL packages
#4664: Cannot patch AT91Bootstrap
#4700: setlocalversion not working for combination svn/ubuntu 11.10...
#4760: Qt: add host-pkg-config to dependency-list
2011.11, Released November 30th, 2011:
Fixes all over the tree.
Bump kernel headers / default Linux version to 3.1.4.
Updated/fixed packages: ruby
2011.11-rc3, Released November 26th, 2011:
Fixes all over the tree.
Toolchain: Fix gdb dependencies for external toolchains,
adjust uClibc patches so they don't confuse modern versions of
patch, bump crosstool-ng, kernel headers and linux versions.
Updated/fixed packages: busybox, freetype, mplayer, opencv,
php, rsyslog, ruby, thttpd, xapp_xf86dga
Issues resolved (http://bugs.uclibc.org):
#4357: Prevent patch commands from accessing source control
#4369: Fix permissions on untared lsof archive
2011.11-rc2, Released November 18th, 2011:
Fixes all over the tree and new features.