-
Notifications
You must be signed in to change notification settings - Fork 14
/
CHANGES
1786 lines (1403 loc) · 68.9 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
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.
Updated asciidoc documentation
Toolchain: Bumped 3.x stable kernel headers, use wget in
crosstool-ng as well, bump crosstool-ng version, gdb fixes,
uClibc sparc fix.
Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
mplayer, newt, qt, rpm, rrdtool, tar, tftpd
Issues resolved (http://bugs.uclibc.org):
#3355: mplayer fails to build
#4021: uClibc: undefined reference to `__GI___errno_location'
#4297: Qt's qmake uses wrong pkg-config
2011.11-rc1, Released November 11th, 2011:
Fixes all over the tree and new features.
Moved misc scripts and support stuff to support/. Renamed
patch-kernel.sh to support/scripts/apply-patches.sh.
Documentation: Moved to asciidoc format, make targets to
generate text/html/pdf/epub output added.
Defconfigs: Qemu configs updated to 3.1 kernel and readmes
added.
Bootloaders: Add support for custom git tree / tarballs for
barebox, similar to how it's handled for u-boot. Clean up
menuconfig options.
Toolchain: Update external codesourcery toolchain download
URLs after Codesourcery got bought by Mentor, add x86
toolchain, update toolchain versions and optimize toolchain
sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
updated GDB versions / download URLs. Binutils
libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
use ctng-1.13.0.
Package infrastructure: Support for local packages /
overrides, package dir / name arguments dropped from
{GEN,AUTO,CMAKE}TARGETS.
Linux: Kernel extensions infrastructure support, Xenomai +
RTAI support.
Updated/fixed packages: acpid, bind, busybox, dash, dbus,
dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
libconfuse, libcuefile, libcurl, libdaemon, libevent,
libglib2, libiconv, libmpd, libreplaygain, libroxml,
libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
samba, sawman, sdl_sound, smartmontools, sqlite, squid,
stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
ngrep, noip, opencv, openocd, picocom, poco, portaudio,
pulseaudio, pv, rtai, vala, xenomai.
Removed packages: liboil, sfdisk, swfdec, webif
Issues resolved (http://bugs.uclibc.org):
#505: live555: new package
#507: Enable live and tv options in MPlayer-1.0rc2
#531: let e2fsprogs package to export headers to staging dir if needed
#1171: Linuxthreads new cannot find sysdep.h
#1357: Add bluez to buildroot system
#2107: New package: input-event-daemon
#2599: New package: orc (Oil Runtime Compiler)
#2605: gstreamer: Update to 0.10.30
#2677: introducing util-linux-ng as replacement for util-linux
#2917: Qt: Add declarative module
#3145: jffs2 image generation fails
#3271: netperf-2.4.5 fails to compile
#3331: xdata_xcursor-themes depends on xcursorgen
#3343: Add file:// download SITE_METHOD
#3391: Add support for specifying an external kernel tree
#3631: Error while compiling with Xorg
#3709: oprofile doesn't build for mipsel
#3925: midori not getting compile
#4045: Add support for downloading i386 toolchains from codesourcery
#4165: lrzsz-fix-symlink-at-rebuild.patch
#4171: makedevs-unused-but-set-variable.patch
#4183: Codesourcery toolchain download site has changed
#4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
#4381: Add option to lighttpd to enable Lua support
#4387: Make sure that dest dir exists before installing mtd files
2011.08, Released August 31th, 2011:
Fixes all over the tree.
Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
kernel headers.
Updated/fixed packages: ipset, python
2011.08-rc2, Released August 29th, 2011:
Fixes all over the tree.
Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
(broken).
Defconfigs: kernel updates, fix mini2440 serial port config,
remove old arm toolchain configs.
Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
targets similar to linux/busybox.
Updated/fixed packages: barebox, directfb, libsoup,
libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
usbmount, util-linux, xfont_font-misc-misc
Issues resolved (http://bugs.uclibc.org):
#3685: ncurses installation hangs due to old version of tic
#4093: Grub fails to install bz2 patch after conversion to...
2011.08-rc1, Released August 4th, 2011:
Fixes all over the tree and new features.
Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
ext-toolchain-wrapper improvements, improved non-MMU
support. GCC 4.3.6 / 4.6.1.
GENTARGETS infrastructure extended to cover bootloaders and
Linux kernel as well. Options to retrive Linux/U-Boot from a
custom git repo instead of upstream tarballs.
Support for Linux 3.x and release candidate tarballs.
X-Loader bootloader for omap added.
Make source/external-deps now also works for external
toolchains / crosstool-ng backend.
Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
synergy, udev, usbmount, usbutils, util-linux, valgrind,
webkit, xorg-xserver, xz, zlib
New packages: acl, attr, ebtables, gnutls, inotify-tools,
ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
statserial, stunnel, ti-utils, uboot-tools, yajl
Deprecated packages: liboil, swfdec
Removed packages: hal
Issues resolved (http://bugs.uclibc.org):
#3559: libnspr: Add new package
#3595: patch to add libroxml
#3565: libnss: Add new package
#3583: xfonts_font-adobe-100dpi fails due to missing map file
#3649: [PATCH] Add mapdir to existing pkg-config patch
#3907: 2011.05 - Qt 4.7.3 not building on ARM
#3961: Nfs-utils: Remove SUSv3-function index
#3985: "help" target's defconfig list needs sort
#3997: bump libroxml to v2.1.0
2011.05, Released May 27th, 2011:
Updated/fixed packages: makedevs
2011.05-rc2, Released May 24th, 2011:
Fixes all over the tree.
Toolchain: Code sourcery ARM 2009q1 download URL fixed /
2009q3 external toolchains added. Crosstool-NG bumped to
1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
bumped to 2.6.38.7.
Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
2011.05-rc1, Released May 18th, 2011:
Fixes all over the tree and new features.
External toolchain improvements: We now build a binary
toolchain wrapper and install it into HOST_DIR/usr/bin, which
enforces the correct compiler arguments, making an external
toolchain as easy to use outside of Buildroot as the internal
ones are. This also brought a cleanup of CFLAGS, making the
Buildroot build output easier to read.
Rootfs device handling improvements: Choice between static
/dev, devtmpfs and devtmpfs with either mdev or udev.
Toolchain: More preconfigured codesourcery external
toolchains, improved Crosstool-NG support, fix for GCC
snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
Bootloaders: U-boot 2011.03, Barebox 2011.05.0
Linux: support for custom kernel image targets, E.G. for
powerpc builds with embedded device trees.
Misc fixes for qemu defconfigs, ensuring correct serial
terminal setup out of the box.
Misc gentarget / autotools handling fixes.
Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
New packages: bonnie++, can-utils, gdisk, htop,
input-event-daemon, libexif, libraw, libv4l, ngircd
Removed packages: festival
Issues resolved (http://bugs.uclibc.org):
#2131: Add OpenMP support to the toolchain
#3379: New Package: bonnie++
#3445: Not working openssl-10.0.0d on 386sx
#3451: fakeroot package: wrong FAKEROOT_SITE variable
#3457: alsamixergui: broken URL
#3475: Calling sync on large filesystems when not always necessary
#3511: make busybox-menuconfig does not download busybox package
#3541: Quotes in the top Makefile:217 break buildroot/kernel config...
#3571: u-boot: fw_printenv does not build
#3643: popt source url is not responding
#3733: dropbear: make zlib optional
#3757: Buildroot can't build mplayer with libmad
2011.02, Released February 28th, 2011:
Fixes all over the tree.
Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
Deprecated packages: devmem2, webif
Issues resolved (http://bugs.uclibc.org):
#2911: Qt: Disable qt3support-option, if gui-module isn't selected
#3259: Unable to build webkit (on arm)
#3295: slang fails to build on mipsel
#3325: ffmpeg fails to build
2011.02-rc2, Released February 24th, 2011:
Fixes all over the tree.
Festival packages marked as broken. Unless someone steps up
to support them, they will be removed during the 2011.05
development cycle.
Updated/fixed packages: atk, avahi, bind, cairo, dbus,
enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
tcpreplay, tiff, wpa_supplicant, xcb-util,
xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
xdriver_xf86-input-{mouse,synaptics,void},
xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
xserver_xorg-server, xz
Removed packages: ace_of_penguins, vlc
Issues resolved (http://bugs.uclibc.org):
#3205: Failing chmod when running "make" in buildroot (openssl)...
#3277: quagga fails to build with SNMP support
#3283: See why nfs-utils needs fakeroot, and convert to autotools
#3307: synergy fails to build due to missing XTest library
2011.02-rc1, Released February 14th, 2011:
Fixes all over the tree and new features.
External toolchain improvements: clarification of the options,
and introduction of the toolchain profile concept, for
well-known toolchains. Buildroot is now capable of
automatically downloading and extracting well-known toolchains
(for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
toolchains are supported). Crosstool-NG backend updated and
improved.
Complete rework of how hardware boards are supported.
Each board now only has a single defconfig file, and all
board-specific options have been removed. See
docs/buildroot.html#board_support for details.
Added support for the following boards: Mini2440, Qemu ARM
Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
r2d and Qemu x86. The Qemu boards support allows to easily
build systems that are known to work under Qemu.
Initial support for Blackfin processors.
Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
preparation for support of SDK. For the same reason, the
toolchain binaries (cross-compiler and other related tools)
are now installed in $(O)/host/usr/bin/. The cross pkg-config
now also automatically returns correct values for cross
compilation, without needing any environment variables to be
set.
Ccache support reworked. Now used for both host and target
compilation, and cache is stored in ~/.buildroot-ccache.
Toolchain: uClibc 0.9.32-rc2, several components moved to
normal AUTOTARGET packages.
Generic cmake infrastructure, similar to the existing
GENTARGETS/AUTOTARGETS.
Support for bzr downloads, next to the existing git/svn support.
Kconfig infrastructure rebased against 2.6.38-rc3, bringing
misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
EXT2 file system size handling improved, UBI image support, fs
configuration options cleanup, U-Boot/Barebox version bumps.
Updated/fixed packages: alsa-utils, at, autoconf, automake,
bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
coreutils, cups, dbus, dbus-python, dhcp, directfb,
direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
libsndfile, libtheora, libtool, libusb-compat, libvorbis,
libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
xkeyboard-config, xlib_libX11, xz, zlib
New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
libffi, libhid, libreplaygain, libsamplerate, libsigc++,
lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
xl2tp, xmlstarlet
Removed packages: hotplug, l2tp, libfloat, microcom,
ng-spice-rework
Issues resolved (http://bugs.uclibc.org):
#267: The make target: cross fails because toolchain_build_...
#415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
#561: ltp-testsuite failed to install
#1447: Installing gfortran on PowerPC
#1651: Build fail caused by ccache in module-init-tools
#1681: Cross-compiled binaries shouldn't be installed into staging
#1723: [PATCH] axel: convert to generic package infrastructure and...
#1735: [PATCH] mplayer: convert to autotools infrastructure
#2551: [PATCH] native toolchain in the target filesystem fails
#2623: buildroot-snapshot-20100922 fails when compiling development...
#2647: makedevs package lacks support for 16-bit major/minor numbers
#2371: QT MYSQL Module does not build when MySQL installed on the host
#2839: compile fails in various packages with a odd message "error:...
#2887: tar "buffer overflow detected" error
#2893: Broken "make source" with external toolchain
#2905: Qt: Speed up compilation, if gui-module isn't selected
#2929: genext2fs: couldn't allocate a block (no free space)
#2935: Ntpdate isn't installed
#2965: Broken linkage to xkbcomp (blocking X server startup)
#2983: xlib_libX11 build failed
#3007: kexec doesn't build: Missing regdef.h file
#3085: Init scripts are not compatible with sysVinit (when busybox...
#3103: make external-deps wants to download gcc-.tar.bz2 when...
#3109: abnormal `make busybox-menuconfig`
#3115: How about board specific makefiles?
#3169: python patch has typo, aborts build in scenario
#3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
2010.11, Released November 30th, 2010:
Fixes all over the tree.
Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
xserver-xorg
Issues resolved (http://bugs.uclibc.org):
#2773: squid with openssl support needs openssl on the host
#2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
2010.11-rc2, Released November 25th, 2010:
Fixes all over the tree.
Add support for LEON Sparc architecture variants. Fix make
source/external-deps for host packages.
Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
sysstat, webkit, zlib
Issues resolved (http://bugs.uclibc.org):
#759: Sysstat build broken without libintl
#2479: host-module-init-tools 3.11 fails to build
#2725: Buildroot overrides kernel config
#2785: mtd-utils build fails due to missing libmtd
#2791: Added PHP-Process Control to the PHP-Package
#2797: pciutils dependencies on zlib not taken into account
#2809: failed to compile libglib2
#2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
#2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
#2833: Failed to compile webkit without X11
2010.11-rc1, Released November 8th, 2010:
Fixes all over the tree and new features.
Kconfig infrastructure rebased against 2.6.36-rc1, bringing
misc fixes + nconfig and savedefconfig targets.
Toolchain: ARM cortex A9 support, experimental crosstool-ng
backend, GCC 4.5.x.
Fs: Squashfs 4.1 with lzo support
Old-style package hooks (*_HOOK_POST_*) removed. Use the more
generic new-style ones instead.
Download handling reworked and support for git/svn downloads
added.
Removed experimental shared config.cache support, as it is
too unreliable.
A convenience Makefile wrapper is created when using
out-of-tree building, similar to how it is done for the kernel.
Alpha, Cris, IA64 and Sparc64 architecture support removed.
New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,