diff --git a/src/native/Qml.Net.Bindings/Qml.Net.Bindings.props b/src/native/Qml.Net.Bindings/Qml.Net.Bindings.props
index 1316a1c9..35e639e8 100644
--- a/src/native/Qml.Net.Bindings/Qml.Net.Bindings.props
+++ b/src/native/Qml.Net.Bindings/Qml.Net.Bindings.props
@@ -1,27 +1,64 @@
- $(MSBuildProjectDirectory)/bin/buildroot-output
- $(MSBuildProjectDirectory)/../../buildroot-2019.02
+ $(MSBuildProjectDirectory)/bin/buildroot-2019.02
false
true
netstandard2.0
+
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -30,7 +67,10 @@
-
+
diff --git a/src/native/buildroot-2019.02/.defconfig b/src/native/buildroot-2019.02/.defconfig
deleted file mode 100644
index 7ab0c3fb..00000000
--- a/src/native/buildroot-2019.02/.defconfig
+++ /dev/null
@@ -1,51 +0,0 @@
-#
-# Automatically generated make config: don't edit
-# Mon Feb 18 09:11:56 2008
-#
-BR2_HAVE_DOT_CONFIG=y
-# BR2_alpha is not set
-# BR2_arm is not set
-# BR2_armeb is not set
-# BR2_cris is not set
-# BR2_ia64 is not set
-BR2_i386=y
-# BR2_m68k is not set
-# BR2_mips is not set
-# BR2_mipsel is not set
-# BR2_nios2 is not set
-# BR2_powerpc is not set
-# BR2_sh is not set
-# BR2_sparc is not set
-# BR2_sparc64 is not set
-# BR2_x86_64 is not set
-# BR2_x86_i486 is not set
-# BR2_x86_i586 is not set
-BR2_x86_i686=y
-# BR2_x86_pentiumpro is not set
-# BR2_x86_pentium_mmx is not set
-# BR2_x86_pentium_m is not set
-# BR2_x86_pentium2 is not set
-# BR2_x86_pentium3 is not set
-# BR2_x86_pentium4 is not set
-# BR2_x86_prescott is not set
-# BR2_x86_nocona is not set
-# BR2_x86_core2 is not set
-# BR2_x86_k6 is not set
-# BR2_x86_k6_2 is not set
-# BR2_x86_athlon is not set
-# BR2_x86_athlon_4 is not set
-# BR2_x86_opteron is not set
-# BR2_x86_opteron_sse3 is not set
-# BR2_x86_barcelona is not set
-# BR2_x86_geode is not set
-# BR2_x86_c3 is not set
-# BR2_x86_winchip_c6 is not set
-# BR2_x86_winchip2 is not set
-BR2_ARCH="i686"
-BR2_ENDIAN="LITTLE"
-BR2_GCC_TARGET_TUNE="i686"
-BR2_GCC_TARGET_ARCH="i686"
-
-#
-# Target options
-#
diff --git a/src/native/buildroot-2019.02/.flake8 b/src/native/buildroot-2019.02/.flake8
deleted file mode 100644
index 7dd7b541..00000000
--- a/src/native/buildroot-2019.02/.flake8
+++ /dev/null
@@ -1,5 +0,0 @@
-[flake8]
-exclude=
- # copied from the kernel sources
- utils/diffconfig
-max-line-length=132
diff --git a/src/native/buildroot-2019.02/.gitignore b/src/native/buildroot-2019.02/.gitignore
deleted file mode 100644
index bb02d9f5..00000000
--- a/src/native/buildroot-2019.02/.gitignore
+++ /dev/null
@@ -1,15 +0,0 @@
-/output
-/dl
-/.auto.deps
-/.config.cmd
-/.config.old
-/..config.tmp
-/.config
-*.depend
-*.o
-/*.patch
-/*.diff
-*.orig
-*.rej
-*~
-*.pyc
diff --git a/src/native/buildroot-2019.02/.gitlab-ci.yml b/src/native/buildroot-2019.02/.gitlab-ci.yml
deleted file mode 100644
index c373d4a7..00000000
--- a/src/native/buildroot-2019.02/.gitlab-ci.yml
+++ /dev/null
@@ -1,397 +0,0 @@
-# Configuration for Gitlab-CI.
-# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
-# The .gitlab-ci.yml file is generated from .gitlab-ci.yml.in.
-# It needs to be regenerated every time a defconfig is added, using
-# "make .gitlab-ci.yml".
-
-image: buildroot/base:20180318.1724
-
-.defconfig_script:
- script:
- - echo 'Configure Buildroot'
- - make ${CI_JOB_NAME}
- - echo 'Build buildroot'
- - |
- make > >(tee build.log |grep '>>>') 2>&1 || {
- echo 'Failed build last output'
- tail -200 build.log
- exit 1
- }
-
-check-gitlab-ci.yml:
- script:
- - mv .gitlab-ci.yml .gitlab-ci.yml.orig
- - make .gitlab-ci.yml
- - diff -u .gitlab-ci.yml.orig .gitlab-ci.yml
-
-check-DEVELOPERS:
- # get-developers should print just "No action specified"; if it prints
- # anything else, it's a parse error.
- # The initial ! is removed by YAML so we need to quote it.
- script:
- - "! utils/get-developers | grep -v 'No action specified'"
-
-check-flake8:
- before_script:
- # Help flake8 to find the Python files without .py extension.
- - find * -type f -name '*.py' > files.txt
- - find * -type f -print0 | xargs -0 file | grep 'Python script' | cut -d':' -f1 >> files.txt
- - sort -u files.txt | tee files.processed
- script:
- - python -m flake8 --statistics --count $(cat files.processed)
- after_script:
- - wc -l files.processed
-
-check-package:
- script:
- - make check-package
-
-.defconfig:
- extends: .defconfig_script
- # Running the defconfigs for every push is too much, so limit to
- # explicit triggers through the API.
- only:
- - triggers
- - tags
- - /-defconfigs$/
- artifacts:
- when: always
- expire_in: 2 weeks
- paths:
- - .config
- - build.log
- - output/images/
- - output/build/build-time.log
- - output/build/packages-file-list.txt
- - output/build/*/.config
-
-.runtime_test:
- # Running the runtime tests for every push is too much, so limit to
- # explicit triggers through the API.
- only:
- - triggers
- - tags
- - /-runtime-tests$/
- # Keep build directories so the rootfs can be an artifact of the job. The
- # runner will clean up those files for us.
- # Multiply every emulator timeout by 10 to avoid sporadic failures in
- # elastic runners.
- script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_JOB_NAME}
- artifacts:
- when: always
- expire_in: 2 weeks
- paths:
- - test-output/*.log
- - test-output/*/.config
- - test-output/*/images/*
-aarch64_efi_defconfig: { extends: .defconfig }
-acmesystems_aria_g25_128mb_defconfig: { extends: .defconfig }
-acmesystems_aria_g25_256mb_defconfig: { extends: .defconfig }
-acmesystems_arietta_g25_128mb_defconfig: { extends: .defconfig }
-acmesystems_arietta_g25_256mb_defconfig: { extends: .defconfig }
-amarula_a64_relic_defconfig: { extends: .defconfig }
-amarula_vyasa_rk3288_defconfig: { extends: .defconfig }
-arcturus_ucls1012a_defconfig: { extends: .defconfig }
-arcturus_ucp1020_defconfig: { extends: .defconfig }
-arm_foundationv8_defconfig: { extends: .defconfig }
-arm_juno_defconfig: { extends: .defconfig }
-armadeus_apf27_defconfig: { extends: .defconfig }
-armadeus_apf28_defconfig: { extends: .defconfig }
-armadeus_apf51_defconfig: { extends: .defconfig }
-asus_tinker_rk3288_defconfig: { extends: .defconfig }
-at91sam9260eknf_defconfig: { extends: .defconfig }
-at91sam9g20dfc_defconfig: { extends: .defconfig }
-at91sam9g45m10ek_defconfig: { extends: .defconfig }
-at91sam9rlek_defconfig: { extends: .defconfig }
-at91sam9x5ek_defconfig: { extends: .defconfig }
-at91sam9x5ek_dev_defconfig: { extends: .defconfig }
-at91sam9x5ek_mmc_defconfig: { extends: .defconfig }
-at91sam9x5ek_mmc_dev_defconfig: { extends: .defconfig }
-atmel_sama5d27_som1_ek_mmc_dev_defconfig: { extends: .defconfig }
-atmel_sama5d2_xplained_mmc_defconfig: { extends: .defconfig }
-atmel_sama5d2_xplained_mmc_dev_defconfig: { extends: .defconfig }
-atmel_sama5d3_xplained_defconfig: { extends: .defconfig }
-atmel_sama5d3_xplained_dev_defconfig: { extends: .defconfig }
-atmel_sama5d3_xplained_mmc_defconfig: { extends: .defconfig }
-atmel_sama5d3_xplained_mmc_dev_defconfig: { extends: .defconfig }
-atmel_sama5d3xek_defconfig: { extends: .defconfig }
-atmel_sama5d4_xplained_defconfig: { extends: .defconfig }
-atmel_sama5d4_xplained_dev_defconfig: { extends: .defconfig }
-atmel_sama5d4_xplained_mmc_defconfig: { extends: .defconfig }
-atmel_sama5d4_xplained_mmc_dev_defconfig: { extends: .defconfig }
-bananapi_m1_defconfig: { extends: .defconfig }
-bananapi_m2_plus_defconfig: { extends: .defconfig }
-bananapi_m2_ultra_defconfig: { extends: .defconfig }
-bananapi_m64_defconfig: { extends: .defconfig }
-bananapro_defconfig: { extends: .defconfig }
-beagleboardx15_defconfig: { extends: .defconfig }
-beaglebone_defconfig: { extends: .defconfig }
-beaglebone_qt5_defconfig: { extends: .defconfig }
-chromebook_snow_defconfig: { extends: .defconfig }
-ci20_defconfig: { extends: .defconfig }
-csky_gx6605s_defconfig: { extends: .defconfig }
-cubieboard2_defconfig: { extends: .defconfig }
-engicam_imx6qdl_icore_defconfig: { extends: .defconfig }
-engicam_imx6qdl_icore_qt5_defconfig: { extends: .defconfig }
-engicam_imx6qdl_icore_rqs_defconfig: { extends: .defconfig }
-engicam_imx6ul_geam_defconfig: { extends: .defconfig }
-engicam_imx6ul_isiot_defconfig: { extends: .defconfig }
-freescale_imx28evk_defconfig: { extends: .defconfig }
-freescale_imx6dlsabreauto_defconfig: { extends: .defconfig }
-freescale_imx6dlsabresd_defconfig: { extends: .defconfig }
-freescale_imx6qsabreauto_defconfig: { extends: .defconfig }
-freescale_imx6qsabresd_defconfig: { extends: .defconfig }
-freescale_imx6sxsabresd_defconfig: { extends: .defconfig }
-freescale_imx7dsabresd_defconfig: { extends: .defconfig }
-freescale_imx8mqevk_defconfig: { extends: .defconfig }
-freescale_p1025twr_defconfig: { extends: .defconfig }
-freescale_t1040d4rdb_defconfig: { extends: .defconfig }
-friendlyarm_nanopi_a64_defconfig: { extends: .defconfig }
-friendlyarm_nanopi_neo2_defconfig: { extends: .defconfig }
-galileo_defconfig: { extends: .defconfig }
-grinn_chiliboard_defconfig: { extends: .defconfig }
-grinn_liteboard_defconfig: { extends: .defconfig }
-imx23evk_defconfig: { extends: .defconfig }
-imx6-sabreauto_defconfig: { extends: .defconfig }
-imx6-sabresd_defconfig: { extends: .defconfig }
-imx6-sabresd_qt5_defconfig: { extends: .defconfig }
-imx6slevk_defconfig: { extends: .defconfig }
-imx6sx-sdb_defconfig: { extends: .defconfig }
-imx6ulevk_defconfig: { extends: .defconfig }
-imx6ulpico_defconfig: { extends: .defconfig }
-imx7d-sdb_defconfig: { extends: .defconfig }
-imx7dpico_defconfig: { extends: .defconfig }
-lego_ev3_defconfig: { extends: .defconfig }
-linksprite_pcduino_defconfig: { extends: .defconfig }
-minnowboard_max-graphical_defconfig: { extends: .defconfig }
-minnowboard_max_defconfig: { extends: .defconfig }
-mx25pdk_defconfig: { extends: .defconfig }
-mx51evk_defconfig: { extends: .defconfig }
-mx53loco_defconfig: { extends: .defconfig }
-mx6cubox_defconfig: { extends: .defconfig }
-mx6sx_udoo_neo_defconfig: { extends: .defconfig }
-mx6udoo_defconfig: { extends: .defconfig }
-nanopi_m1_defconfig: { extends: .defconfig }
-nanopi_m1_plus_defconfig: { extends: .defconfig }
-nanopi_neo_defconfig: { extends: .defconfig }
-nexbox_a95x_defconfig: { extends: .defconfig }
-nitrogen6sx_defconfig: { extends: .defconfig }
-nitrogen6x_defconfig: { extends: .defconfig }
-nitrogen7_defconfig: { extends: .defconfig }
-nitrogen8m_defconfig: { extends: .defconfig }
-odroidc2_defconfig: { extends: .defconfig }
-odroidxu4_defconfig: { extends: .defconfig }
-olimex_a10_olinuxino_lime_defconfig: { extends: .defconfig }
-olimex_a13_olinuxino_defconfig: { extends: .defconfig }
-olimex_a20_olinuxino_lime2_defconfig: { extends: .defconfig }
-olimex_a20_olinuxino_lime_defconfig: { extends: .defconfig }
-olimex_a20_olinuxino_lime_legacy_defconfig: { extends: .defconfig }
-olimex_a20_olinuxino_micro_defconfig: { extends: .defconfig }
-olimex_a64_olinuxino_defconfig: { extends: .defconfig }
-olimex_imx233_olinuxino_defconfig: { extends: .defconfig }
-openblocks_a6_defconfig: { extends: .defconfig }
-orangepi_lite2_defconfig: { extends: .defconfig }
-orangepi_lite_defconfig: { extends: .defconfig }
-orangepi_one_defconfig: { extends: .defconfig }
-orangepi_one_plus_defconfig: { extends: .defconfig }
-orangepi_pc2_defconfig: { extends: .defconfig }
-orangepi_pc_defconfig: { extends: .defconfig }
-orangepi_pc_plus_defconfig: { extends: .defconfig }
-orangepi_plus_defconfig: { extends: .defconfig }
-orangepi_prime_defconfig: { extends: .defconfig }
-orangepi_win_defconfig: { extends: .defconfig }
-orangepi_zero_defconfig: { extends: .defconfig }
-orangepi_zero_plus2_defconfig: { extends: .defconfig }
-pandaboard_defconfig: { extends: .defconfig }
-pc_x86_64_bios_defconfig: { extends: .defconfig }
-pc_x86_64_efi_defconfig: { extends: .defconfig }
-pine64_defconfig: { extends: .defconfig }
-pine64_sopine_defconfig: { extends: .defconfig }
-qemu_aarch64_virt_defconfig: { extends: .defconfig }
-qemu_arm_versatile_defconfig: { extends: .defconfig }
-qemu_arm_versatile_nommu_defconfig: { extends: .defconfig }
-qemu_arm_vexpress_defconfig: { extends: .defconfig }
-qemu_m68k_mcf5208_defconfig: { extends: .defconfig }
-qemu_m68k_q800_defconfig: { extends: .defconfig }
-qemu_microblazebe_mmu_defconfig: { extends: .defconfig }
-qemu_microblazeel_mmu_defconfig: { extends: .defconfig }
-qemu_mips32r2_malta_defconfig: { extends: .defconfig }
-qemu_mips32r2el_malta_defconfig: { extends: .defconfig }
-qemu_mips32r6_malta_defconfig: { extends: .defconfig }
-qemu_mips32r6el_malta_defconfig: { extends: .defconfig }
-qemu_mips64_malta_defconfig: { extends: .defconfig }
-qemu_mips64el_malta_defconfig: { extends: .defconfig }
-qemu_mips64r6_malta_defconfig: { extends: .defconfig }
-qemu_mips64r6el_malta_defconfig: { extends: .defconfig }
-qemu_nios2_10m50_defconfig: { extends: .defconfig }
-qemu_or1k_defconfig: { extends: .defconfig }
-qemu_ppc64_e5500_defconfig: { extends: .defconfig }
-qemu_ppc64_pseries_defconfig: { extends: .defconfig }
-qemu_ppc64le_pseries_defconfig: { extends: .defconfig }
-qemu_ppc_g3beige_defconfig: { extends: .defconfig }
-qemu_ppc_mpc8544ds_defconfig: { extends: .defconfig }
-qemu_ppc_virtex_ml507_defconfig: { extends: .defconfig }
-qemu_riscv32_virt_defconfig: { extends: .defconfig }
-qemu_riscv64_virt_defconfig: { extends: .defconfig }
-qemu_sh4_r2d_defconfig: { extends: .defconfig }
-qemu_sh4eb_r2d_defconfig: { extends: .defconfig }
-qemu_sparc64_sun4u_defconfig: { extends: .defconfig }
-qemu_sparc_ss10_defconfig: { extends: .defconfig }
-qemu_x86_64_defconfig: { extends: .defconfig }
-qemu_x86_defconfig: { extends: .defconfig }
-qemu_xtensa_lx60_defconfig: { extends: .defconfig }
-qemu_xtensa_lx60_nommu_defconfig: { extends: .defconfig }
-raspberrypi0_defconfig: { extends: .defconfig }
-raspberrypi0w_defconfig: { extends: .defconfig }
-raspberrypi2_defconfig: { extends: .defconfig }
-raspberrypi3_64_defconfig: { extends: .defconfig }
-raspberrypi3_defconfig: { extends: .defconfig }
-raspberrypi3_qt5we_defconfig: { extends: .defconfig }
-raspberrypi_defconfig: { extends: .defconfig }
-riotboard_defconfig: { extends: .defconfig }
-rock64_defconfig: { extends: .defconfig }
-roseapplepi_defconfig: { extends: .defconfig }
-s6lx9_microboard_defconfig: { extends: .defconfig }
-sheevaplug_defconfig: { extends: .defconfig }
-snps_aarch64_vdk_defconfig: { extends: .defconfig }
-snps_arc700_axs101_defconfig: { extends: .defconfig }
-snps_archs38_axs103_defconfig: { extends: .defconfig }
-snps_archs38_haps_defconfig: { extends: .defconfig }
-snps_archs38_hsdk_defconfig: { extends: .defconfig }
-snps_archs38_vdk_defconfig: { extends: .defconfig }
-socrates_cyclone5_defconfig: { extends: .defconfig }
-solidrun_clearfog_defconfig: { extends: .defconfig }
-solidrun_macchiatobin_mainline_defconfig: { extends: .defconfig }
-solidrun_macchiatobin_marvell_defconfig: { extends: .defconfig }
-stm32f429_disco_defconfig: { extends: .defconfig }
-stm32f469_disco_defconfig: { extends: .defconfig }
-toradex_apalis_imx6_defconfig: { extends: .defconfig }
-ts4800_defconfig: { extends: .defconfig }
-ts4900_defconfig: { extends: .defconfig }
-ts5500_defconfig: { extends: .defconfig }
-ts7680_defconfig: { extends: .defconfig }
-wandboard_defconfig: { extends: .defconfig }
-warp7_defconfig: { extends: .defconfig }
-warpboard_defconfig: { extends: .defconfig }
-zynq_microzed_defconfig: { extends: .defconfig }
-zynq_zc706_defconfig: { extends: .defconfig }
-zynq_zed_defconfig: { extends: .defconfig }
-zynqmp_zcu106_defconfig: { extends: .defconfig }
-tests.boot.test_atf.TestATFAllwinner: { extends: .runtime_test }
-tests.boot.test_atf.TestATFMarvell: { extends: .runtime_test }
-tests.boot.test_atf.TestATFVexpress: { extends: .runtime_test }
-tests.core.test_file_capabilities.TestFileCapabilities: { extends: .runtime_test }
-tests.core.test_hardening.TestFortifyConserv: { extends: .runtime_test }
-tests.core.test_hardening.TestFortifyNone: { extends: .runtime_test }
-tests.core.test_hardening.TestRelro: { extends: .runtime_test }
-tests.core.test_hardening.TestRelroPartial: { extends: .runtime_test }
-tests.core.test_hardening.TestSspNone: { extends: .runtime_test }
-tests.core.test_hardening.TestSspStrong: { extends: .runtime_test }
-tests.core.test_post_scripts.TestPostScripts: { extends: .runtime_test }
-tests.core.test_rootfs_overlay.TestRootfsOverlay: { extends: .runtime_test }
-tests.core.test_timezone.TestGlibcAllTimezone: { extends: .runtime_test }
-tests.core.test_timezone.TestGlibcNonDefaultLimitedTimezone: { extends: .runtime_test }
-tests.core.test_timezone.TestNoTimezone: { extends: .runtime_test }
-tests.download.test_git.TestGitHash: { extends: .runtime_test }
-tests.download.test_git.TestGitRefs: { extends: .runtime_test }
-tests.fs.test_ext.TestExt2: { extends: .runtime_test }
-tests.fs.test_ext.TestExt2r1: { extends: .runtime_test }
-tests.fs.test_ext.TestExt3: { extends: .runtime_test }
-tests.fs.test_ext.TestExt4: { extends: .runtime_test }
-tests.fs.test_f2fs.TestF2FS: { extends: .runtime_test }
-tests.fs.test_iso9660.TestIso9660Grub2External: { extends: .runtime_test }
-tests.fs.test_iso9660.TestIso9660Grub2ExternalCompress: { extends: .runtime_test }
-tests.fs.test_iso9660.TestIso9660Grub2Internal: { extends: .runtime_test }
-tests.fs.test_iso9660.TestIso9660SyslinuxExternal: { extends: .runtime_test }
-tests.fs.test_iso9660.TestIso9660SyslinuxExternalCompress: { extends: .runtime_test }
-tests.fs.test_iso9660.TestIso9660SyslinuxInternal: { extends: .runtime_test }
-tests.fs.test_jffs2.TestJffs2: { extends: .runtime_test }
-tests.fs.test_squashfs.TestSquashfs: { extends: .runtime_test }
-tests.fs.test_ubi.TestUbi: { extends: .runtime_test }
-tests.fs.test_yaffs2.TestYaffs2: { extends: .runtime_test }
-tests.init.test_busybox.TestInitSystemBusyboxRo: { extends: .runtime_test }
-tests.init.test_busybox.TestInitSystemBusyboxRoNet: { extends: .runtime_test }
-tests.init.test_busybox.TestInitSystemBusyboxRw: { extends: .runtime_test }
-tests.init.test_busybox.TestInitSystemBusyboxRwNet: { extends: .runtime_test }
-tests.init.test_none.TestInitSystemNone: { extends: .runtime_test }
-tests.init.test_systemd.TestInitSystemSystemdRoFull: { extends: .runtime_test }
-tests.init.test_systemd.TestInitSystemSystemdRoIfupdown: { extends: .runtime_test }
-tests.init.test_systemd.TestInitSystemSystemdRoNetworkd: { extends: .runtime_test }
-tests.init.test_systemd.TestInitSystemSystemdRwFull: { extends: .runtime_test }
-tests.init.test_systemd.TestInitSystemSystemdRwIfupdown: { extends: .runtime_test }
-tests.init.test_systemd.TestInitSystemSystemdRwNetworkd: { extends: .runtime_test }
-tests.package.test_atop.TestAtop: { extends: .runtime_test }
-tests.package.test_docker_compose.TestDockerCompose: { extends: .runtime_test }
-tests.package.test_dropbear.TestDropbear: { extends: .runtime_test }
-tests.package.test_ipython.TestIPythonPy2: { extends: .runtime_test }
-tests.package.test_ipython.TestIPythonPy3: { extends: .runtime_test }
-tests.package.test_lua.TestLua: { extends: .runtime_test }
-tests.package.test_lua.TestLuajit: { extends: .runtime_test }
-tests.package.test_perl.TestPerl: { extends: .runtime_test }
-tests.package.test_perl_class_load.TestPerlClassLoad: { extends: .runtime_test }
-tests.package.test_perl_dbd_mysql.TestPerlDBDmysql: { extends: .runtime_test }
-tests.package.test_perl_encode_detect.TestPerlEncodeDetect: { extends: .runtime_test }
-tests.package.test_perl_gdgraph.TestPerlGDGraph: { extends: .runtime_test }
-tests.package.test_perl_io_socket_multicast.TestPerlIOSocketMulticast: { extends: .runtime_test }
-tests.package.test_perl_io_socket_ssl.TestPerlIOSocketSSL: { extends: .runtime_test }
-tests.package.test_perl_libwww_perl.TestPerllibwwwperl: { extends: .runtime_test }
-tests.package.test_perl_mail_dkim.TestPerlMailDKIM: { extends: .runtime_test }
-tests.package.test_perl_x10.TestPerlX10: { extends: .runtime_test }
-tests.package.test_perl_xml_libxml.TestPerlXMLLibXML: { extends: .runtime_test }
-tests.package.test_prosody.TestProsodyLua51: { extends: .runtime_test }
-tests.package.test_prosody.TestProsodyLuajit: { extends: .runtime_test }
-tests.package.test_python.TestPython2: { extends: .runtime_test }
-tests.package.test_python.TestPython3: { extends: .runtime_test }
-tests.package.test_python_argh.TestPythonPy2Argh: { extends: .runtime_test }
-tests.package.test_python_argh.TestPythonPy3Argh: { extends: .runtime_test }
-tests.package.test_python_attrs.TestPythonPy2Attrs: { extends: .runtime_test }
-tests.package.test_python_attrs.TestPythonPy3Attrs: { extends: .runtime_test }
-tests.package.test_python_autobahn.TestPythonPy2Autobahn: { extends: .runtime_test }
-tests.package.test_python_autobahn.TestPythonPy3Autobahn: { extends: .runtime_test }
-tests.package.test_python_automat.TestPythonPy2Automat: { extends: .runtime_test }
-tests.package.test_python_automat.TestPythonPy3Automat: { extends: .runtime_test }
-tests.package.test_python_bitstring.TestPythonPy2Bitstring: { extends: .runtime_test }
-tests.package.test_python_bitstring.TestPythonPy3Bitstring: { extends: .runtime_test }
-tests.package.test_python_cbor.TestPythonPy2Cbor: { extends: .runtime_test }
-tests.package.test_python_cbor.TestPythonPy3Cbor: { extends: .runtime_test }
-tests.package.test_python_click.TestPythonPy2Click: { extends: .runtime_test }
-tests.package.test_python_click.TestPythonPy3Click: { extends: .runtime_test }
-tests.package.test_python_constantly.TestPythonPy2Constantly: { extends: .runtime_test }
-tests.package.test_python_constantly.TestPythonPy3Constantly: { extends: .runtime_test }
-tests.package.test_python_crossbar.TestPythonPy3Crossbar: { extends: .runtime_test }
-tests.package.test_python_cryptography.TestPythonPy2Cryptography: { extends: .runtime_test }
-tests.package.test_python_cryptography.TestPythonPy3Cryptography: { extends: .runtime_test }
-tests.package.test_python_incremental.TestPythonPy2Incremental: { extends: .runtime_test }
-tests.package.test_python_incremental.TestPythonPy3Incremental: { extends: .runtime_test }
-tests.package.test_python_passlib.TestPythonPy2Passlib: { extends: .runtime_test }
-tests.package.test_python_passlib.TestPythonPy3Passlib: { extends: .runtime_test }
-tests.package.test_python_pexpect.TestPythonPy2Pexpect: { extends: .runtime_test }
-tests.package.test_python_pexpect.TestPythonPy3Pexpect: { extends: .runtime_test }
-tests.package.test_python_pynacl.TestPythonPy2Pynacl: { extends: .runtime_test }
-tests.package.test_python_pynacl.TestPythonPy3Pynacl: { extends: .runtime_test }
-tests.package.test_python_pyyaml.TestPythonPy2Pyyaml: { extends: .runtime_test }
-tests.package.test_python_pyyaml.TestPythonPy3Pyyaml: { extends: .runtime_test }
-tests.package.test_python_service_identity.TestPythonPy2ServiceIdentity: { extends: .runtime_test }
-tests.package.test_python_service_identity.TestPythonPy3ServiceIdentity: { extends: .runtime_test }
-tests.package.test_python_subprocess32.TestPythonPy2Subprocess32: { extends: .runtime_test }
-tests.package.test_python_treq.TestPythonPy2Treq: { extends: .runtime_test }
-tests.package.test_python_treq.TestPythonPy3Treq: { extends: .runtime_test }
-tests.package.test_python_twisted.TestPythonPy2Twisted: { extends: .runtime_test }
-tests.package.test_python_twisted.TestPythonPy3Twisted: { extends: .runtime_test }
-tests.package.test_python_txaio.TestPythonPy2Txaio: { extends: .runtime_test }
-tests.package.test_python_txaio.TestPythonPy3Txaio: { extends: .runtime_test }
-tests.package.test_python_txtorcon.TestPythonPy2Txtorcon: { extends: .runtime_test }
-tests.package.test_python_txtorcon.TestPythonPy3Txtorcon: { extends: .runtime_test }
-tests.package.test_python_ubjson.TestPythonPy2Ubjson: { extends: .runtime_test }
-tests.package.test_python_ubjson.TestPythonPy3Ubjson: { extends: .runtime_test }
-tests.package.test_rust.TestRust: { extends: .runtime_test }
-tests.package.test_rust.TestRustBin: { extends: .runtime_test }
-tests.package.test_syslog_ng.TestSyslogNg: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainCCache: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainCtngMusl: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainLinaroArm: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainSourceryArmv4: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainSourceryArmv5: { extends: .runtime_test }
-tests.toolchain.test_external.TestExternalToolchainSourceryArmv7: { extends: .runtime_test }
diff --git a/src/native/buildroot-2019.02/.gitlab-ci.yml.in b/src/native/buildroot-2019.02/.gitlab-ci.yml.in
deleted file mode 100644
index a5068408..00000000
--- a/src/native/buildroot-2019.02/.gitlab-ci.yml.in
+++ /dev/null
@@ -1,86 +0,0 @@
-# Configuration for Gitlab-CI.
-# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
-# The .gitlab-ci.yml file is generated from .gitlab-ci.yml.in.
-# It needs to be regenerated every time a defconfig is added, using
-# "make .gitlab-ci.yml".
-
-image: buildroot/base:20180318.1724
-
-.defconfig_script:
- script:
- - echo 'Configure Buildroot'
- - make ${CI_JOB_NAME}
- - echo 'Build buildroot'
- - |
- make > >(tee build.log |grep '>>>') 2>&1 || {
- echo 'Failed build last output'
- tail -200 build.log
- exit 1
- }
-
-check-gitlab-ci.yml:
- script:
- - mv .gitlab-ci.yml .gitlab-ci.yml.orig
- - make .gitlab-ci.yml
- - diff -u .gitlab-ci.yml.orig .gitlab-ci.yml
-
-check-DEVELOPERS:
- # get-developers should print just "No action specified"; if it prints
- # anything else, it's a parse error.
- # The initial ! is removed by YAML so we need to quote it.
- script:
- - "! utils/get-developers | grep -v 'No action specified'"
-
-check-flake8:
- before_script:
- # Help flake8 to find the Python files without .py extension.
- - find * -type f -name '*.py' > files.txt
- - find * -type f -print0 | xargs -0 file | grep 'Python script' | cut -d':' -f1 >> files.txt
- - sort -u files.txt | tee files.processed
- script:
- - python -m flake8 --statistics --count $(cat files.processed)
- after_script:
- - wc -l files.processed
-
-check-package:
- script:
- - make check-package
-
-.defconfig:
- extends: .defconfig_script
- # Running the defconfigs for every push is too much, so limit to
- # explicit triggers through the API.
- only:
- - triggers
- - tags
- - /-defconfigs$/
- artifacts:
- when: always
- expire_in: 2 weeks
- paths:
- - .config
- - build.log
- - output/images/
- - output/build/build-time.log
- - output/build/packages-file-list.txt
- - output/build/*/.config
-
-.runtime_test:
- # Running the runtime tests for every push is too much, so limit to
- # explicit triggers through the API.
- only:
- - triggers
- - tags
- - /-runtime-tests$/
- # Keep build directories so the rootfs can be an artifact of the job. The
- # runner will clean up those files for us.
- # Multiply every emulator timeout by 10 to avoid sporadic failures in
- # elastic runners.
- script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_JOB_NAME}
- artifacts:
- when: always
- expire_in: 2 weeks
- paths:
- - test-output/*.log
- - test-output/*/.config
- - test-output/*/images/*
diff --git a/src/native/buildroot-2019.02/CHANGES b/src/native/buildroot-2019.02/CHANGES
deleted file mode 100644
index 365d2bbe..00000000
--- a/src/native/buildroot-2019.02/CHANGES
+++ /dev/null
@@ -1,7748 +0,0 @@
-2019.02, released March 4th, 2019
-
- Minor fixes.
-
- Libressl support added for Qt 5.6 as a replacement for
- openssl, as 5.6 is not compatible with openssl 1.1.x.
-
- Updated/fixed packages: cutelyst, devmem2, gqrx,
- gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
-
-2019.02-rc3, released March 1st, 2019
-
- Fixes all over the tree.
-
- Openssl support dropped from Qt 5.6, as it isn't compatible
- with openssl 1.1.x.
-
- Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
- issues.
-
- Dependencies: Require CMake 3.8 or newer to fix compilation
- issue with certain packages. If not available, host-cmake will
- instead be built.
-
- Printvars: Fix performance regression since 2018.02
-
- Scanypi: Correctly handle underscores in python package names.
-
- Updated/fixed packages: botan, clamav, cryptopp, i2pd,
- ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
- luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
- upmpdcli, zbar
-
- Issues resolved (http://bugs.uclibc.org):
-
- #9966: util-linux-2.30/.stamp_built' failed
- #11696: possible typo in board/pc/post-build.sh
-
-2019.02-rc2, released February 23th, 2019
-
- Fixes all over the tree.
-
- Removed zynq_zybo defconfig, as it hasn't seen any update
- since it was added in 2016, and uses a U-Boot version not
- compatible with openssl-1.1.x.
-
- Linux: Ignore user supplied downloadable hashes, as no hash
- checksums are available for those.
-
- Updated/fixed packages: bind, cryptopp, docker-containerd,
- dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
- libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
- madplay, mender, mosquitto, poco, postgresql, proftpd,
- pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
- reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
- tor, unzip, xenomai
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11501: compile sdl2 with enable wayland
- #11681: .. unable to initialize decompress status for section..
-
-2019.02-rc1, released February 13th, 2019
-
- Fixes all over the tree and new features.
-
-
- Dependencies:
-
- Require Python >= 2.7 as it is needed for E.G. building
- libglib2.
-
- Ensure GNU gzip is used for reproducible tarballs (instead of
- pigz)
-
-
- Infrastucture:
-
- Ensure the PLATFORM and OS environment variables are not set,
- as they cause build issues for some packages.
-
- The package list infrastructure now correctly handles packages
- installing files with old mtime.
-
- Add a config option to force all optional host utilities to be
- built, even if suitable versions are available on the build
- machine.
-
- graph-build-time: Also show time spent downloading
-
- Download: fixes for SSH/SCP support
-
- Ensure user provided permissions override permissions from
- packages.
-
- SDK: Fix handling of relative symlinks (targets starting with
- '.' or '..')
-
- BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
- for processes.
-
- The custom skeleton logic will now populate the needed /bin,
- /lib, /sbin directories/symlinks if not present. Merged /usr
- can now be used with a custom skeleton.
-
- Rootfs overlays can now override symbolic links from
- packages. This was disabled to ensure the correct symbolic
- links are present when merged /usr is used. Instead validate
- that the rootfs overlays do not include invalid /bin, /sbin
- and /lib entries.
-
- The waf infrastructure now support the _SUBDIR variable,
- similar to the other package types.
-
- cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
-
- Various improvements to the meson infrastructure.
-
- Luarocks: A Buildroot addon has been added to automate
- creating a Buildroot package from luarocks, similar to
- scancpan and scanpypi.
-
- scanpypi: protect against zip-slip vulnerability in zip/tar
- handling
-
- check-package: fix Python 3 support
-
- get-developers: Fix behaviour when called from elsewhere than
- the toplevel directory.
-
- pkg-stats: Show latest upstream version of each package, based
- on data from release-monitoring.org
-
- kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
- a clean tree when ccache is enabled.
-
- Default to sha256 password encoding, drop md5 support.
-
-
- Architecture:
-
- Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
- variants, MIPS support for mips32r3, mips64r3 and Marvell
- Octeon II/III variants.
-
-
- Toolchain:
-
- ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
- 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
-
-
- Packages:
-
- openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
- long term support.
-
- fftw: Split into fftw-{single,double,long-double,quad}
- packages for the different data precision options.
-
- libcurl: Now has explicit TLS backend selection options.
-
- linux: Support building device tree blobs with the -@ option
- for device tree overlays.
-
- weston: The weston-imx i.MX variant is now used when
- imx-gpu-viv is enabled
-
- pkgconf: Update to 1.5.3, which brings support for
- --define-prefix (used by GStreamer)
-
- Add host-python3-setuptools package to handle host python
- packages needing python3 with setuptools support.
-
-
- New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
- 2, QEMU RISC-V 32bit virt, Rock64
-
-
- New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
- erlang-p1-eimp, exempi, fail2ban, fftw-double,
- fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
- gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
- libpackagekite, libtorrent-rasterbar, lua-std-debug,
- lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
- python-aiodns, python-aiohttp, python-aiohttp-jinja2,
- python-aiohttp-remotes, python-aiohttp-security,
- python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
- python-cchardet, python-pycares, python-sentry-sdk,
- python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
- utp_com, vmtouch, websocketpp
-
- Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
- python-pyqt, qt, qtuio, tn5250
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10851: Patch to handle numpad Enter key properly
- #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
- #11126: Bash Shell Programming using Buildroot
- #11426: pps-tools bash dependency
- #11476: stdio2.h error invalid use of __builtin_va_arg_pack
- #11536: dt-utils building fails with glibc 2.28
- #11546: open-vm-tools with glibc 2.28
- #11566: Fix init script
- #11576: Unable to start apache with event MPM on raspberry pi 3
- #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
- #11606: libjpeg has no Config.in
- #11616: 2018.02.09 fails to build libzlib with full RELRO..
- #11656: Custom device tree and u-boot boot.scr not integrated..
- #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
-
-2018.11.3, Released February 23th, 2019
-
- Important / security related fixes.
-
- Ensure the PLATFORM and OS environment variables are not set,
- as they cause build issues for some packages.
-
- The package list infrastructure now correctly handles packages
- installing files with old mtime.
-
- Linux: Skip hash checks for user supplied downloadable
- patches, as no hash checksums are available for those.
-
- scanpypi: protect against zip-slip vulnerability in zip/tar
- handling
-
- Download: fixes for SSH/SCP support
-
- SDK: Fix handling of relative symlinks (targets starting with
- '.' or '..')
-
- Updated/fixed packages: bind, dhcpcd, docker-compose,
- docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
- dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
- libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
- libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
- poco, postgresql, proftpd, pulseaudio, python, python-django,
- python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
- swupdate, systemd, unzip, webkitgtk, xenomai
-
-2018.11.2, Released January 30th, 2019
-
- Important / security related fixes.
-
- Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
- EV3, QEMU AArch64-virt
-
- Download: Fix scp download handling
-
- check-package: fix Python 3 support
-
- get-developers: Fix behaviour when called from elsewhere than
- the toplevel directory.
-
- kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
- a clean tree when ccache is enabled.
-
- cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
-
- Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
- cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
- fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
- libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
- libmad, libsndfile, libsquish, liburiparser, libwebsock,
- libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
- mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
- openresolv, openssh, pango, patchelf, php, python-django,
- python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
- samba4, sdl_sound, shairport-sync, sqlite, subversion,
- sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
- tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
- webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11576: Unable to start apache with event MPM on raspberry pi 3
-
-2018.11.1, Released December 20th, 2018
-
- Important / security related fixes.
-
- defconfigs: Fixes for bananapi m2 ultra, ci20
-
- Download wrapper: Fix for urlencode handling
-
- Updated/fixed packages: asterisk, docker-compose,
- docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
- libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
- libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
- lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
- pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
- uclibc, vtu, webkitgtk, wine, xen
-
- New packages: docker-cli
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11426: pps-tools bash dependency
- #11536: dt-utils building fails with glibc 2.28
-
-2018.11, Released December 1st, 2018
-
- Minor fixes.
-
- Updated/fixed packages: c-ares, quagga, squid
-
-2018.11-rc3, released November 30th, 2018
-
- Fixes all over the tree.
-
- Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
- olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
-
- graph-depends: Fix for package names starting with a non-alpha
- character.
-
- Updated/fixed packages: alsa-utils, botan, dante, domoticz,
- dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
- imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
- libopenssl, libsoxr, linux, motion, msgpack, mtd,
- perl-net-ssleay, php, popt, python-numpy, qt5declarative,
- samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
- webkitgtk, valgrind, weston, xfsprogs
-
-2018.11-rc2, released November 21th, 2018
-
- Fixes all over the tree.
-
- fs: Drop intermediate tarball from the filesystem handling to
- fix an issue with xattrs handling related to fakeroot. Ensure
- tarball target includes xattrs.
-
- download: Fix confusion in git submodule handling if dl/ is a
- symlink.
-
- genrandconfig: Fix missing newline in BR2_WGET handling,
- causing the following line to be ignored. This would affect
- BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
- BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
- BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
-
- show-build-order: Also include the dependencies of
- rootfs-common.
-
- Fix a number of build issues in packages for the recently
- merged RISC-V architecture support.
-
- Updated/fixed packages: dt-utils, easydbus, elfutils,
- flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
- libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
- libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
- ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
- prosody, qemu, rpm, sconeserver, shadowsocks-libev,
- supertuxcart, syslinux, systemd, trace-cmd, uclibc,
- uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
- xlib_libfontenc
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11086: download/git submodule breaks on symlinked dl folder
- #11216: Capabilities not applied to filesystem
-
-2018.11-rc1, released November 9th, 2018
-
- Fixes all over the tree and new features.
-
- Architecture: RISC-V support (64bit) added.
-
- Toolchain: Glibc bumped to 2.28. Fortran support for external
- toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
-
- Hardening flags (RELRO) are now handled by the toolchain
- wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
- number of issues.
-
- Filesystems: Support for creating btrfs and f2fs filesystems
- added.
-
- Add a number of patches to fix build errors for host utilities
- on modern distributions using glibc-2.28.
-
- mkusers: Ensure existing group members are preserved when a
- group is reprocessed.
-
- printvars: Fix issue with exceeding shell command line length
- limits for certain setups.
-
- Workaround added for incompatibility issues between host-dtc
- and older U-Boot and Linux kernel versions.
-
- Detect and reject build paths containing '@', as this confuses
- a number of packages, including GCC.
-
- utils/diffconfig: Make it work for (non-Buildroot) config
- files not using the BR2_ prefix.
-
- New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
- riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
- olimex_a20_olinuxion_lime_mali is renamed to _legacy.
-
- OpenCL infrastructure support added, similar to how OpenGL is
- handled.
-
- Linux-headers: Support for kernel headers from a custom
- tarball / git repo added.
-
- New packages: bird, bluez5_utils-headers, btrfs-progs,
- checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
- libopencl, libopenresolv, nss-myhostname,
- perl-apache-logformat-compiler, perl-appconfig,
- perl-astro-suntime, perl-class-inspector, perl-class-load,
- perl-class-method-modifiers, perl-class-std,
- perl-class-std-fast, perl-cookie-baker, perl-data-dump,
- perl-data-optlist, perl-data-uuid, perl-data-manip,
- perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
- perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
- perl-device-serialport, perl-dist-checkconflicts,
- perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
- perl-filesys-notify-simple, perl-hash-multivalue,
- perl-http-entity-parser, perl-http-headers-fast,
- perl-http-multipartparser, perl-io-interface,
- perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
- perl-module-implementation, perl-module-runtime, perl-moo,
- perl-number-bytes-human, perl-package-stash, perl-params-util,
- perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
- perl-streams-buffered, perl-sub-exporter-progressive,
- perl-sub-install, perl-sub-quote, perl-sys-cpu,
- perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
- perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
- python-async-timeout, python-falcon, python-fire,
- python-mimeparse, python-multidict, python-passlib,
- python-pigpio, python-pip, python-ply, python-py,
- python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
- python-pyhamcrest, python-pysmi, python-scapy, python-semver,
- python-serial-asyncio, python-typing, python-uvloop,
- pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
- spandsp, tini, waffle, xapian
-
- Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
- xloader
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
- #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
- #11166: Erlang bad argument on valid uint64 when crosscompiled on..
- #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
- #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
- #11251: Util scanpypi failes when package change - to _ in tar file
- #11266: qt5base-5.11.1 does not compile with musl, complains about..
- #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
- #11321: Latest master fails to build readline with RELRO FULL
- #11326: sysvinit fails to build in latest GIT master
- #11331: Internal application no longer builds with latest GIT master
- #11336: nfs-utils fails to build in latest GIT master
- #11351: build root-2018-08, linaro aarch64 compile error
- #11376: mdmon binary missing
- #11391: Valgind availability on ARM
- #11396: uboot environment image checksum invalid if target is big endian
- #11421: GCC error message for ARM Cortex-A9/ARM.V7
- #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
- #11481: Docs: Is external.desc required?
-
-2018.08.4, Released December 20th, 2018
-
- Important / security related fixes.
-
- Defconfigs: Fixes for ci20, orangepi zero plus 2
-
- Download wrapper: Fix for urlencode handling
-
- Updated/fixed packages: c-ares, dante, docker-compose,
- domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
- libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
- linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
- nodejs, php, popt, pps-tools, prosody, python-numpy,
- python-requests, samba4, sdl2_net, squashfs, swupdate,
- systemd, uclibc, vte, webkitgtk, wine, xfsprogs
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11426: pps-tools bash dependency
-
-2018.08.3, Released November 26th, 2018
-
- Important / security related fixes.
-
- fs: Drop intermediate tarball from the filesystem handling to
- fix an issue with xattrs handling related to fakeroot. Ensure
- tarball target includes xattrs.
-
- download: Fix confusion in git submodule handling if dl/ is a
- symlink.
-
- toolchain: Only allow enabling stack protection on
- architectures with control flow integrity (CFI) support. Only
- allow FORTIFY_SOURCE support on gcc >= 6.
-
- genrandconfig: Fix missing newline in BR2_WGET handling,
- causing the following line to be ignored. This would affect
- BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
- BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
- BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
-
- show-build-order: Also include the dependencies of
- rootfs-common.
-
- Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
- olinuxino lime legacy, Orangepi zero plus 2.
-
- graph-depends: Fix for package names starting with a non-alpha
- character.
-
- Updated/fixed packages: attr, audit, bind, brotli, busybox,
- dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
- giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
- libnspr, libnss, libsemanage, liburiparser, lighttpd,
- lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
- netplug, network-manager, nfs-utils, nginx, openocd, openswan,
- p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
- squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
- twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
- xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11086: download/git submodule breaks on symlinked dl folder
- #11481: Docs: Is external.desc required?
-
-2018.08.2, Released October 25th, 2018
-
- Important / security related fixes.
-
- Workaround added for incompatibility issues between host-dtc
- and older U-Boot and Linux kernel versions.
-
- Detect and reject build paths containing '@', as this confuses
- a number of packages, including GCC.
-
- utils/get-developers: Add -e option for use with git
- send-email.
-
- utils/diffconfig: Make it work for (non-Buildroot) config
- files not using the BR2_ prefix.
-
- u-boot: Fix for environment image handling on big endian
- systems.
-
- Updated/fixed packages: binutils, ca-certificates,
- cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
- jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
- mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
- poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
- setools, spice, spice-protocol, tinc, ustr, wireshark,
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11396: uboot environment image checksum invalid if target is big endian
-
-2018.08.1, Released October 7th, 2018
-
- Important / security related fixes.
-
- Add a number of patches to fix build errors for host utilities
- on modern distributions using glibc-2.28.
-
- mkusers: Ensure existing group members are preserved when a
- group is reprocessed.
-
- printvars: Fix issue with exceeding shell command line length
- limits for certain setups.
-
- Updated/fixed packages: acpid, android-tools, apache,
- arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
- domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
- igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
- links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
- python-django, screen, shairport-sync, strongswan,
- vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
- xlib_libXfont, xlib_libXft, xlib_libxshmfence,
- xutil_makedepend, zeromq
-
-2018.08, Released September 6th, 2018
-
- Minor fixes.
-
- Known issues:
-
- - Glibc 2.28 on the build host breaks compilation of a number
- of host packages. 2018.08 contains fixes for some of these
- packages, but not all. Consider building on hosts (or in
- containers) using older Glibc versions.
-
- - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
- kernel configurations using FDT/DTC. Consider updating the
- Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
- backporting commit 9130ba8846 (scripts/dtc: Update to
- upstream version v1.4.6-9-gaadd0b65c987) for the Linux
- kernel / commit db405d1980 for U-Boot.
- Alternatively revert commit 7b929ddcf0 (dtc: bump version to
- 1.4.7) and ensure your build host does not have the libfdt
- development headers installed.
-
- Updated/fixed packages: busybox, chipmunk, cutelyst,
- domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
- moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
- sdl2, squashfs, uboot, xen
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11261: ccache using wrong cached objects
- #11276: Understanding the patch for kernel-4.9 and other..
-
-2018.08-rc3, Released August 31th, 2018
-
- Fixes all over the tree.
-
- linux: additional improvements to the flex / bison dependency
- handling, use system provided variant if available. Ensure
- toolchain is available when configuring for 4.18+ support.
-
- Download: Fix handling of primary sites using file://
-
- Toolchain: Correct external toolchain musl detection for
- static toolchains.
-
- Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
- cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
- libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
- mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
- oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
- rauc, shairport-sync, systemd, xlib_libX11, zeromq,
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
- #11141: WF111 package no longer available
- #11211: Internal compiler error: Killed (program cc1plus)..
- #11236: util-linux fails to build on Travis CI when python..
- #11246: Glibc 2.28 - fails to build host-bison and host-m4
- #11256: Add python-falcon and python-mimeparse packages
-
-2018.08-rc2, Released August 20th, 2018
-
- Fixes all over the tree.
-
- pkg-kconfig: Support dependencies needed to run the
- configurator, E.G. recent Linux kernel versions needing flex
- and bison.
-
- Defconfigs: ARM Juno: Bump ATF to fix a build
- issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
- Correct /etc/inittab. Technologic ts7680: Correct genimage
- configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
- 2018.07 to fix build issue. Ensure host-openssl is pulled in
- for kernel builds where needed.
-
- Updated/fixed packages: aircrack-ng, bind, boost,
- boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
- dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
- libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
- makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
- nodejs, php, python-django, python-pyqt5, qt5base,
- qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
- waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
- xdriver_xf86-video-ati, xserver_xorg-server
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10781: cryptsetup luksOpen container_file container causes..
- #10996: bogus musl ARM toolchain
- #11191: xattr and check-package issue
-
-2018.08-rc1, Released August 5th, 2018
-
- Toolchain:
-
- - add support for gcc 8.x, switch to gcc 7.x as the default
- version
- - add support for gdb 8.1, switch to gdb 8.0 as the default
- and remove gdb 7.10/7.11
- - add support for binutils 2.31
- - NIOSII CodeSourcery toolchain updated
- - Linaro AArch64 BE toolchain added, and other Linaro
- toolchains updated
- - Synopsys ARC pre-built toolchain updated
-
- Architecture: add support for ARM Cortex-M7
-
- Major updates:
-
- - systemd bumped to 239
- - Qt5 bumped to 5.11.1
- - Rust bumped to 1.27
- - GStreamer stack bumped to 1.14.2
- - X.org server bumped to 1.20, and all X.org proto packages
- replaced by the single xorgproto package
- - i.MX6 support packages bumped to 6.2.4
- - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
- adding support for Wayland and i.MX8MQ platforms
-
- Linux: bumped to 4.17 by default.
-
- Infrastructure: new package infrastructure added for packages
- using the Meson build system
-
- New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
- corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
- libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
- perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
- perl-mojolicious-plugin-authentication, perl-net-ping,
- perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
- python-reentry, python-request-id, python-validators,
- python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
-
- New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
- Olimex A10 OLinuxino, ZynqMP ZCU106
-
- Removed packages: all xproto_* have been removed and replaced
- by xorgproto
-
- Issues resolved (http://bugs.uclibc.org):
-
- #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
- __cpu_indicator_init: symbol not found
- #9921: lockfile module within python-daemon not available
- #10341: gdb install of py files when using buildroot toolchain
- includes build path
- #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
- #10751: Missing dependency in pulseaudio package
- #10811: kodi-17.6-Krypton does not compile for freescale_* devices
- #10856: openblas on qemu_x86_64_defconfig fails with
- "sgemm_kernel.o: No such file or directory"
- #11056: Compiling a file that uses libdrm headers fails with:
- fatal error: drm.h: No such file or directory
- #11061: support/download: git version=master broken
- #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
- #11076: Docker containerd installed to incorrect path
- #11101: host-patchelf Endian Issue with relative RPATH
- #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
- #11121: statfs call corrupts memory struct statfs too small
- #11181: Switching toolchain does not work
-
-2018.05.3, Released October 6th, 2018
-
- Important / security related fixes.
-
- Add a number of patches to fix build errors for host utilities
- on modern distributions using glibc-2.28.
-
- mkusers: Ensure existing group members are preserved when a
- group is reprocessed.
-
- printvars: Fix issue with exceeding shell command line length
- limits for certain setups.
-
- Updated/fixed packages: acpid, android-tools, apache,
- arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
- cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
- imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
- libnfs, libssh, libxslt, links, mediastreamer, minicom,
- moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
- python-django, qt, qt5quickcontrols, qt5webengine, screen,
- sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
- webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
- xlib_libxshmfence, zeromq
-
-2018.05.2, Released August 28th, 2018
-
- Important / security related fixes.
-
- Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
- genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
- issue.
-
- Updated/fixed packages: acl, attr, apache, bind,
- boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
- dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
- ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
- libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
- linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
- makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
- nodejs, openssh, php, python-django, rauc, ruby, samba4,
- stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
- wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
- xorriso, znc
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10781: cryptsetup luksOpen container_file container causes..
- #10986: Installing package attr when already supplied by..
- #11191: xattr and check-package issue
-
-2018.05.1, Released July 20th, 2018
-
- Important / security related fixes.
-
- U-Boot: Ensure host version of ncurses is picked up and not
- host-ncurses built by buildroot, as that otherwise causes
- widechar/non-widechar conflicts and corrupted menuconfig
- menus.
-
- Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
-
- Toolchain: ARC tools updated to arc-2018.03.
-
- pkg-stats: Fix python 3.x compatibility.
-
- dl-wrapper: Fix support for URIs containing '+', fix
- no-check-hash for inferred site method.
-
- Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
- Support ethernet on Turbot variant.
-
- Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
- clamav, collectd, coreutils, docker-containerd, dos2unix,
- edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
- imagemagick, libcurl, libgcrypt, libglib2, liblogging,
- libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
- libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
- network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
- pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
- systemd, triggerhappy, uboot, wireguard, wireless-regdb,
- wireshark
-
-2018.05, Released June 1st, 2018
-
- Minor fixes.
-
- Download: Work around for hanging connections for packages
- from CVS, by adding a 10 minute max timeout.
-
- Updated/fixed packages: binutils, clang, dash, expect, git,
- glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11051: runtime issue on STM32 with usage of binutils 2.29.x
-
-2018.05-rc3, Released May 28th, 2018
-
- Fixes all over the tree.
-
- Toolchain: ARC tools updated to arc-2018.03-rc2.
-
- Fs: Ensure hard links in TARGET_DIR are correctly copied for
- filesystem input. With the recent changes to the file system
- generation logic, hard links were "expanded" in file system
- images leading to bloated rootfs images for setups with hard
- links.
-
- Infrastructure: Error out for packages using the 'local'
- method but forgetting to specify _SITE.
-
- Build rpcgen for the host when needed to support distributions
- no longer shipping rpcgen with glibc (E.G. recent Fedora).
-
- Updated/fixed packages: autofs, bash-completion, binutils,
- busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
- poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
- #11036: C compiler cannot create executables
- #11046: Git package binaries are ~180MB (compared to ~20MB in..
-
-2018.05-rc2, Released May 22nd, 2018
-
- Fixes all over the tree.
-
- Dependencies: Check that the current working directory (.)
- isn't listed in PATH as that causes various build issues.
-
- Manual: Clarify that git branch names may not be used as
- version identifiers. This has never been supported, but was
- kind of working (with some limitations) before the git
- download rework - Now it does not work at all.
-
- Linux: Ensure host version of ncurses is picked up and not
- host-ncurses built by buildroot, as that otherwise causes
- widechar/non-widechar conflicts and corrupted menuconfig
- menus.
-
- Packages: Renamed a number of package options not prefixed
- with BR2_PACKAGE_ for consstency.
-
- Download infrastructure: Fix file:// protocol handling after
- download rework.
-
- Updated/fixed packages: acl, apr-util, asterisk, attr,
- bluez5_utils, cifs-utils, clamav, clang, cups-filters,
- dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
- imx-mkimage, ipsec-tools, jamvm, janus-gateway,
- jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
- libmediaart, libmodbus, libmodplug, libmpd,
- libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
- libnfnetlink, libnss, liboauth, libogg, libosip2,
- libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
- ltrace, lynx, mbedtls, modem-manager, nfs-utils,
- python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
- snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
- xen, zmqpp, znc, zstd
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10986: Installing package attr when already supplied by...
- #11011: BUildroot for Raspberry Pi 2
- #11016: Wrong compiler used for external user host packages
-
-2018.05-rc1, Released May 9th, 2018
-
- Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
- uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
-
- Architecture: support for the Blackfin architecture has been
- removed, as it was removed from Linux upstream, poorly
- maintained in binutils/gdb, and abandoned by Analog Devices.
-
- Numerous packages updated to have hashes for their license
- files.
-
- Systemd can now be built with uClibc toolchains.
-
- Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
- BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
- kernel configurations that need libelf on the host or openssl
- on the host.
-
- Coding style:
- - all Python scripts are now verified with flake8
- - check-package extended to check all Config.in and .mk files
- in tree, not only the ones in package/
-
- Infrastructure:
-
- - The download infrastructure has seen a major overhaul, with
- the main visible new feature being Git caching: a package
- fetched from Git no longer needs to be re-cloned entirely
- everytime its version is changed. Anoter visible change is
- that the download folder now has subfolders per package. See
- http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
- for more details about those changes.
-
- - The logic that generates the root filesystem images has been
- reworked, with the main goal of allowing several filesystem
- images to be produced in parallel, also a requirement for
- top-level parallel build. Now, a .tar filesystem image is
- always created, and re-extracted in a private directory to
- create each format-specific filesystem image.
-
- - A new package infrastructure was introduced for Go-based
- packages: golang-package.
-
- - Dependencies on extraction tools are now handled as proper
- per-package dependencies, using
- _EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
- preparation step for top-level parallel build support.
-
- - When a file being downloaded is part of a package with a
- .hash file, but there is no hash listed for this file, the
- file is now preserved in the download directory rather than
- removed. This helps when updating a package, as it gives the
- ability to easily calculate the hash of the file.
-
- - Addition of '-show-recursive-depends' and
- '-show-recursive-rdepends' make targets, to
- respectively display the recursive list of dependencies and
- the recursive list of reverse dependencies of a given
- package.
-
- - The /etc/shells file is now automatically generated with the
- list of shell programs installed on the system.
-
- - Addition of -Ofast optimization level as an available
- option.
-
- Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
- bumped to 5.10.1.
-
- New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
- chipmunk, clang, docker-compose, docker-proxy, flare-engine,
- flare-game, gst1-interpipe, gstreamer1-editing-services,
- hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
- libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
- python-cached-property, python-cython, python-docker,
- python-dockerpty, python-docker-pycreds,
- python-flask-sqlalchemy, python-functools32, python-influxdb,
- python-json-models, python-libusb1, python-networkx,
- python-psycopg2, python-pymodbus, python-sqlalchemy,
- python-subprocess32, python-texttable,
- python-websocket-client, python-yieldfrom, quotatool, reaver,
- snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
- tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
-
- New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
- Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
- SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
- Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
- Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
- RK3288,
-
- Removed packages: iqvlinux, kodi-adsp-*, mplayer
-
- Removed defconfigs: ci40, firefly_rk3288,
- freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
- teliv_evk_pro3
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10151: toolchain eclipse register : fails with a custom
- BR2_HOST_DIR
- #10511: Packages get downloaded uncompressed with wget
- #10531: QtWebengine doesn't build if the host hasn't a 32 bits
- C++ compiler working
- #10846: error in compiling gnutls
- #10886: openssl-1.0.2n fails to build
- #10896: /bin/sh not in /etc/shells
- #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
- enabled
-
-2018.02.11, Released February 23th, 2019
-
- Important / security related fixes.
-
- Ensure the PLATFORM and OS environment variables are not set,
- as they cause build issues for some packages.
-
- The package list infrastructure now correctly handles packages
- installing files with old mtime.
-
- Linux: Skip hash checks for user supplied downloadable
- patches, as no hash checksums are available for those.
-
- scanpypi: protect against zip-slip vulnerability in zip/tar
- handling
-
- Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
- gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
- libcurl, libid3tag, madplay, mosquitto, openssh, php,
- postgresql, proftpd, python, python-django, python3, qt5base,
- sqlcipher, swupdate, systemd, unzip, webkitgtk
-
-2018.02.10, Released January 31th, 2019
-
- Important / security related fixes.
-
- Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
-
- check-package: fix Python 3 support
-
- get-developers: Fix behaviour when called from elsewhere than
- the toplevel directory.
-
- cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
-
- Updated/fixed packages: acpica, apache, apr, asterisk,
- avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
- gnupg2, leveldb, libarchive, libassuan, libftdi1,
- libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
- liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
- lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
- openssh, pango, patchelf, php, python-django, python-pyyaml,
- rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
- shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
- tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
- xapp_rgb, xenomai, xerces
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11576: Unable to start apache with event MPM on raspberry pi 3
-
-2018.02.9, Released December 20th, 2018
-
- Important / security related fixes.
-
- defconfigs: Fixes for ci20
-
- Updated/fixed packages: c-ares, dante, freetype, ghostscript,
- glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
- libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
- msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
- python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
- wine, webkitgtk, xfsprogs
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11426: pps-tools bash dependency
-
-2018.02.8, Released November 26th, 2018
-
- Important / security related fixes.
-
- fs: Drop intermediate tarball from the filesystem handling to
- fix an issue with xattrs handling related to fakeroot. Ensure
- tarball target includes xattrs.
-
- download: Fix confusion in git submodule handling if dl/ is a
- symlink.
-
- toolchain: Only allow enabling stack protection on
- architectures with control flow integrity (CFI) support. Only
- allow FORTIFY_SOURCE support on gcc >= 6.
-
- genrandconfig: Fix missing newline in BR2_WGET handling,
- causing the following line to be ignored. This would affect
- BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
- BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
- BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
-
- show-build-order: Also include the dependencies of
- rootfs-common.
-
- Defconfigs: Fixes for Armadeus APF27, imx6sabre.
-
- graph-depends: Fix for package names starting with a non-alpha
- character.
-
- Updated/fixed packages: attr, audit, bind, brotli, easydbus,
- elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
- libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
- liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
- mosquitto, mysql, neardal, netplug, network-manager,
- nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
- prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
- systemd, tar, trace-cmd, traceroute, twolame, uclibc,
- usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
- xlib_libfontenc, xproto_inputproto, xserver_xorg-server
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11086: download/git submodule breaks on symlinked dl folder
- #11251: Util scanpypi failes when package change - to _ in..
- #11476: stdio2.h error invalid use of __builtin_va_arg_pack
- #11481: Docs: Is external.desc required?
-
-2018.02.7, Released October 25th, 2018
-
- Important / security related fixes.
-
- Detect and reject build paths containing '@', as this confuses
- a number of packages, including GCC.
-
- utils/get-developers: Add -e option for use with git
- send-email.
-
- utils/diffconfig: Make it work for (non-Buildroot) config
- files not using the BR2_ prefix.
-
- u-boot: Fix for environment image handling on big endian
- systems.
-
- Updated/fixed packages: binutils, ca-certificates,
- cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
- libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
- mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
- psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
- spice, spice-protocol, tinc, ustr, wireshark
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11396: uboot environment image checksum invalid if target is big endian
-
-2018.02.6, Released October 7th, 2018
-
- Important / security related fixes.
-
- Add a number of patches to fix build errors for host utilities
- on modern distributions using glibc-2.28.
-
- mkusers: Ensure existing group members are preserved when a
- group is reprocessed.
-
- printvars: Fix issue with exceeding shell command line length
- limits for certain setups.
-
- Updated/fixes packages: acpid, android-tools, apache,
- arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
- cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
- igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
- libesmtp, libnfs, libssh, libxslt, links, linuxptp,
- mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
- php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
- screen, sdl2, shairport-sync, squashfs, strongswan,
- vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
- xlib_libXft
-
- New packages: brotli, woff2
-
-2018.02.5, Released August 29th, 2018
-
- Important / security related fixes.
-
- Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
- genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
- issue.
-
- Updated/fixed packages: acl, apache, attr, bind,
- boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
- dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
- gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
- libopenssl, libselinux, libsoup, lighttpd, linuxptp,
- lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
- mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
- openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
- samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
- waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
- znc
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10781: cryptsetup luksOpen container_file container causes..
- #10986: Installing package attr when already supplied by..
- #11191: xattr and check-package issue
-
-2018.02.4, Released July 21th, 2018
-
- Important / security related fixes.
-
- U-Boot: Ensure host version of ncurses is picked up and not
- host-ncurses built by buildroot, as that otherwise causes
- widechar/non-widechar conflicts and corrupted menuconfig
- menus.
-
- Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
-
- Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
- Support ethernet on Turbot variant.
-
- Updated/fixed packages: bind, clamav, collectd, dos2unix,
- edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
- libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
- ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
- qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
- systemd, wireguard, wireless-regdb
-
- Issues resolved (http://bugs.uclibc.org):
-
- #11101: host-patchelf Endian Issue with relative RPATH
-
-2018.02.3, Released June 18th, 2018
-
- Important / security related fixes.
-
- Various fixes for building on modern distributions (GCC 8.x,
- no rpcgen utility).
-
- ARM: Default to binutils 2.28 and warn about newer binutils
- versions, which are known to cause boot failures for Linux
- kernels built in thumb mode.
-
- Busybox/mdev: Fix module autoloading.
-
- Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
- symlinks, call swapon -a to activate any configured swap
- devices.
-
- Dependencies: Check that PATH does not contain current working
- directory, which triggers a number of build failures.
-
- Infrastructure: Error out for packages erroneously using the
- 'local' site method but not defining a _SITE.
-
- Linux: Fix cuImage. / simpleImage. handling. Ensure
- kconfig uses ncurses from the host to fix a ncurses/ncursesw
- mixup, causing menuconfig display corruption.
-
- Toolchain: Workarounds for fix-rpath issues with binutils and
- elf2flt.
-
- Util-linux: Fix blocking on getrandom() issue with recent
- kernels.
-
- Remove broken freescale_imx31_3stack,
- freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
-
- Updated/fixed packages: apr-util, asterisk, attr, audit,
- autofs, binutils, busybox, cifs-utils, cups-filters, dash,
- ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
- glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
- jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
- libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
- log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
- nasm, netplug, network-manager, nfs-utils, nodejs,
- openvmtools, patch, perl, php-amqp, poppler, procps-ng,
- python, python-websockets, quota, redis, samba4, sysvinit,
- transmission, triggerhappy, util-linux, wavpack, wget,
- wireshark, xen, zmqpp
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10986: Installing package attr when already supplied by busybox..
- #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
-
-2018.02.2, Released May 4th, 2018
-
- Important / security related fixes.
-
- Tweak package size/file instrumentation to better handle
- package rebuilds.
-
- Revert /etc/shells creation when bash is enabled.
-
- Exclude /lib/firmware from the rpath fixup logic, as it may
- contain non-native ELF files.
-
- Scanpypi: Support the new PyPi infrastructure.
-
- Handle GCC 8.x on the host.
-
- Ensure timestamp of /usr is updated to support the systemd
- ConditionNeedsUpdate option.
-
- Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
- grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
- libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
- python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
- syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
- wireguard, wmctrl
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10896: /bin/sh not in /etc/shells
- #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
-
-2018.02.1, Released April 9th, 2018
-
- Important / security related fixes.
-
- Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
- Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
- Pro3.
-
- Infrastructure: Speed up instrumentation for package size by
- comparing timestamps instead of md5 checksums, as doing
- checksums could lead to up to 25% longer build time for big
- configurations.
-
- Rename the internal _BASE_NAME variable to _NASENAME
- to avoid name clashes with packages ending on '-base'.
-
- Add a better fix for build issues for autotools based packages
- checking for C++ support on toolchains without C++ support.
-
- Build host-tar if tar is older than 1.27 on the build machine
- to work around reproducibility issues with git archives
- containing long paths.
-
- check-unique-files: Fix for filenames not representable in the
- users' locale.
-
- Check-bin-arch: Add support for per-package ignore paths
- (_BIN_ARCH_EXCLUDE).
-
- Toolchain: Fix SSP support detection for external toolchains.
-
- linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
- these dependencies are available for Linux configurations
- needed these dependencies, similar to how it is done for
- U-Boot.
-
- Support custom (not in tree) device tree files in addition to
- in-tree ones.
-
- U-Boot / uboot-tools: Fix header conflict with libfdt-devel
- installed on host.
-
- Updated/fixed packages: apache, busybox, c-ares, cmake,
- docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
- gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
- kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
- libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
- libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
- ntp, openblas, opencv3, openocd, opus-tools, patch, php,
- pkgconf, postgresql, powerpc-utils, python-jsonschema,
- python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
- rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
- uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
-
- New packages: docker-proxy, python-functools32
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10766: upmpdcli: Segmentation fault
- #10776: ktap fails to build
- #10846: error in compiling gnutls
- #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
-
-2018.02, Released March 4th, 2018
-
- Fixes all over the tree.
-
- Issues with systemd with a readonly rootfs and DBus fixed.
-
- Instructure:
- - check-uniq-files: fix Python 2.6 compatibility.
- - dependencies.sh: check for external argparse module for
- Python 2.6.
- - Add infrastructure to detect and use a UTF-8 locale on the
- host, needed by systemd.
-
- Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
- ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
- scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10831: qemu_x86_64_defconfig build fails on linux-headers..
-
-2018.02-rc3, Released February 27th, 2018
-
- Fixes all over the tree.
-
- check-bin-arch: skip /lib/modules to allow 32-bit userland
- with 64bit kernel.
-
- dependencies: Blacklist tar 1.30+ and build our own host-tar
- if needed as tar 1.30+ changed the --numeric-owner output for
- long path names. Build host-tar before other host-dependencies
- as they need it to extract their source tarballs.
-
- Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
- e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
- mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
- php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
- systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
-
- Issues resolved (http://bugs.uclibc.org):
-
- #10726: Current libglib2.mk creates broken libglib2 binary...
- #10786: Linux fails to build unless make linux-menuconfig...
- #10796: Cannot generate cpio image without selecting CON...
-
-2018.02-rc2, Released February 15th, 2018
-
- Fixes all over the tree.
-
- Dependencies: Ensure C++ support is available like for C
- support for packages needing 32bit host support.
-
- utils/genrandconfig: Check host dependencies for config.
-
- Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
- glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
- librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
- mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
- php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
- qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
- systemd
-
- Issues resolved (http://bugs.uclibc.org):
-
- #9781: ti-sgx-km build on kernel >4.1
- #10141: Squashfs extended attribute failures
-
-2018.02-rc1, Released February 5th, 2018
-
- The global source-check and per-package -source-check
- targets have been removed.
-
- Architecture: Add x86 Silvermont variant. Add several new ARM
- variants, rework MIPS NaN logic. Support mainline binutils/gcc
- for ARC.
-
- Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
- external toolchains upgraded to arc-2017.09. Libatomic is now
- also copied for external musl based toolchains.
- Add binutils 2.30.x and switch to binutils 2.29.x by default.
-
- Added hardening options to build with RELRO and FORTITY.
-
- New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
- imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
- Orangepi lite / pc plus / pc / prime / win / win plus / zero
- plus2, Pine64, Solidrun MacchiatoBin. Sopine.
-
- Add utils/diffconfig, a simple utility for comparing
- configuration files - Adapted from the version in the
- Linux kernel.
-
- Infrastructure: Check that the same file is not touched by
- multiple packages, as a preparation for toplevel parallel
- builds.
-
- Hashes for the license files for a large number of packages
- have been added, ensuring that license changes will not be
- missed when packages are bumped.
-
- Fix build issue for autotools based packages checking for C++
- support on toolchains without C++ support and on a distro
- lacking /lib/cpp (E.G. Arch Linux).
-
- Support for the meson build system.
-
- Pie charts generated by 'graph-build' or 'graph-size' are now
- sorted according to the size of each piece.
-
- System: Only show getty options when busybox init or sysvinit
- are used.
-
- ARM-trusted-firmware: Support ATF bundled in U-Boot as
- well as U-Boot bundled in ATF.
-
- Zlib is now a virtual package, provided by either libzlib or
- zlib-ng, similar to openssl.
-
- Support for the Rust programming language.
-
- New packages: aoetools, armbian-firmware, binaries-marvell,
- brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
- flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
- imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
- libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
- meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
- open-lldp, pimd, proj, python-flask-cors,
- python-jaraco-classes, python-more-itertools, python-oauthlib,
- python-raven, python-remi, python-requests-oauthlib,
- python-schedule, python-secretstorage, python-see,
- python-tabledata, python-txtorcon, python-xlib, qt5charts,
- rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
- solatus, tcf-agent, traceroute, waylandpp, wolfssl,
- zisofs-tools, zlib-ng
-
- Removed packages: eeprog
-
-2017.11.2, Released January 21st, 2018
-
- Important / security related fixes.
-
- External toolchain: libatomic is now also copied for musl
- based toolchains.
-
- nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
-
- System: Only show getty options when busybox init or sysvinit
- are used.
-
- Infrastructure: Fix build issue for autotools based packages
- checking for C++ support on toolchains without C++ support and
- on a distro lacking /lib/cpp (E.G. Arch Linux).
-
- Pie charts generated by 'graph-build' or 'graph-size' are now
- sorted according to the size of each piece.
-
- Updated/fixed packages: asterisk, avahi, bind, busybox,
- coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
- libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
- ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
- xlib_libXpm
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9996: lz4 package does not install lz4 binaries in target
- #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
- #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
- #10301: systemd/getty unused options
- #10331: kmsxx, host installation fails with BR2_SHARED_...
- #10556: Building ntp package with SSL library libressl...
- #10641: avahi-autoipd not starting when using systemd-tmpfiles
-
-2017.11.1, Released December 31th, 2017
-
- Important / security related fixes.
-
- Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
- gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
- kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
- linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
- nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
- uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
- xenomai, xfsprogs
-
-2017.11, Released November 30, 2017
-
- Fixes all over the tree.
-
- Toolchain: Use github mirror for Glibc.
-
- Defconfigs: Correct boot.cmd for bananapi-m1.
-
- Makefiles: Workaround include order issues for certain make
- versions by explicitly sorting the result of wildcard where it
- matters.
-
- Download: Ensure subversion runs in non-interactive mode.
-
- Updated/fixed packages: asterisk, boost, chrony, dovecot,
- dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
- kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
- libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
- ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
- qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
- systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
- xlib_libXfont, xlib_libXfont2,
-
- Issues resolved (http://bugs.buildroot.org):
-
- 10501: host-localedef fails to compile on Ubuntu 17.10
- 10506: Changed kernel image type (e.g. zImage to uImage)...
-
-2017.11-rc2, Released November 13th, 2017
-
- Fixes all over the tree.
-
- Updated/fixed packages: collectd, ffmpeg, freerdp,
- go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
- mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
- snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
- wireshark, wpa_supplicant, xapp_xdriinfo
-
- Issues resolved (http://bugs.buildroot.org):
-
- #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
- #10491: Cannot output security warning when compiled with buildroot..
-
-2017.11-rc1, Released November 6th, 2017
-
- Fixes all over the tree and new features.
-
- Openssl is now a virtual package, which may be provided by
- OpenSSL (now renamed to libopenssl) or LibreSSL.
-
- libssh2: there is now an explicit choice of the backend to use
- (mbedtls, gnutls or openssl). Previously, the choice was implicit
- based on the TLS library that was selected. Now, it is possible to
- choose the backend, which is important if several TLS libraries are
- selected.
-
- netsnmp: all MIB files are now installed, making the target filesystem a
- bit bigger than before. To remove unneeded MIBS, you should use a
- post-build script.
-
- Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
- updated to 2017.09, Glibc updated to 2.26, Glibc support for
- ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
- older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
-
- New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
- Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
- kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
- QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
- Technologic TS-7680.
-
- New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
- dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
- libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
- lua-curl, lua-datafile, lua-fifo, lua-httpd,
- lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
- luksmeta, minetest, minetest-game, pdmenu, prosody,
- python-aiocoap, python-automat, python-ibmiotf,
- python-iso8601, python-m2r, python-simplesqlite,
- python-websockets, python-xmltodict, qt5wayland, qt5webengine,
- restorecond, selinux-python, semodule-utils, uhubctl,
- wireguard, wsapi-fcgi, wsapi-xavante
-
- Removed packages: aiccu, rfkill, sepolgen
-
- Issues resolved (http://bugs.buildroot.org):
-
- #10281: lsblk does not compile for util-linux
- #10336: lttng compilation fails : linking error
- #10351: glibc missing in rootfs
- #10356: nfs-utils missing header
- #10361: python3 python-config script generates invalid includes
- #10366: dropbear download url has changed
- #10391: WiringPi retrieves wrong (old) version
- #10406: Beaglebone black: Buggy SGX driver version, swapped...
- #10426: uboot-tools' fw_setenv does not update the redundant...
- #10451: libpcap 1.8.x and 1.7x does not compile on PPC
-
-2017.08.2, Released November 28th, 2017
-
- Important / security related fixes.
-
- Qt: 5.6 version updated to 5.6.3.
-
- Reproducible: Do not override SOURCE_DATE_EPOCH if already set
- in the environment.
-
- Makefiles: Workaround include order issues for certain make
- versions by explicitly sorting the result of wildcard where it
- matters.
-
- Updated/fixed packages: apr, apr-util, arqp-standalone,
- azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
- google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
- kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
- libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
- moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
- python3, python-pyqt5, qt, qt5base, qt5canvas3d,
- qt5connectivity, qt5declarative, qt5engineio,
- qt5graphicaleffects, qt5imageformats, qt5location,
- qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
- qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
- qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
- qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
- swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
- webkitgtk, wget, wireshark, xapp_xdriinfo.
-
- Issues resolved (http://bugs.buildroot.org):
-
- 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
- 10361: python3 python-config script generates invalid includes
- 10501: host-localedef fails to compile on Ubuntu 17.10
-
-2017.08.1, Released October 23rd, 2017
-
- Important / security related fixes.
-
- Webkitgtk bumped to the 2.18.x series, fixing a large number
- of security issues.
-
- Defconfigs: galileo: fix ext4 related kernel config, bump
- kernel for gcc 6.x compatibility, enable wchar support for
- grub2. wandboard: correct rootfs offset
-
- support: Ensure gzip compression level 6 is used for git
- tarballs. check-bin-arch: Correctly handle (ignore) symbolic
- links. check-rpath: Also handle PIE binaries
-
- External toolchain: Correctly handle glibc Buildroot
- toolchains built with merged /usr
-
- musl: fix ARMv4 build with binutils 2.27.51+, fix for
- CVE-2017-15650
-
- Updated/fixed packages: apache, augeas, bind, bluez5_utils,
- busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
- flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
- imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
- libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
- libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
- netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
- qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
- sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
- tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
- xmlstarlet, xlib_libXfont, xlib_libXfont2,
- xserver_xorg-server, zsh
-
-2017.08, Released September 1st, 2017
-
- Minor fixes.
-
- Toolchain: Don't allow internal toolchain builds for MIPS
- M6201/P6600, as support for these are not yet in mainline GCC.
-
- Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
- gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
- libphidget, libv4l, linux-tools, mediastreamer, minidlna,
- nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
- transmission, vde2, vim
-
- Updated/fixed defconfigs:
-
- Removed packages: simicfs.
-
- Issues resolved (http://bugs.buildroot.org):
-
- #10261: Grub2 fails to build for x86_64
-
-2017.08-rc3, Released August 23rd, 2017
-
- Fixes all over the tree.
-
- Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
- dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
- gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
- libspatialindex, libunwind, linux, linux-headers, lua,
- mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
- whois, xen, zmqpp.
-
- Updated/fixed defconfigs: ci20, socrates_cyclone5,
- toradex_apalis_imx6.
-
- Removed defconfig: Armadeus APF9328.
-
- skeleton-* packages introduced in -rc1 have been renamed to
- skeleton-init-* instead.
-
- Issues resolved (http://bugs.buildroot.org):
-
- #10141: Squashfs extended attribute failures
-
-2017.08-rc2, Released August 11th, 2017
-
- Fixes all over the tree.
-
- Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
- ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
- lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
- swupdate, uclibc, valgrind, webkitgtk.
-
- Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
- nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
- qemu_sparc64.
-
- The cmake-package infrastructure for host packages has been
- fixed to not incorrectly detect target packages through
- pkg-config.
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
- #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
- #10026: lua-5.3.4: fix lua linker error in swupdate
- #10146: package/skeleton-common fix recursive variable
- #10156: glibc compilation fails for X86 32bits (i386)
- #10201: toolchain-wrapper.c:192: (error) Memory leak:
- #10221: Buildroot Support
-
-2017.08-rc1, Released August 2nd, 2017
-
- Infrastructure:
-
- - The skeleton package has been split into multiple packages:
- skeleton-sysv (when Busybox or SysV init are used),
- skeleton-systemd (when systemd is used), skeleton-none (when
- no init system is used) and skeleton-custom (when a custom
- skeleton is used). Those packages, except skeleton-custom,
- share common logic and data in a new package called
- skeleton-common. The skeleton package becomes a virtual
- package. This change allows to generate a filesystem that is
- compliant with systemd expectations.
-
- - Support for using a read-only filesystem with systemd has
- been fixed.
-
- - Major revamp of the gettext handling, with user-visible
- effect:
-
- - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
- package could decide to enable or not NLS support. When
- BR2_ENABLE_LOCALE was disabled, NLS support was forced off
- by passing --disable-nls to packages.
-
- - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
- controls whether NLS support should be enabled or not in
- packages. This option defaults to disabled, which means
- that now, NLS support is by default disabled in all
- packages.
-
- Therefore, if you need NLS support in packages, you must now
- explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
-
- - The host directory no longer has a usr/ component. This
- makes it much more natural to use that directory as an
- externally used toolchain. For compatibility with existing
- scripts, a usr -> . link is still added.
-
- - Hashes are now checked on tarballs by Buildroot when a
- package is sourced from a Git repository.
-
- - Patches are no longer being downloaded from Github, since
- auto-generated patches could change over time, and break
- hashes. All patches that were downloaded from Github are now
- stored in their respective package directories.
-
- - Hash files in packages can now contain hashes for the
- license files contained in the package source code. This
- allows to detect changes in such license files.
-
- - Binaries in $(TARGET_DIR) are now cleaned up from invalid
- RPATHs at the end of the build.
-
- - A new "make sdk" target prepares $(HOST_DIR) to be
- relocatable: turns RPATHs in host binaries into relocatable
- ones, removes bogus RPATHs from staging binaries/libraries,
- and provides a relocate-sdk script that can be executed to
- relocate the SDK after installation.
-
- - Addition of utils/genrandconfig which generates a random
- configuration based on a set of pre-defined toolchain
- configurations (support/config-fragments/autobuild/) and a
- random selection of packages. It is now used by the
- autobuilders to generate the random configurations.
-
- Filesystems:
-
- - ext2/3/4 filesystems are now generated using mkfs.ext from
- e2fsprogs instead of using genext2fs.
-
- Architecture:
-
- - Addition of support for ARM big.LITTLE variants
- - Improved MIPS support, with options to select NaN encoding
- and FP32 mode.
-
- Toolchain:
-
- - Switch to gcc 6.x as the default gcc version, add support
- for gcc 7.x, remove support for gcc 4.8
- - Switch to binutils 2.28 as the default binutils version, add
- support for binutils 2.29, remove support for binutils 2.26
- - Support added for gdb 8.0
- - uClibc-ng bumped to 1.0.26
- - CodeSourcery toolchains for x86 and SuperH have been
- removed, they were using a too old glibc version
- (2.17). External toolchains with glibc 2.17 or earlier are
- no longer supported.
- - The version selection in the glibc package has been
- removed. Like musl and uClibc-ng, we now use the latest
- glibc version.
- - Improved support for Xtensa toolchain overlays, which can
- now be downloaded.
-
- Tools:
-
- - Numerous improvements to the runtime test infrastructure
- - Tests are now executed by Gitlab CI on a regular basis
- - Tools that are directly useful to the user have been moved
- from support/scripts/ to utils/: brmake, check-package,
- get-developers, scancpan, scanpipy, size-stats-compare,
- test-pkg.
-
- New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
- Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
- SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
-
- New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
- erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
- ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
- kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
- libpwquality, libressl, libspatialindex, libva-utils,
- linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
- lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
- python-backports-shutil-get-terminal-size, python-bcrypt,
- python-cheroot, python-h2, python-hpack, python-hyperframe,
- python-hyperlink, python-ipython-genutils, python-pathlib2,
- python-pickleshare, python-priority, python-portend,
- python-scandir, python-systemd, python-tempora,
- python-traitlets, python-typepy, qt5virtualkeyboard,
- ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
- xr819-xradio, zstd
-
- Removed packages: cloog, input-tools, mke2img
-
- Issues resolved (http://bugs.buildroot.org):
-
- #7892: systemd-journald is broken
- #9341: avahi-utils does not compile with uClibc + libglib2
- #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
- BR2_ENABLE_DEBUG
- #9746: ext4 image generated by Buildroot is not working
- properly with U-Boot
- #9886: Build fails with "unexpected EOF while looking for
- matching `"'" if PATH contains a newline
- #9891: parted 3.1 => 3.2?
- #9911: qt5 does not build on sparc
- #9916: qt5 does not build on
- arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
- #9936: Host QEMU does not build with SDL support because of
- pkg-config
- #9941: nodejs option disappears for arm
- #9951: SCANCPAN failure
- #9966: util-linux-2.30/.stamp_built' failed
- #9976: License file for package 'rtl8821au' incorrect
- #9991: SGX Error implicit declaration of function
- ‘dmac_map_area’
- #10011: wget does not work from Buildroot
- #10036: Buildroot builds Raspbian Jessie headless image
- presenting incorrect prompt
- #10051: make: *** No rule to make target
- 'raspberrpi3_defconfig'. Stop reported with Buildroot
- v2017.05.1
- #10056: No .config file was produced in /buildroot folder
- #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
- failure
- #10071: fakeroot: replace hard-coded paths in post install
- #10076: Makefile:4113: recipe for target 'all-gcc' failed
- #10091: gcc7.1 does not build with graphite support due to old
- isl
- #10121: webkit without the multimedia option causes build
- error
-
-2017.05.2, Released July 27th, 2017
-
- Important / security related fixes.
-
- Webkitgtk bumped to the 2.16.x series, fixing a large number
- of security issues.
-
- host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
- which default to PIE mode.
-
- Updated/fixed packages: aespipe, apache, bind, binutils,
- busybox, ccache, collectd, dieharder, efibootmgr, efivar,
- expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
- libmemcached, libosip2, libtirpc, libxml-parser-perl,
- linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
- pulseaudio, python-setproctitle, qt5base, rpi-firmware,
- samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
- webkitgtk, x265, xserver_xorg-server, xvisor
-
- Issues resolved (http://bugs.buildroot.org):
-
- #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
-
-2017.05.1, Released July 4th, 2017
-
- Important / security related fixes.
-
- Update support/scripts/scancpan to use METACPAN v1 API as v0
- has been shutdown.
-
- Update support/scripts/mkusers to handle setups where
- /etc/shadow is a symlink.
-
- External toolchain: Don't create musl dynamic loader symlink
- for static builds.
-
- Setlocalversion: Correct detection of mercurial revisions for
- non-tagged versions.
-
- Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
-
- Updated/fixed packages: apache, automake, bind, botan, c-ares,
- dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
- gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
- iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
- libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
- openssh, openvpn, pngquant, python-simplegeneric, qt5base,
- qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
- tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9976: License file for package 'rtl8821au' incorrect
-
-2017.05, Released May 31st, 2017
-
- Minor fixes.
-
- External toolchain: musl dynamic linker symlink for mips-sf
- corrected.
-
- Updated/fixed packages: agentpp, bash, exim, hans, madplay,
- qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
- xen
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9906: genimage: Disk full
-
-2017.05-rc3, Released May 30th, 2017
-
- Fixes all over the tree.
-
- ARC toolchain bumped to 2017.03
-
- Runtime testing improvements and cleanups.
-
- Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
- cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
- fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
- keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
- libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
- mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
- pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
- xen
-
- Removed packages: firejail, ola
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
- #9876: aarch64 support with gcc 4.8 toolchain
- #9896: host-gcc-initial error downloading because incorrect URL
-
-2017.05-rc2, Released May 17th, 2017
-
- Fixes all over the tree.
-
- ARC toolchain bumped to 2017.03-rc2
-
- Updated/fixed packages: bluez_utils, boost, clamav, daemon,
- efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
- git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
- mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
- postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
- rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
- vlc, x11vnc, xfsprogs
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9796: source-check broken for Git downloads
- #9866: BASE_DIR usage
-
-2017.05-rc1, Released May 8th, 2017
-
- Fixes all over the tree and new features.
-
- Infrastructure:
-
- - Installed binaries are now checked for correct architecture
- to catch natively built binaries or binaries built for other
- architecture variants.
-
- - Luarocks infrastructure improvements to extraction handling,
- support for upstream name != Buildroot package name.
-
- - 'make printvars' output format has changed to make it easier
- to use in scripts. It now has options to quote the variables
- and to show the expanded/unexpanded values.
-
- - Automatic ext2 rootfs size calculation has been removed. The
- logic was not working working reliable in all setups as it
- depends on the host filesystem behaviour, so instead now the
- size has to be specified explicitly (defaults to 60MB).
-
- - The git download infrastructure now ensures that GNU format
- tar files are created.
-
- - Fixed a variable clashing issue in the mkusers script with
- internal bash variables.
-
- - Fakeroot now links against libacl to fix issues on
- distributions using acls.
-
- - Correct permissions for /dev/pts/ptmx when systemd is used
- with recent glibc versions.
-
- - br2-external: Improve error reporting.
-
- - A wrapper script for genimage has been added in
- support/scripts/genimage.sh for easy use of genimage from
- post-image scripts.
-
- - A script to check for common style issues in new packages
- before submitting has been added in support/scripts/check-package
-
- - Defconfigs are now tested by gitlab-CI instead of Travis:
- https://gitlab.com/buildroot.org/buildroot
-
- - Infrastructure for runtime testing has been added to
- support/testing
-
- Toolchain:
-
- - External linaro toolchains updated to 2017.02, ARC toolchain
- updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
-
- - A number of fixes and improvements to the external toolchain
- handling, including C library detection, multilib and ld.so
- handling
-
- - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
- for uClibc-ng
-
- - Binutils 2.28 added and default changed to 2.27
-
-
- Architectures:
-
- - Support for the C-SKY architecture has been added.
-
-
- License handling:
-
- - The package license markings for legal info now uses the
- SPDX short identifiers for the license string where possible.
-
- - License info has been improved / added for a number of packages.
-
-
- Misc:
-
- - Cmake 3.7.x installed on the host is no longer ignored as a
- workaround for the RPATH issues has been implemented.
-
- - Docker-engine can now be built statically on an otherwise
- dynamic linked build for docker-in-docker setups.
-
- - U-Boot now supports out-of-tree device trees, similar to
- Linux
-
- - Nodejs 0.10.x support (and with it, support for -source-check fixed for packages from git.
-
- External toolchain: musl dynamic linker symlink for mips-sf
- corrected.
-
- Updated/fixed packages: armadillo, audiofile, bash,
- bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
- elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
- google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
- libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
- lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
- nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
- postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
- rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9796: source-check broken for Git downloads
- #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
-
-2017.02.2, Released May 1st, 2017
-
- Important / security related fixes.
-
- Use HTTPS for the Codesourcery external toolchains as the HTTP
- URLs no longer work.
-
- Updated/fixed packages: bind, busybox, dovecot, freetype,
- ghostscript, glibc, granite, hiredis, icu, imagemagick,
- gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
- libnspr, libnss, libsamplerate, libsndfile, libunwind,
- minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
- python-web2py, samba4, syslinux, systemd, tiff, trinity,
- uboot, wireshark, xen
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9791: Python searches for packages in the user site directory
-
-2017.02.1, Released April 4th, 2017
-
- Important / security related fixes.
-
- Fix a variable clashing issue in the mkusers script with
- internal bash variables.
-
- Improve external toolchain version detection.
-
- Correct permissions for /dev/pts/ptmx when systemd is used
- with recent glibc versions.
-
- Fix python module name clash for graph-depends.
-
- Fakeroot now links against libacl to fix issues on
- distributions using acls.
-
- Ensure that the git download infrastructure creates GNU format
- tar files.
-
- br2-external: Improve error reporting.
-
- Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
- dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
- fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
- gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
- libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
- libwebsockets, libxkbcommon, linux-firmware, logrotate,
- lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
- mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
- pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
- skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
- tcpreplay, tor, upmpdcli, wget, wireshark,
- xdriver_xf86-video-vmware, xlib_libXv, zmqpp
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9456: mkusers script bash errors
-
-2017.02, Released February 28th, 2017
-
- Minor fixes, mainly fixing autobuilder issues.
-
- Don't use cmake 3.7.x from the build host as it is also
- affected by the RPATH handling issues, and instead build our
- own if needed.
-
- Updated/fixed packages: assimp, classpath, genimage, mplayer,
- mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
- vlc, xterm
-
-2017.02-rc3, Released February 26th, 2017
-
- Fixes all over the tree.
-
- Cmake reverted to version 3.6.3 to workaround regressions
- related to RPATH handling.
-
- Updated/fixed packages: bctoolbox, berkeleydb, binutils,
- btrfs-progs, classpath, directfb, glibc, gstreamer1,
- gst1-plugins-{base,good,bad,ugly}, gst1-libav,
- gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
- libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
- oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
- trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9251: Shared C++ libraries for Microblaze results in Segmentation...
- #9456: mkusers script bash errors
- #9506: Collectd 5.7.0 fails to build with libcrypt
- #9581: VagrantFile provisioning step fails due to issue with grub-pc
- #9586: usbmount: usbmount slows down the system... to a state of...
- #9616: CMake host packages cannot provide CONF_ENV
- #9641: Need raptor package installed in staging
- #9671: stunnel build error
-
-2017.02-rc2, Released February 20th, 2017
-
- Fixes all over the tree.
-
- Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
- older gcc versions for reproducible builds has been
- (temporarily) reverted because of licensing compatiblity
- concerns.
-
- Defconfigs: SD card generation fix for the Udoo Neo board
-
- Infrastructure to handle .lz compressed tarballs added, and
- affected packages updated to use it.
-
- Updated/fixed packages: bctoolbox, bind, canelloni,
- cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
- ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
- kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
- libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
- ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
- riemann-c-client, samba4, sunxi-mali, tcping, trousers,
- uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
- xserver_xorg-server
-
- Issues resolved (http://bugs.buildroot.org):
-
- #8941: Valgrind fails to build with stack protection turned on
- #9291: perl: SysV message queues not configured, even if available
- #9651: libxcb-1.12 built Error
- #9656: util-linux: schedutils doesn't build on target w/o enabl...
- #9666: qt5quickcontrols install fails
-
-2017.02-rc1, Released February 11th, 2017
-
- Fixes all over the tree and new features.
-
- Infrastructure:
-
- - numerous improvements to support reproducible builds
-
- - new waf-package package infrastructure to support packages
- that use the Waf build system. 6 packages converted to
- this infrastructure.
-
- - add option _PREFER_INSTALLER to the perl package
- infrastructure
-
- Architecture:
-
- - add support for the OpenRISC CPU architecture
-
- - merge description of the ARM and ARM64 options, and add
- support for selecting a specific ARM64 core
-
- Toolchain:
-
- - major rework of the external toolchain support. It is now
- split into several packages, one per external toolchain,
- and a common infrastructure.
-
- - important fix for musl to prevent a conflict between musl
- and kernel headers (fixes the build of numerous packages
- with musl)
-
- - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
- for ARM64, mips32r6 and mips64r6
-
- - add gdb 7.12.1, and switch to gdb 7.11 as the default
-
- - Linaro toolchains updated to 2016.11, ARC toolchain
- components updated to arc-2016.09, MIPS Codescape
- toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
- NIOS2 toolchains bumped
-
- - remove Analog Devices toolchain for the Blackfin
- architecture, remove pre-built musl toolchains from
- musl.codu.org
-
- New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
- Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
- SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
-
- New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
- ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
- jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
- nginx-dav-ext, nmon, opkg-utils, policycoreutils,
- pru-software-support, python-arrow, python-attrs,
- python-babel, python-bitstring, python-chardet,
- python-constantly, python-flask-babel, python-gunicorn,
- python-incremental, python-jsonschema, python-logbook,
- python-markdown2, python-mbstrdecoder, python-mutagen,
- python-pathpy, python-pudb, python-pyqrcode,
- python-pytablereader, python-setuptools-scm, python-sh,
- python-toml, python-vcversioner, python-whoosh,
- raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
- sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
- upower, ustream-ssl, waf, xlib_libXfont2
-
- Removed packages: perl-db-file, snowball-hdmiservice,
- snowball-init
-
- Tooling: addition of a test-pkg script to help contributors
- build test their package.
-
- Issues resolved (http://bugs.buildroot.org):
-
- #8946: Valgrind fails to build with stack protection turned on
- #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
- #9466: VIM_REMOVE_DOCS removes rgb.txt
- #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
- #9501: eudev fails to build with older kernel headers
- #9526: Embedded NPM fails to start with "no such file or directory" error
- #9541: Platform drivers autoloading from info in device tree does not work
- #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
- #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
- #9566: [kmod] Compilation fails with uclibc
- #9571: buildroot fails while building opencv for arm64 platform
- #9576: External tree with BR 2016.11 does not work anymore
- #9606: xorg-server cannot build for ARM target
-
-2016.11.3, Released March 9th, 2017
-
- Important / security related fixes.
-
- Updated/fixed packages: bind, dbus, gnutls, imagemagick,
- lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
- squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
-
-2016.11.2, Released January 25th, 2017
-
- Important / security related fixes.
-
- A fix for BR2_EXTERNAL trees referenced using relative paths,
- which broke in 2016.11.
-
- Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
- imagemagick, irssi, libpng, libvncserver, musl, opus, php,
- php-imagick, rabbitmq-server, runc, wireshark,
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9576: External tree with BR 2016.11 does not work anymore
-
-2016.11.1, Released December 29th, 2016
-
- Important / security related fixes.
-
- Updated/fixed packages: apache, cryptopp, docker-engine,
- dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
- nodejs, openssh, php, python, python-bottle, samba4, squid,
- uboot, vim, wireshark, xorg-server uboot
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9466: VIM_REMOVE_DOCS removes rgb.txt
-
-2016.11, Released November 30th, 2016
-
- Minor fixes.
-
- Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
- uboot, uclibc
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9451: packages/postgresql/postgresql.mk contains wrong POST...
-
-2016.11-rc3, Released November 28th, 2016
-
- Fixes all over the tree, including a number of security fixes.
-
- The move from fakeroot to pseudo unfortunately brought a
- number of issues. The SELinux issue described in #9386 which
- triggered the move to pseudo has been investigated further and
- a workaround implemented and the pseudo changes reverted.
-
- Linux kernel: update default to 4.8.11.
-
- Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
- olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
- vdk, axs101, axs103 and hs38 smd vdk.
-
- Updated/fixed packages: autossh, chrony, dosfstools,
- dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
- gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
- kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
- ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
- ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
- taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
- xapp_xload, xenomai, xmlstarlet
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9386: ubinize fails with or without custom config
- #9431: A misspelling
- #9446: make raspberrypi3_defconfig compilation failure
-
-2016.11-rc2, Released November 13th, 2016
-
- Fixes all over the tree.
-
- Architecture: add support for MIPS XBurst cores; remove MIPS
- support for M5100 cores.
-
- Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
- czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
- qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
- libxslt, python, python3, php, valgrind, guile, domoticz, efl,
- jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
- strace, openjpeg, lcms2, quota.
-
- Linux kernel: update default to 4.8.7.
-
- CMake support: fix cmake wrapper to properly pass NDEBUG flag.
-
- Filesystems: use a wrapper to pseudo, to better mimick the behaviour
- of fakeroot; makedevs no longer breaks of the destination already
- exists and is of the correct type/major/minor.
-
- Defconfigs: a few legacy and broken defconfigs have been removed
- because they now fail to build: kb9202_defconfig, mini2440_defconfig,
- freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
- have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
- armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
- olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
- atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
- atmel_sama5d3xek.
-
-2016.11-rc1, Released November 3rd, 2016
-
- Fixes all over the tree and new features.
-
- It is now possible to specify multiple BR2_EXTERNAL
- directories. The required files in a BR2_EXTERNAL directory
- have changed to accomodate this feature. Refer to the
- documentation for details of how to update them. External
- trees now have a name and a description. Also, it is possible
- to override a defconfig in the external tree.
-
- The default skeleton now uses UID 65534 for the "nobody"
- user instead of UID 99, like most distros do. See
- https://lwn.net/Articles/695478/ for a complete discussion.
- Programs and configuration files that explicitly refer to UID
- 99 will have to be updated.
-
- When the build environment already has a suitable cmake version
- (3.1 or later), that one will be used instead of building
- host-cmake. This can speed up the build significantly.
-
- The ExtUtils::MakeMaker perl module is now required in the
- build environment.
-
- An additional check is done during the build that files are
- not installed in the output directory within the output
- directory. This happens e.g. when the target directory is
- contained both in --prefix and in DESTDIR. The build will
- terminate with an error message that specifies which package
- and which file caused the failure.
-
- The concept of "deprecated packages" and the BR2_DEPRECATED
- option have been removed. Instead, packages are removed
- immediately. Packages are only removed when they don't work
- for some reason. If you still need a removed package and
- you have a solution for the problem(s) that caused the
- removal, please contribute it.
-
- Architecture: support for sh64 removed, improved support for
- MIPS core selection.
-
- Toolchain: support for musl powerpc64le, mips64 and mipsr6
- toolchains, ARC toolchain components updates, gcc 6.x series
- bumped to 6.2.0, default binutils version switched to 2.26,
- default gcc version switched to gcc 5.x, Linaro toolchains
- updated, uclibc-ng bumped to 1.0.19. GCC is now always built
- with TLS support. Checking of unsafe compiler options (that
- point to host directories) has been extended with -isystem,
- -idirafter and -iquote.
-
- Package infrastructure: new variable $(PKG)_DL_OPTS, addition
- of -show-rdepends to list reverse dependencies, and
- -graph-rdepends to graph reverse dependencies. Linux tools
- are now in a separate linux-tools package instead of in the
- kernel build. Fakeroot has been replaced by pseudo.
-
- CMake support: the toolchainfile.cmake file now provides a
- definition of the CMAKE_BUILD_TYPE variable. The
- toolchainfile.cmake also no longer forces the compiler/linker
- flags defined by Buildroot.
-
- New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
- TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
- BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
-
- New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
- aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
- mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
- python-crcmod, python-cssutils, python-docutils,
- python-futures, python-mwclient, python-mwscrape,
- python-mwscrape2slob, python-pyelftools, python-pyicu,
- python-pylru, python-pyqt5, python-requests-toolbelt,
- python-simpleaudio, python-slob, rabbitmq-server, shapelib,
- vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
- gpio linux tools.
-
- Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
- kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
- wvdial, wvstreams.
-
- Documentation: the list of packages that was present in the
- Buildroot manual has been removed.
-
- Legal info: the "licenses.txt" file that concatenates all
- license texts is no longer generated - it was not considered
- useful. The manifest.csv contains an empty cell instead of
- "not saved" when no license file is available.
-
- Other: addition of a DEVELOPERS file listing developers taking
- care of packages or architectures.
-
- Issues resolved (http://bugs.buildroot.org):
-
- #7802: host-python build hangs compiling getbuildinfo.o
- #8206: mplayer uses host xorg development files
- #8516: mkcubiecard.sh uses outdated sfdisk switch -D
- #8536: Building sudo with PAM results in unusable sudo
- #8646: check-host-rpath script returns false positives when rpath
- contains symlink
- #8696: xdriver_xf86-input-mouse install header files in target
- directory
- #8811: rp-pppoe - generated scripts commands use HOST pathnames,
- not necessarily TARGET
- #8846: Orphaned/missing toolchain borks eclipse plugin
- #8856: python tornado runtime wasn't met on buildroot 2016.02
- #8901: gcc failes to build if fortran is enabled
- #8916: LDFLAGS pass to openssh
- #8941: "ls" of an NFSv4 share only works when pumped through strace
- #8946: Valgrind fails to build with stack protection turned on
- #9021: Kodi - Broken: Illegal instruction (core dumped)
- #9096: rootfs.ubi not created
- #9111: glibc 2.23: libmvec.so not copied
- #9176: minnowboard : USB not mounted
- #9196: raspberry pi 3 default build seem broken
- #9201: Permission denied make: *** [core-dependencies] Error 126 in
- Buildroot-2015.08.1
- #9216: log4cpp package build fails to build within install
- #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
- pressing buttons.
- #9229: Firefly boot fails with: "failed to find part:boot"
- #9256: [Config file] New device: Odroid-U2/U3
- #9296: Buildroot Fails on applying patches
- #9301: U-boot fails to build with default zynq_zed_defconfig configuration
- #9316: U-boot fails to build if libssl-dev is not installed
- #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
- flash utility (tegrarcm)
- #9326: Odroid-C2 build results in non-bootable image
- #9336: Improve iconv support for external toolchain based builds
- #9356: gdb package
- #9366: no link rootfs.ext4 -> rootfs.ext2
- #9371: openssl: download failes with "Only allow downloads from primary
- download site" + local server
- #9381: check-host-rpath issues
- #9386: ubinize fails with or without custom config
-
-2016.08, Released September 1st, 2016
-
- Minor fixes.
-
- Toolchain: ARC tools updated to arc-2016.09-eng010.
-
- Updated/fixed packages: libshout, luajit, mpd, mplayer
-
- Issues resolved (http://bugs.buildroot.org):
-
- #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
- #8341: Getting EGL Error: Could not create the egl surface:..
- #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
-
-2016.08-rc3, Released August 29th, 2016
-
- Fixes all over the tree.
-
- Toolchain: C++ support for the internal blackfin toolchain
- re-enabled.
-
- Architecture: Default to bf532 CPU variant for blackfin,
- Fix flat one memory region support for m68k and disable flat
- seperate data support because of compatibility issues.
-
- Defconfigs: Minnowboard and Raspberrypi: Fix errors with
- post-build scripts when systemd is used.
- Zynq microzed/zc706/zed: Fix u-booot configuration.
-
- netbsd-queue package extended and renamed to
- musl-compat-headers. With this, a number of musl compatibility
- patches are no longer needed.
-
- Updated/fixed packages: aircrack-ng, android-tools, babeld,
- bcusdk, binutils, boa, busybox, connman, cpupower,
- docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
- glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
- imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
- libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
- libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
- linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
- neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
- pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
- quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
- squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
- trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
- webkitgtk, wireshark, xdriver_xf86-video-intel
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9101: Error on support/download/git with system git older than 1.8.4
- #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
-
-2016.08-rc2, Released August 17th, 2016
-
- Fixes all over the tree.
-
- Toolchain: disable broken C++ support for internal blackfin
- toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
- to fix various issues.
-
- System: Zoneinfo is available for the musl C library as well.
-
- Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
- blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
- fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
- inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
- libical, libpjsip, libsidplay2, libunwindow, libxml2,
- linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
- openblas, openipmi, owfs, php, poco, procps, qt, quota,
- sg3_utils, spidev_test, systemd-bootchart, thrift,
- uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
- xdriver_xf86-video-savage, xserver_xorg-server, xen
-
- Issues resolved (http://bugs.buildroot.org):
-
- #9136: make graph-size fails with "ValueError: too many values to..
- #9151: qt: fix build with ALSA >= 1.1.x
- #9156: qt: Fix missing runtime Qt3Support dependency
- #9161: modsetting patch not applied to xserver 1.18.4
- #9166: Missing overlays directory in VFAT image for raspberry pi 3
-
-2016.08-rc1, Released August 6th, 2016
-
- Fixes all over the tree and new features.
-
- Toolchain: Fortran support added. eglibc support removed, musl
- support no longer experimental. Blackfin and Microblaze
- support for internal uClibc-ng toolchain, m68k/coldfire
- improvements. The check for unsafe (build host) directories
- access (/usr/include and /usr/lib) is now enabled by default.
- Unused locales are now purged by default to save space (and
- the default list of locales shrunk). The option to control
- this has now moved from the toolchain menu to system
- configuration.
-
- Legal info improvements: sources are now hardlinked instead of
- copied if possible to save space. Patches and extra downloads
- are also saved.
-
- An experimental configuration knob (BR2_REPRODUCIBLE) has been
- added to make the builds more reproducible (E.G. less
- differences in the binary output between builds of the same
- configuration). This is still work in progress.
-
- An option to execute a custom script inside the fakeroot
- environment used to the generate the filesystem (E.G. to tweak
- permissions or similar) has been added.
-
- Git support now supports git submodules if
- _GIT_SUBMODULES is enabled.
-
- Hash files for integritry validation have been added for all
- packages.
-
- Scanpypi utility to help creating packages from the Python
- package index (pypi) has been added.
-
- The makedevs utility now has support for adding file
- capabilities using extended attributes.
-
- New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
- development configs, Blackfin GDB simulator, Linksprite
- pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
- i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
- MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
- Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
- demos. A number of defconfigs have been updated and extended
- to generate SD card images. Synopsys HS38 VDK defconfig removed.
-
- New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
- alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
- circus, dante, docker-containerd, docker-engine, domoticz,
- efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
- gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
- jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
- libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
- libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
- mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
- odroid-scripts, omxplayer, openblas, openmpi, openzwave,
- p7zip, pdbg, python-argh, python-dataproperty,
- python-dateutil, python-dialog3, python-dicttoxml,
- python-dominate, python-engineio, python-flask-jsonrpc,
- python-flask-login, python-humanize, python-pathtools,
- python-pathvalidate, python-pillow, python-prompt-toolkit,
- python-pytablewriter, python-pytz, python-scapy3k,
- python-sdnotify, python-socketio, python-tomako,
- python-ubjson, python-u-msgpack, python-watchdog,
- python-wcwidth, python-xlrd, python-xlsxwriter,
- python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
- sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
- supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
- tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
- wiringpi, xen
-
- Deprecated packages: ipkg, sstrip
-
- Removed packages: sunxi-mali-prop
-
- Issues resolved (http://bugs.buildroot.org):
-
- #8931: segment fault when compile argp-help.c using aarch64-bu...
- #8966: eglfs error. buildroot don't compile the library libeglfs.so
- #8971: build for beaglebone fails
- #8986: qt5imageformats fails to build on AArch64
- #8991: grub2 fails to compile
- #9001: Nodejs option not available
- #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
- #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
- #9066: 8139TOO - faulty behaviour
- #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
- #9091: U-Boot fails to boot with large ramdisk
-
-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 _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 _SOURCE points to pre-built binaries (as is the
- case for external toolchains). The new _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 _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 _PKGDIR variable, provided by
- the package infrastructure, to reference their package
- directory, instead of explicitly using package//.
-
- 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 _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 _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
- issues. Context functions enabled for uClibc snapshot /
- uClibc-NG.
-
- Architectures: Endian handling symbol for Xtensa, binutils
- fixes.
-
- Infrastructure: Fix for kernel module stripping when
- localversion contains spaces.
-
- Updated/fixed packages: at, autoconf-archive, binutils,
- cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
- gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
- ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
- xlib_libXfont
-
- Issues resolved (http://bugs.uclibc.org):
-
- #8086: Cannot select systemd as init with Linaro 2014.09...
-
-2015.05-rc1, Released May 4th, 2015
-
- Fixes all over the tree and new features.
-
- Architectures: Removed AVR32 support, deprecate SH64, added
- support for steamroller, corei7-avx and core-avx2 x86
- variants.
-
- Toolchains: IPv6 and Largefile support now enforced for
- uClibc. Corresponding Kconfig symbols removed.
-
- External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
- CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
- external toolchains are now detected and blacklisted.
-
- Internal toolchain support for Nios2 added, Blackfin
- removed. Aarch64 and sh musl support. uClibc-ng support added.
-
- Libatomic is now handled for internal and external
- toolchains. Link time optimization (LTO) support.
-
- New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
- Auto, Raspberry Pi 2, RIoTboard,
-
- Infrastructure: Hashes for a large number of packages have
- been added. Missing hashes now stop the build unless
- explicitly disabled.
-
- Spaces and colons (:) are now supported in package
- versions. Dependencies can now be listed for the patch step
- (_PATCH_DEPENDENCIES). Kconfig and Linux kernel
- extensions infrastructure has been added.
-
- Makedevs now has a recursive (r) option.
-
- The variable containing the list of packages to build has been
- renamed from TARGETS to PACKAGES.
-
- Make external-deps / legal-info / source / source-check have
- been reimplemented using the package infrastructure, so their
- output/behaviour may differ from earlier (some packages were
- not included in the past).
-
- The old insecure DES password encoding is no longer supported.
-
- U-Boot patch option now support direct references to patch
- files and URLs in addition to directories of patches. The
- i.MX28 SD format (u-boot.sd) is now supported.
-
- Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
- alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
- bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
- btrfs-progs, busybox, ca-certificates, cairo, can-utils,
- canfestival, ccache, chrony, civetweb, clamav, cmake,
- collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
- cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
- dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
- dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
- dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
- libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
- exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
- fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
- gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
- glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
- gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
- gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
- hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
- ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
- iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
- kismet, kmod, kodi-audioencoder-flac,
- kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
- libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
- libdrm, libdvbsi, libebml, libecore, libedit, liberation,
- libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
- libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
- libinput, libiscsi, libksba, liblinear, libmatroska,
- libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
- libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
- libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
- libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
- libusb, libuv, libva-intel-driver, libva, libvncserver,
- libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
- lighttpd, linknx, linphone, linux-firmware, linux-headers,
- linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
- lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
- lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
- luarocks, lvm2, lxc, make,
- matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
- matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
- minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
- monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
- mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
- neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
- nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
- opencv, openldap, openntpd, openocd, openssh, openssl,
- openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
- pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
- perl-io-socket-ssl, perl-json-tiny, perl-module-build,
- perl-mojolicious, perl-net-ssleay, perl-path-tiny,
- perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
- pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
- pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
- python-{cheetah,coherence,django,markdown,netifaces,pam,six},
- python-tornado, python-twisted, python-zope-interface, python,
- python3, qemu, qt, qt5, qt5base, qt5multimedia,
- qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
- rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
- rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
- sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
- smcroute, snmppp, socat, socketcand, sofia-sip, sox,
- spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
- strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
- systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
- tiff, tinyalsa, tn5250, transmission, trinity, tslib,
- tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
- usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
- webp, weston, wget, which, whois, wireless-regdb,
- wireless_tools, wireshark, wpa_supplicant, wvstreams,
- xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
- xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
- xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
- xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
- xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
- xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
- xapp_xmore, xcb-util-image, xcb-util-keysyms,
- xdata_xcursor-themes,
- xdriver_xf86-input-{evdev,keyboard,synaptics,void},
- xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
- xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
- xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
- xfont_font-util, xkeyboard-config,
- xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
- xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
- xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
- xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
-
- New packages: apache, autoconf-archive, batctl,
- bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
- dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
- imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
- leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
- libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
- mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
- openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
- perl-db-file, perl-digest-{hmac,sha1},
- perl-encode-{detect,locale}, perl-file-{listing,util},
- perl-html-{parser,tagset}, perl-http-cookies,
- perl-http-{daemon,date,message,negotiate}, perl-io-html,
- perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
- perl-mailtools, perl-mime-base64, perl-net-{dns,http},
- perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
- perl-www-robotrules, powertop, pulseview,
- python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
- qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
- unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
- xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
- xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
- xproto_xproxymanagementprotocol
-
- Removed packages: gtk2-theme-hicolor
-
- Deprecated packages: samba
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7478: Multiple chosen python modules are not built due to...
- #7508: Use of BR2_EXTERNAL and dependencies to existing packages
- #7676: Package procps-ng installs binaries to nonsensical folder
- #7724: Startx is not installed in the target
- #7760: botan: wrong prefix in botan-1.10.pc
- #7826: Building of cdparanoia
- #7844: Lua with hard-float on MIPS by buildroot doesn't work
- #7874: X.org configure error
- #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
- #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
- #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
- #7976: mkuser script fails with: user already exists with...
- #8011: When building only busybox and strace, strace fails...
- #8016: collectd fails to build, network.c:171:19: error:...
- #8041: error on building libcurl7.42.0
-
-2015.02, Released March 1st, 2015
-
- Minor fixes.
-
- Updated/fixed packages: civetweb, ding-libs,
- directfb-examples, glibc, gnupg, gnupg2, gpm,
- gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
- libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
- libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
- rpi-firmware, shared-mime-info, vlc, vorbis-tools,
- xcb-util-keysyms
-
- Removed packages: libgc
-
-2015.02-rc3, Released February 24th, 2015
-
- Minor fixes.
-
- Cmake and rebar (erlang) infrastructure fixes.
-
- Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
- evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
- make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
- qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
-
-2015.02-rc2, Released February 15th, 2015
-
- Minor fixes.
-
- raspberrypi: fix kernel sha1 for DT variant.
-
- Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
- libsepol, libssh2, mplayer, ntp, openvmtools, python3,
- qt5base, qt5connectivity, xserver_xorg-server
-
-2015.02-rc1, Released February 8th, 2015
-
- Fixes all over the tree and new features.
-
- Static/shared library handling reworked. This is now a
- tristate (shared only / shared and static / static
- only). Default is now shared only to speed up the
- build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
-
- The toolchain (internal and external) will now warn when an
- unsafe library or header path is used (such as /usr/include or
- /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
- under build options this instead becomes an error.
-
- A installation path issue with the internal musl toolchain
- support has been fixed so it is now possible to reuse it as an
- external toolchain.
-
- Architectures: Freescale E5500 and E6500 PowerPC support
- added, deprecated MIPS 1/2/3/4 support removed.
-
- New defconfigs: Freescale p2020ds, MIPS creator CI20,
- Raspberrypi with DT, UDOO Quad.
-
- 'make _defconfig' now saves the path to the defconfig in
- the .config, so a 'make savedefconfig' automatically updates
- it.
-
- Infrastructure for packages using the Erland rebar tool has
- been added.
-
- Hashes for a large number of packages have been added. Hashes
- are now checked for both target and host packages.
-
- The system menu now has an option to automatically configure a
- network interface through DHCP at bootup.
-
- The default filesystem skeleton now uses a separate tmpfs for
- /run instead of a symlink to /tmp/ for security reasons / to
- protect against conflicts with user generated temporary files.
-
- BR2_EXTERNAL is now exported to post-build and post-image
- scripts.
-
- New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
- ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
- erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
- erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
- erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
- erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
- gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
- janus-gateway, kodi, kodi-audioencoder-flac,
- kodi-audioencoder-lame, kodi-audioencoder-vorbis,
- kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
- libselinux, libsemanage, libserialport, libsigro,
- libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
- libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
- mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
- openldap, python-alsaaudio, python-certifi, python-cheetah,
- python-coherence, python-django, python-docopt, python-enum,
- python-enum34, python-flask, python-gobject, python-httplib2,
- python-ipaddr, python-itsdangerous, python-jinja,
- python-markdown, python-markupsafe, python-networkmanager,
- python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
- python-pysendfile, python-pyxb, python-requests, python-six,
- python-twisted, python-webpy, python-werkzeug,
- python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
- start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
- xtables-addons
-
- Removed packages (target): bison, distcc, gob2, m4
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7556: make interactive CLI optional for nftables
- #7730: Error while connecting Qt Cretaor to device
- #7766: logrotate default gzip path is usually wrong
- #7790: Invalid ext4 image generated by Buildroot
-
-2014.11, Released December 1st, 2014
-
- Minor fixes.
-
- Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
- current working directory isn't searched.
-
- Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
- parted, shairport-sync, util-linux, xapp_bdftopcf,
- xserver_xorg-server
-
-2014.11-rc3, Released November 28th, 2014
-
- Fixes all over the tree.
-
- System: File permissions of /etc/random-seed made more
- restrictive.
-
- Toolchain: Various fixes related to locale handling, a fix for
- building the toolchain wrapper on MIPS.
-
- Updated/fixed packages: bind, binutils. botan, btrfsprogs,
- clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
- gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
- libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
- linux-headers, mpdecimal, mpg123, network-manager, nfstables,
- nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
- sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
- xl2tp, xserver_xorg-server
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7670: Fails to build mpc-1.0.2 on latest Cygwin
-
-2014.11-rc2, Released November 21st, 2014
-
- Fixes all over the tree.
-
- Inittab tweaks for shutdown handling (busybox and sysvinit).
-
- Updated/fixed packages: aircrack-ng, botan, canfestival,
- clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
- erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
- libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
- mysql, ndisc6, nodejs, omniorb, perl-cross, php,
- python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
- rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
- tstools, tzdata, wireshark, x264
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7646: strftime on datetime not works on python3
-
-2014.11-rc1, Released November 12th, 2014
-
- Fixes all over the tree and new features.
-
- Toolchains: Use -mcpu / -march instead of -mtune. Support
- additional ARC and sparc variants. Updated Code sourcery
- and Linaro external toolchains.
-
- Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
- powerpc64 pseries added and a number of updates to the
- existing configurations.
-
- Infrastructure: Buildroot is now less noisy when built with
- the silent option (make -s).
- A number of package infrastructure variables have been renamed
- from *_OPT to *_OPTS for constency. Buildroot will complain if
- the old names are used to assist in updating out of tree
- packages.
- Fixes for host systems where bash isn't located in /bin, and
- older systems not supporting mktemp --tmpdir.
- Various cleanups of users/groups in the default skeleton.
- There is now an option to choose what shell /bin/sh points to.
-
- Documentation: Various updates to the user manual. The
- asciidoc documentation handling has now been extended so it
- can be used by (BR2_EXTERNAL) packages.
-
- Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
- alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
- argus, arptables, at, atftp, atk, attr, audiofile, aumix,
- automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
- bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
- bluez_utils, bmon, boost, bootutils, bridge-utils,
- btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
- ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
- cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
- collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
- cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
- czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
- dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
- dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
- dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
- e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
- enlightenment, enscript, erlang, espeak, ethtool, eudev,
- evemu, evtest, exfat, exfat-utils, exim, expat, expect,
- explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
- fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
- flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
- fontconfig, foomatic-filters, freerdp, freescale-imx,
- freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
- genimage, genpart, genromfs, geoip, gettext, giblib, git,
- glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
- gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
- gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
- gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
- gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
- gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
- gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
- heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
- hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
- imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
- intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
- iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
- jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
- jquery-ui-themes, jquery-validation, jsmin, json-c,
- json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
- kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
- lesstif, lftp, libaio, libao, libarchive, libargtable2,
- libass, libassuan, libatasmart, libbluray, libbsd, libcap,
- libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
- libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
- libdvdnav, libecore, libedbus, libedit, libedje, libeet,
- libelementary, libelf, libenca, libethumb, libevas,
- libevas-generic-loaders, libevent, libexif, libeXosip2,
- libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
- libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
- libinput, libiscsi, libjson, libksba, liblockfile,
- liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
- libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
- libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
- libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
- libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
- libraw, libreplaygain, libroxml, librsvg, librtlsdr,
- libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
- libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
- libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
- libungif, liburcu, libusb, libuv, libv4l, libva,
- libva-intel-driver, libvncserver, libvorbis, libvpx,
- libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
- libxslt, lighttpd, linenoise, linknx, links, linphone,
- linux-firmware, linux-fusion, linux-headers, linux-pam,
- linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
- localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
- lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
- lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
- lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
- lua-ev, luajit, luajson, lualogging, lua-messagepack,
- lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
- luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
- lzma, m4, madplay, make, makedevs, Makefile.in,
- matchbox-common, matchbox-desktop, matchbox-fakekey,
- matchbox-keyboard, matchbox-lib, matchbox-panel,
- matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
- media-ctl, mediastreamer, memcached, memstat, memtester,
- mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
- modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
- mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
- musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
- ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
- netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
- ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
- nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
- on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
- openocd, openpowerlink, openssh, openssl, openswan,
- opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
- opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
- pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
- perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
- perl-module-build, perl-mojolicious, perl-net-ssleay,
- perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
- php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
- php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
- pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
- pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
- pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
- popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
- pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
- psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
- python-dialog, python-ipy, python-keyring, python-mad,
- python-netifaces, python-numpy, python-protobuf, python-pyasn,
- python-pyparsing, python-pyro, python-pyusb, python-serial,
- python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
- qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
- qt5graphicaleffects, qt5imageformats, qt5multimedia,
- qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
- qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
- qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
- quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
- rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
- rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
- ruby, samba, sam-ba, samba4, sane-backends, schifra,
- sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
- sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
- setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
- slang, slirp, smcroute, smstools3, snmppp,
- snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
- speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
- squid, sredird, startup-notification, strace, stress,
- strongswan, stunnel, subversion, sudo, sunxi-boards,
- sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
- systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
- tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
- tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
- tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
- upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
- usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
- vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
- webrtc-audio-processing, weston, wget, whois, wireless-regdb,
- wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
- xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
- xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
- xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
- xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
- xdriver_xf86-video-vmware, xenomai, xerces,
- xfont_font-adobe-{100,75}dpi,
- xfont_font-adobe-utopia-{100dpi,75dpi,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, xinetd, xkeyboard-config,
- xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
- xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
- xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
- xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
- xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
- xproto_xcmiscproto, xproto_xextproto, xscreensaver,
- xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
- znc, zsh, zxing
-
- New packages: adwaita-icon-theme, am335x-pru-package,
- bcache-tools, biosdevname, botan, canfestival, clamav,
- cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
- gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
- libdvbcsa, libgtk3, libphidget, libshout, libunistring,
- libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
- netcat-openbsd, nginx, odhcploc, openvmtools,
- phidgetwebservice, pps-tools, pure-ftpd,
- python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
- qt5location, shairport-sync, spidev_test, targetcli-fb,
- tinyalsa, trinity, x264, yaml-cpp, ympd
-
- Removed packages: libelf
-
- Issues resolved (http://bugs.uclibc.org):
-
- #261: New package: wxWidgets
- #325: New package: ratpoison
- #405: New package: OpenVZ tools
- #1309: New package: rdiff-backup
- #3427: New package: nginx
- #3655: New package: libav
- #3991: New Package: open-vm-tools (Vmware Tools)
- #6878: dmraid: disabled on ARC
- #6950: Full unicode support in ncurses
- #7010: jamvm builds and runs fine under mips (be)
- #7088: elfutils on Blackfin doesn't build
- #7142: ecryptfs needs getent to run
- #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
- #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
- #7352: [2014.08-rc3] diffutils-3.3 failed on building
- #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
- #7364: monit builds a static application, even though BR2_PREFER_...
- #7370: ngrep - requires --with-pcap-includes fully defined to find...
- #7442: rootfs remount does not work as expected with sysvinit
- #7448: Having export MACHINE="something" breaks glibc build on IMX6...
- #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
- #7574: quota-4.01 fails to build statically
-
-2014.08, Released September 1st, 2014
-
- Minor manual fixes/additions.
-
- Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
- lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
- libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
- perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
- php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
- uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
- xscreensaver, yajl
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
-
-2014.08-rc3, Released August 26th, 2014
-
- Minor fixes.
-
- User manual update / restructuring.
-
- Updated/fixed packages: cairo, ecryptfs-utils, gettext,
- gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
- lbreakout2, libevas-generic-loaders, libftdi, libinput,
- libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
- thrift, tvheadend, usb_modeswitch, xmlstarlet,
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
- #7322: libgomp dependency issue with imagemagick
- #7328: Git dl of versions in x/y broken
-
-2014.08-rc2, Released August 18th, 2014
-
- Fixes all over the tree.
-
- User manual restructured / reworked.
-
- Toolchain: Fix for C++ exceptions / pthread_exit() on
- uClibc/glibc, C++-11 features with uClibc.
-
- Updated/fixed packages: bandwidthd, bluez5_utils, empty,
- espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
- infozip, libcuefile, libeml, libnftl, localedef, ltrace,
- matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
- oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
- qt, subversion, synergy, systemd, tar, tftpd, webkit,
- xapp_rstart, xbmc, xbmc-pvr-addons
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7124: Use BR toolchain externally results a non-bootable...
- #7208: Glibc C++ aplications crash if they use exceptions
- #7250: Cannot build with -std=c++11
- #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
- #7286: systemd 215 doesn't build
-
-2014.08-rc1, Released August 8th, 2014
-
- Fixes all over the tree and new features.
-
- Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
- Improved altivec / SPE /atomic instructions
- handling. Additional PowerPC CPU variants added.
-
- Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
- qemu-system-xtensa, qemu-aarch64-virt added. A number of
- tweaks to existing ones. lpc32xx defconfigs removed.
-
- Toolchain: Microblaze support for internal musl toolchain.
- Default to GCC 4.8 for internal toolchain, remove deprecated
- 4.3 and 4.6 versions.
- External CodeSourcery / Linaro toolchain updates, option to
- copy gconv libraries for external toolchains.
-
- Infrastructure: graph-depends: misc fixes, transitive
- dependencies are not drawn by default. Download handling is
- now done using helper scripts. Integrity of downloads can now
- be verified using sha* hashes. Subversion download now uses
- peg revisions for robustness.
- Legal-info: License info of local or overridden packages are
- saved as well. Toolchain packages are also taken into account.
- autotools: Static linking with libtool / v1.5 improvements.
- Gettextize support, similar to autoreconf.
- kconfig package infrastructure added.
-
- Misc: Version selection for busybox dropped.
-
- Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
- alsamixergui, argus, armadillo, at, atftp, atk, avahi,
- avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
- bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
- bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
- busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
- ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
- collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
- cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
- dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
- dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
- distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
- dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
- e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
- enscript, espeak, ethtool, eudev, evemu, exim, expedite,
- explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
- fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
- flex, flot, fltk, fontconfig, freerdp, freescale-imx,
- freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
- giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
- gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
- gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
- gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
- gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
- imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
- ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
- jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
- kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
- lftp, libaio, libarchive, libargtable2, libart, libatasmart,
- libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
- libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
- libeXosip2, libedit, liberation, libesmtp, libev, libevas,
- libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
- libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
- libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
- libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
- libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
- libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
- librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
- libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
- libxml2, libyaml, links, linux-firmware, linux-fusion,
- linux-headers, linux-pam, lite, live555, lm-sensors,
- lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
- ltris, lua-messagepack, luainterpreter, luajit, luaposix,
- luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
- mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
- modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
- mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
- netatalk, netplug, network-manager, nftables, ngircd, nodejs,
- nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
- openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
- opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
- pax-utils, pcmanfm, perf, perl, perl-module-build, php,
- pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
- prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
- python,
- python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
- python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
- qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
- qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
- read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
- rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
- samba, samba4, sane-backends, sawman, sconeserver, setserial,
- sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
- socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
- startup-notification, statserial, strongswan, stunnel,
- sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
- systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
- ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
- tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
- udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
- vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
- wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
- xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
- xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
- xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
- x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
- xz
-
- New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
- google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
- libinput, libksba, libmemcached, libmpdclient, librtlsdr,
- libuv, libva, libva-intel-driver, linux-zigbee, memcached,
- mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
- perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
- perl-json-tiny, perl-mojolicious, perl-net-ssleay,
- perl-path-tiny, perl-try-tiny, perl-xml-libxml,
- perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
- php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
- procps-ng, pwgen, python-cffi, python-daemon, python-flup,
- python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
- qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
- twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
-
- Removed packages: procps
-
- Issues resolved (http://bugs.uclibc.org):
-
- #5750: Doing a Buildroot build from /usr doesn't work
- #5900: config flags to the Xenomai build system
- #6230: Cannot compile gcc without threads (uClibc-based)
- #6626: procps Unknown HZ value! (XX) Assume 100
- #7118: Package "thrift" requires atomic operations
- #7154: Local uClibc config file gets overwritten using ...
- #7160: host-xz not built
- #7166: hostapd: segfault when using RT5370
- #7172: Name collision of rpath token expansion and internal..
- #7178: NTPd package cannot sync time without a proper ntp.conf
- #7184: supervisord depends on libxml2 implicitly
- #7196: Unable to build on UBUNTU13.10
- #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
-
-2014.05, Released May 31st, 2014
-
- Minor fixes.
-
- Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
- for the spl file.
-
- Updated/fixed packages: exim, glibc, gnutls, libfribidi,
- qt5base, qt5webkit, sysklogd, thrift, u-boot
-
-2014.05-rc3, Released May 28th, 2014
-
- Minor fixes.
-
- Updated/fixed packages: acl, attr, connman, dosfstools,
- dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
- lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
- mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
- samba4, slang, xbmc
-
- Issues resolved (http://bugs.uclibc.org):
-
- #7100: license info for package 'acl' missing
- #7106: license info for package 'attr' missing
- #7112: license info for package 'hwdata'
-
-2014.05-rc2, Released May 21st, 2014
-
- Fixes all over the tree.
-
- Stripping using sstrip has been deprecated.
-
- BR2_EXTERNAL can now also be used to implement custom
- filesystem types.
-
- The newly added BR2_GRAPH_DEPTH variable to limit the depth of
- the generated dependency graph has been renamed to
- BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
- the future.
-
- The virtual package infrastructure will now error out early
- if multiple packages providing the same virtual package has
- been enabled (E.G. opengl). This change requires that the
- packages explicitly declare what virtual package(s) they
- provide.
-
- Updated/fixed packages: acpid, armadillo, avahi, bellagio,
- btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
- elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
- gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
- imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
- libdvdread, libnss, libunwind, linux-headers, lsof, lua,
- luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
- netsnmp, nodejs, openpowerlink, openvpn, pciutils,
- php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
- rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
- ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
- xlib_libXpm, xserver_xorg-server, zyre
-
- Issues resolved (http://bugs.uclibc.org):
-
- #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
- #7016: Git issues in resulting buildroot tar
- #7094: pciutils doesn't build on Blackfin
-
-2014.05-rc1, Released May 13th, 2014
-
- Fixes all over the tree and new features.
-
- Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
- been removed. Building o32 ELF files for MIPS64 is an exotic
- configuration that nobody should be using. If o32 is required,
- then is better if it's built for MIPS 32-bit cores so only
- 32-bit instructions will be used leading to a more efficient
- o32 usage.
- Support for the ARM A12 variant and Intel corei7.
-
- Configs: Minnowboard and Altera SoCkit added, QEMU updates.
-
- Bootloaders: Grub2 and gummiboot support, syslinux support
- extended.
-
- Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
- library for internal and external toolchains. 4.8-R3 support
- for ARC, Internal toolchain support for Aarch64 and
- Microblaze. Environment variable to control debug output of
- toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
- other variables. Toolchain tuple vendor name can now be
- customized. Updated external Linaro ARM/Aarch64
- toolchains. Added external Linaro ARMEB toolchain.
- A GDB gdbinit file is now generated for external toolchains to
- automatically set the correct sysroot.
-
- Kconfig handling for minimum kernel headers version required
- for packages. Now packages needing specific kernel header
- features can specify these requirements in Kconfig.
-
- Infrastructure: Support for (but disabled as it leads to
- unreproducible builds) toplevel parallel builds. See the
- comment at the top of Makefile for details about how to enable
- it and what the problems are if you want to test it.
- Python package infrastructure extended to support Python 3.x
- Perl and virtual package infrastructure support added.
- PRE_*_HOOKS support for all build steps.
-
- Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
- barebox, bash, beecrypt, bellagio, binutils, boost,
- boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
- ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
- collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
- cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
- dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
- dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
- evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
- flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
- gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
- gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
- gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
- gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
- gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
- hostapd, htop, httping, ifplugd, iftop, igmpproxy,
- imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
- ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
- jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
- json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
- lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
- libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
- libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
- libevas, libevdev, libfribidi, libfslcodec, libfslparser,
- libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
- libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
- libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
- libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
- libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
- libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
- lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
- lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
- lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
- luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
- luainterpreter, luajit, lua-msgpack-native, luaposix,
- luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
- memstat, mesa3d, metacity, minidlna, mmc-utils,
- mobile-broadband-provider-info, modem-manager, mongrel2,
- monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
- ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
- newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
- olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
- openswan, openvpn, orbit, orc, p11-kit, pango, parted,
- pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
- picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
- pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
- pulseaudio, python, python3, python-bottle, python-m2crypto,
- python-netifaces, python-pyasn, python-pycrypto,
- python-pygame, python-pysnmp, python-pysnmp-apps,
- python-pysnmp-mibs, python-serial, python-setuptools,
- qextserialport, qt, qt5, qt5base, qt5connectivity,
- qt5declarative, qt5graphicaleffects, qt5imageformats,
- qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
- qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
- qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
- rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
- rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
- sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
- socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
- stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
- syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
- tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
- uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
- usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
- webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
- w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
- xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
- xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
- xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
- xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
- xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
- xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
- xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
- xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
- xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
- xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
- xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
- xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
- xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
- xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
- xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
- xdriver_xf86-video-ark, xdriver_xf86-video-ast,
- xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
- xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
- xdriver_xf86-video-geode, xdriver_xf86-video-glide,
- xdriver_xf86-video-glint, xdriver_xf86-video-i128,
- xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
- xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
- xdriver_xf86-video-newport, xdriver_xf86-video-nv,
- xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
- xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
- xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
- xdriver_xf86-video-tga, xdriver_xf86-video-trident,
- xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
- xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
- xlib_xtrans, xproto_xproto, xserver_xorg-server,
- xutil_util-macros, zeromq, zic, zmqpp, zyre
-
- New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
- dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
- fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
- iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
- libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
- libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
- lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
- lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
- musl, nftables, opentyrian, opentyrian-data,
- perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
- php-zmq, postgresql, python-libconfig, python-pypcap,
- python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
- upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
- yaffs2utils, zlog, znc
-
- Removed packages: crosstool-ng, python-distutilscross, vala
-
- Issues resolved (http://bugs.uclibc.org):
-
- #6842: Checking external toolchain for eabihf
- #6956: Packaging libsoxr
- #6986: Make legal-info fails on uboot versions before 2014.01
- #6992: Incorrect installation rights on external kernel module..
-
-2014.02, Released February 27th, 2014
-
- Minor fixes.
-
- Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
- gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
- libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
- pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
-
- Issues resolved (http://bugs.uclibc.org):
-
- #6938: mkuser script generates wrong password for new user in..
-
-2014.02-rc3, Released February 25th, 2014
-
- Minor fixes.
-
- Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
- cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
- gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
- libsecret, libsepol, libsigsegv, libtool, libv4l,
- linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
- pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
- tvheadend, util-linux, webkit, xscreensaver
-
- Issues resolved (http://bugs.uclibc.org):
-
- #4706: Removing .stamp_target_installed does not trigger...
- #5030: busybox built fails if we use an override src dir...
- #5420: Dbus and /var/run management
- #5768: Not able to build ALSA-Lib for static build
- #5774: Not able to build ALSA-Utils for static build
- #6542: external python modules fail to compile to pyc if...
- #6764: Support for kernel signed modules
- #6794: Busybox compiled from buildroot hangs on pass from...
-
-2014.02-rc2, Released February 20th, 2014
-
- Fixes all over the tree. Static linking / nommu fixes and
- annotations for several packages.
-
- Updated/fixed packages: boost, busybox, collectd, coreutils,
- dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
- jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
- opencv, python, python3, qtuio, systemd, thrift, transmission,
- uclibc, vlc, webkit
-
- Issues resolved (http://bugs.uclibc.org):
-
- #5450: AT91SAM9260 Bootstrap compilation problem
- #5582: libiconv 1.14 failed to build
- #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
- #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
- #6218: binutils-2.23.2/gas fails with undefined reference to..
- #6236: binutils-2.23.2/bfd fails with undefined reference to..
- #6470: If the build directory is a child of /usr, the build..
- #6776: systemd error: static declaration of 'execvpe' follows..
- #6818: toolchainfile.cmake has absolut path references
-
-2014.02-rc1, Released February 11th, 2014
-
- Fixes all over the tree and new features.
-
- Support for external packages/defconfigs (BR2_EXTERNAL). See
- user manual for details.
-
- Cleanup of environment variable names for consistency. The
- download directory location override (BUILDROOT_DL_DIR) is now
- called BR2_DL_DIR. Likewise the name of the current .config is
- renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
- your post build scripts if you use this! BUILD_DIR is now also
- exported to the post build/image scripts.
-
- Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
- uClibc pread/pwrite backport as they cause issues on certain
- architectures, new Linaro and Sourcery Codebench toolchains.
- x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
- variants removed, Microblaze: Internal toolchain support
-
- Legal infrastructure: Info is now split between host and
- target packages, large number of license annotations.
-
- Lua: selection between lua 5.1 / 5.2, luarocks support
-
- Python: package infrastructure, many new packages.
-
- Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
- beaglebone, microblaze, pandaboard, qemu, raspberry pi
- updated.
-
- Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
- am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
- berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
- bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
- cifs-utils, civetweb, cmake, collectd, connman, copas,
- coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
- cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
- dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
- dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
- f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
- fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
- gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
- gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
- gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
- gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
- imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
- jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
- lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
- libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
- libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
- libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
- libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
- libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
- libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
- libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
- libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
- lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
- lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
- luafilesystem, luajit, luaposix, luasec, luasocket,
- luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
- mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
- neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
- numactl, ofone, ola, olsr, omniorb, open2300, opencv,
- openpowerlink, openssh, openssl, openvpn, oprofile, opus,
- opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
- php, poco, poppler, powervr, protobuf-c, psplash, python,
- python-bottle,
- python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
- python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
- python-{serial,setuptools}, qt, qt5base, qt5connectivity,
- qt5declarative, qt5graphicaleffects, qt5jsbackend,
- qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
- qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
- rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
- sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
- socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
- sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
- sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
- ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
- transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
- uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
- util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
- weston, wget, wireless-regdb, wireshark, wpa_supplicant,
- wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
- xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
- xlib_lib{FS,SM,X11},
- xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
- xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
- xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
- xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
- xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
- xproto_xextproto, xproto_xproto, xutil_util-macros,
- xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
-
- New packages: apitrace, avrdude, c-ares, ca-certificates,
- cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
- haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
- lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
- libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
- libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
- luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
- python-configobj, python-dialog, python-json-schema-validator,
- python-keyring, python-msgpack, python-posix-ipc,
- python-pyasn, python-pycrypto, python-pysnmp,
- python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
- python-simplejson, python-tornado, python-versiontools,
- rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
- ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
-
- Removed packages: autoconf, automake, ccache, cpanminus, lzma,
- netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
-
- Issues resolved (http://bugs.uclibc.org):
-
- #65: new package: dbus c++ language bindings
- #769: Update configuration menu for MIPS target
- #2419: Add a bundle of Lua modules
- #2629: Segmentation faults and division by zero in Grub on ext2
- #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
- #4339: Allow override of DL_DIR in extract step
- #4363: Make sure that copied linux and busybox defconfig are...
- #4454: There should be simple way to update image, when chang...
- #5024: grub fails to build for x86_64 target architecture
- #5066: New-Package: net-tools
- #5072: ncurses: add ncurses-progs to target
- #5294: uclibc build ignores target CFLAGS and LDFLAGS
- #5366: Login doesn't work with util-linux versions of login/agetty
- #5378: dropbear Makefile broken
- #5390: System banner - change to empty doesn't remove /etc/issue
- #5780: spurious build failure because it cannot remove ubinize.cfg
- #5798: ncurses-5.9 fails to compile statically
- #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
- #6080: Git fetch caching
- #6092: Bootable ISO image creation seems to have stopped working..
- #6272: coreutils build fails
- #6434: apply-patches.sh does not work recursively
- #6446: eglibc doesn't install ldconfig to target
- #6484: Add c-ares
- #6596: Slow bootup if mdev is chosen
- #6656: Build Qt5 with ccache
- #6662: internal compiler error: Segmentation fault during making..
- #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
- #6752: genext2fs: e2fsck must run before tunefs -U random
- #6770: openssl 1.0.1f fails with ccache
- #6830: Qt5: no fonts are installed
- #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
- #6854: Update to Qt 5.2.1
-
-2013.11, Released November 30th, 2013:
-
- Minor fixes.
-
- Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
- ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
- iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
- lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
- tvheadend, util-linux, wpa_supplicant
-
- Issues resolved (http://bugs.uclibc.org):
-
- #1279: Buildroot compiled Busybox and Coreutils LFS issues
- #2995: -fstack-protector-all causes ssh to SIGSEGV
- #5570: Cannot compile software on the target machine
- #6428: util-linux libmount segfaults with patch from buildroot
- #6500: php fails to build for armel
- #6554: gdb needs to dependents on host texinfo
- #6692: GNU nano fails to compile for x86_64
- #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
-
-2013.11-rc3, Released November 26th, 2013
-
- Fixes all over the tree.
-
- Architecture: Mark MIPS I, II, III and IV as deprecated.
-
- Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
- libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
- mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
- protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
- swig, ti-gfx, tinymembench, uclibc, udisks, vim
-
-2013.11-rc2, Released November 18th, 2013
-
- Fixes all over the tree.
-
- Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
- Adjust kernel versions.
-
- Toolchain: avr32: fix for modern kernel headers
-
- Bootloader: Barebox updated to 2013.10.1
-
- Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
- libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
- wayland, wvstreams
-
- Issues resolved (http://bugs.uclibc.org):
-
- #3601: DHCPD S80dhcp-server startup script issues
- #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
- #6416: Xenomai package, patch alternative
- #6590: directfb-examples build failed whit linaro toolchain
-
-2013.11-rc1, Released November 12th, 2013
-
- Architectures: Nios-II support, MIPS arch handling fixes
-
- Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
- sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
-
- Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
- for avr32, crosstool-ng backend removed, external musl
- toolchain support, gcc 4.8.2, updated Linaro external
- toolchains. Fortran and objective-C support deprecated,
- mudflap support
-
- Bootloaders: U-Boot: u-boot.imx support, version bumps
-
- Linux: use kmod instead of module-init-tools
-
- System: default to devtmpfs for /dev
-
- Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
- download support, post-rsync hooks
-
- Fs: u-boot image support for cpio
-
- Updated/fixed packages: aircrack-ng, alsamixergui, apr,
- apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
- bison, boost, busybox, can-utils, ccache, ccid, cgilua,
- chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
- copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
- directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
- dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
- ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
- fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
- glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
- gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
- gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
- imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
- jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
- libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
- libedit, libevas, libevent, libfreefare, libfuse,
- libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
- libmnl, libmodbus,
- libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
- libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
- libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
- libvpx, lighttpd, linphone, linux-pam, lmbench,
- lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
- ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
- media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
- mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
- nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
- netcat, netkitbase, netperf, netplug, nettle, nfacct,
- nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
- oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
- perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
- poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
- pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
- rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
- samba, scons, screen, sdl_sound, ser2net, setserial,
- smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
- stress, strongswan, stunnel, sudo, syslinux, systemd,
- sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
- tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
- uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
- valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
- webkit, webp, webrtc-audio-processing, weston, wget,
- wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
- xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
- xserver_xorg-server, xz, zeromq, zic, zmqpp
-
- New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
- duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
- lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
- lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
- python-crc16, python-ipy, python-pyzmq, qt5sensors,
- qt5serialport, qt5x11extras, snmppp, subversion, tcping,
- trace-cmd, xscreensaver, zsh
-
- Removed packages: module-init-tools
-
- Issues resolved (http://bugs.uclibc.org):
-
- #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
- #5408: qt build failure with Sourcery CodeBench ARM 2010.09
- #5630: makefile error with toolchain helpers.mk
- #5672: htop: remove X11 stuff
- #5678: linux.mk: linux-menuconfig fails
- #5696: python3 installation is too large, patches from python2 needed
- #5978: Erlang does not build for arm in 2013.02-rc3
- #6392: Extended ARM uImage kernel options
- #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
- #6428: util-linux libmount segfaults with patch from buildroot
- #6452: eglibc from Linaro 2013.07 not copied to target correctly
- #6566: PHP segfault when crosscompiled to mips64 - patch included
- #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
- #6578: udisks package broken
- #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
- #6608: ebtables missing ethertypes - fix included
- #6620: Sysvinit package missing killall5 and symlinks - patch included
- #6632: CMake use host pkg-config
- #6638: pkgconf doesn't download
- #6644: "all" target doesn't work in out-of-tree builds
- #6650: Segmentation fault when trying to build latest buildroot
- #6668: iptables limit module alignment problem on mips64
-
-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
- _CONFIG_SCRIPTS mechanism to get their -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
-
- -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 / _DEVICES /
- _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//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,
- libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
-
- Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
- automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
- bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
- dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
- expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
- gamin, gawk, genext2fs, gperf, gst-plugins-base,
- gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
- hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
- iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
- libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
- libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
- libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
- libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
- logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
- mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
- netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
- openssl, openvpn, oprofile, pango, patch, pcre, php,
- pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
- rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
- sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
- speex, sqlite, squashfs, startup-notification, strace,
- sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
- torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
- vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
- xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
- xapp_xmore,
- xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
- xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
- xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
- xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
- xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
- xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
- xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
- xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
- xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
- xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
- xterm, xvkbd, zlib
-
- Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
-
- Removed packages: dillo, libglib12, libgtk12, microwin,
- pcmcia
-
- Issues resolved (http://bugs.uclibc.org):
-
- #901: new package: gpsd
- #2389: Generate a Makefile wrapper in $(O)
- #2461: wireless_tools: install shared library if needed
- #2521: Can't compile sdl_mixer, mikmod.h can't be found
- #2533: xserver_xorg-server: Enable glx, if mesa3d is built
- #2563: [PATCH] cairo: Expose the configure option to disable some...
- #2581: libmms: Update to 0.6, and patch to work on architectures...
- #2707: Can't compile linux kernel using buildroot + crosstool-ng
- #2731: Build order
- #2737: buildroot configuration tool crashing when the path exceeds...
- #2767: Build for lsof broken in buildroot-2010.08
-
-2010.08: Released August 31th, 2010:
-
- Fixes all over the tree.
-
- Updated/fixed packages: atk, xstroke
-
- Removed packages: lxdoom
-
-2010.08-rc2, Released August 30th, 2010:
-
- Fixes all over the tree.
-
- Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
- locale support as broken. Remove deprecated GCC 4.2.[1-3]
- versions.
-
- Mark CRIS architecture as deprecated, as it is discontinued
- upstream.
-
- Marked shared config.cache as experimental and disabled by
- default as it is known to break with certain package
- combinations.
-
- Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
- added.
-
- fs: old-style squashfs for big endian archs fixed.
-
- Updated/fixed packages: busybox, gst-plugins-base,
- imagemagick, kismet, libgail, libglib2, libgtk2, lua,
- luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
- proftpd, qt, samba, startup-notification, swfdec, sysvinit,
- util-linux
-
- Removed packages: stunnel
-
- Issues resolved (http://bugs.uclibc.org):
-
- #635: util-linux fails to build in 2009.08
- #2239: netcat package installs its binary to target as avr32-linux...
- #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
- #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
- #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
-
-2010.08-rc1, Released July 30th, 2010:
-
- Fixes all over the tree and new features.
-
- Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
- and non-sysroot support removed. Added support for (snapshot)
- NPTL in uClibc, 0.9.28.3 removed,
-
- Bootloaders: Various cleanups, moved to boot/, added Barebox,
- removed yaboot. Support building u-boot from custom tarball,
- u-boot 2010.06.
-
- New GTK-based configurator, usable using 'make gconfig'.
-
- Java packages marked as broken. Unless someone steps up to
- support this, they will be removed during the 2010.11
- development cycle.
-
- Alpha, IA64 and Sparc64 architectures marked as deprecated.
- GTK+ on DirectFB has also been marked as deprecated, as it is
- not supported in recent GTK+ versions, and more and more
- packages depends on the new versions.
- Unless someone steps up to support them, they will be removed
- during the 2010.11 development cycle.
-
- New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
- libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
-
- Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
- avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
- cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
- dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
- gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
- gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
- iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
- libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
- libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
- ltrace, make, midori, module-init-tools, mplayer,
- mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
- ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
- setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
- sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
- usbutils, webif, webkit, wireless_tools, xerces,
- xkeyboard-config, xserver_xorg-server, xvkbd, zlib
-
- Removed packages: modutils, portage, rxvt
-
- Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
-
- Issues resolved (http://bugs.uclibc.org):
-
- #321: alsa-lib uses host include files for python which breaks ...
- #361: linux kernel configuration choice works incorrectly
- #387: Tremor not installed to toolchain
- #401: new package: ffmpeg
- #475: uImage target for U-boot failed generating
- #543: ATK requires X11 on DirectFB target
- #575: webkit: Buildroot Libtool Patch Fails
- #583: build fails with external x86_64 toolchain
- #729: sstrip creates corrupted headers
- #829: Webkit r44552 needs libXt
- #835: Package Dataflashboot-1.05 does not compile with buildroot...
- #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
- #859: Add (head of) nptl branch to list of uClibc versions
- #949: compile with debug info
- #955: Grub fails to build with External Toolchain
- #1051: Webkit doesn't compile (Linuxthreads new, x86)
- #1213: Move .config into output directory
- #1225: Buildroot fails to account for "nof" subdirectory (no float...
- #1231: (sparc) Linux kernel fails to build
- #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
- #1339: Busybox needs -fno-strict-aliasing to compile cleanly
- #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
- #1405: WebKit fails to build because pthread_getattr_np is not impl...
- #1675: GMP Error during buildroot make process
- #1741: external toolchain linking error
- #1753: lmbench: convert to generic package infrastructure
- #1771: Fakeroot and the target/generic/device_table.txt create bad...
- #1807: LZMA 4.32.7, Required header file(s) are missing
- #1813: xkeyboard-config fails to build because of intltool problem
- #1879: Bump iptables to 1.4.8
- #1885: Add a bunch of lua modules
- #1897: Bump libusb to 1.0.7
- #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
- #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
- #1927: Bump file to 5.03 and migrate to autotargets
- #1933: Bump gawk to 3.1.8 and migrate to autotargets
- #1945: PHP: add sqlite3 dependency when using external lib
- #1951: Bump openssl to 0.9.8o
- #1957: Bump sqlite to 3.6.23.1
- #1975: Package removal/deprecation
- #1981: zlib: bump to 1.2.5
- #1987: intltool: Fix spelling mistake
- #1993: Bump bash to 4.1.7(1) and migrate to autotargets
- #1999: Typo in path checking
- #2005: Bump dnsmasq to 2.55 and migrate to gentargets
- #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
- #2038: Bump ncurses to 5.7
- #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
- #2101: blackbox depends on locale support
- #2119: Tries to build kernel, although disabled in config
- #2125: libXfont build fail
- #2143: buildroot compiler generates segfaulting statically linked exe..
- #2149: xterm build failure
- #2155: Compression lzo don't set for ubifs
- #2161: [SECURITY] Update libpng to 1.2.44
- #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
- #2181: pixman can't apply pixman-0.10.0-no-tests.patch
- #2191: linux-fusion build fail
- #2221: Qt does not compile (dependencies not taken into account?)
- #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
- #2245: Netcat does not work due to incorrect assumptions about signed..
- #2251: directory output/build after make *_defconfig not found
- #2257: Convert netsnmp package to autotargets
- #2263: Bump samba to 3.3.13
- #2269: setserial causes make error
-
-2010.05, Released May 30th, 2010:
-
- Fixes all over the tree.
-
- Updated/fixed packages: coreutils, hal, libcap,
- lockfile-progs, ncftp, xserver_xorg-server
-
- Issues resolved (http://bugs.uclibc.org):
-
- #1789: binutils fails to build for i386
- #1843: Fix libcap build failure
- #1855: XORG Keyboard driver fails to compile
-
-2010.05-rc3, Released May 27th, 2010:
-
- Fixes all over the tree.
-
- Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
- cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
- gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
- gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
- libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
- libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
- make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
- ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
- pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
- squashfs3, sshfs, startup-notification, swfdec, sylpheed,
- uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
-
- Issues resolved (http://bugs.uclibc.org):
-
- #75: arm buildroot "unrecognized option" error
- #699: Buildroot fails to copy libstdc++ to target when using external...
- #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
- #1729: alsamixergui fails to build
- #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
- #1819: pciutils small bugs
- #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
-
-2010.05-rc2, Released May 11th, 2010:
-
- Fixes all over the tree.
-
- Updated/fixed packages: busybox, customize, gawk, gnuchess,
- hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
- ltp-testsuite, mplayer, netplug, pciutils, php, sed,
- shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
- xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
- xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
- xproto_fontcacheproto, xproto_fontsproto, xvkbd
-
- Removed packages: vice
-
- Issues resolved (http://bugs.uclibc.org):
-
- #849: "customize" package copies files to wrong place in target tree
- #985: Bump usb_modeswitch package to 1.1.0
- #1135: Package customize. Wrong copying
- #1525: Package hal deletes a whole /etc/rc.d directory
- #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
- #1669: Busybox failed to compile when using an external toolchain
- #1699: Fix usbutils dependencies and bump
- #1705: Fix pciutils broken cross compiling
- #1717: External toolchain fixes for hostapd & wpa_supplicant
-
-2010.05-rc1, Released May 3rd, 2010:
-
- Cleaned up / restructured package menu.
-
- Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
- 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
- removed broken nios2 support, ppc e300cX/e500mc support,
- improved external toolchain support, GDB 7.x support.
-
- X.org updated to 7.5.
-
- New packages: cdrkit, cramfs, genext2fs, genromfs,
- libatomic_ops, librsync, libusb-compat, lmbench, netperf,
- squashfs, squashfs3, squid
-
- Updated/fixed packages: alsa-utils, argus, autoconf, bison,
- busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
- eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
- iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
- libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
- libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
- ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
- memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
- pciutils, php, pixman, portage, pppd, pthread-stubs, python,
- qt, radvd, samba, setserial, smartmontools, tar, tslib,
- udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
- xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
- xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
- xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
- xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
- xproto_xf86miscproto, xserver_xorg-server
-
- Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
- xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
- xproto_xf86miscproto
-
- Issues resolved (http://bugs.uclibc.org):
-
- #513: Add new squid package
- #661: lmbench: new package
- #719: Add lua option to haserl
- #800: [PATCH] iperf update to 2.0.4
- #803: [PATCH] lua - add shared library patch and config option for...
- #805: [PATCH] mdadm - version update
- #817: integrator926_defconfig uses unsupported uboot board name
- #851: Add option to specify --sysroot value for external toolchain
- #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
- package for compatibility with old packages that expect
- the pre-1.0 API.
- #1105: Add new netperf package
- #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
- #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
- #1123: Bump less to 436 and migrate to Makefile.autotools.in
- #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
- #1189: Wrong u-boot configuration name for integrator926 target
- #1219: kernel headers not correctly installed into toolchain/staging
- #1267: Wrong BR2_EXTRA_VERSION
- #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
- #1303: Add librsync package
- #1321: Busybox link fails due to lack of --sysroot option
- #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
- #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
- #1369: cannot build radvd (flex problem)
- #1387: xlib_libX11-1.3.2 can't find libjpeg
- #1411: [SECURITY] Update openssl package to 0.9.8n
- #1417: Bump iptables to 1.4.7
- #1423: Bump e2fsprogs to 1.41.11
- #1429: [SECURITY] Update php to 5.2.13
- #1441: Add binutils 2.20.1
- #1447: Package installation on target with debug symbols is broken
- #1459: Misc QA fixes
- #1489: radvd update to 1.6
- #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
- #1537: dev entries not created anymore
- #1555: Fix default uclibc-0.9.31 configuration
- #1561: [SECURITY] Update samba to 3.3.12
- #1567: openssl0.9.8n fails to compile
- #1573: Alsa-utils alsactl/init/* not installed to target
- #1591: portmap fails to compile
- #1615: Convert eeprog package to gentargets
- #1645: Bump hostapd package to 0.7.2
-
-2010.02, Release February 26th, 2010:
-
- Fixes all over the tree.
-
- Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
- libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
- xfont_font-util
-
- Removed packages: hostap, openmotif, xpdf
-
- Issues resolved (http://bugs.uclibc.org):
-
- #165: openmotif does not build
- #1147: Remove obsolete hostap package
- #1183: make source fails to download gmp, mpfr and patches
-
-2010.02-rc2, Released February 23th, 2010:
-
- Fixes all over the tree and new features.
-
- New packages: intltool
-
- Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
- at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
- gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
- libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
- libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
- tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
- xlib_libfontenc, xproto_trapproto, zlib
-
- Removed package: xboard
-
- Issues resolved (http://bugs.uclibc.org):
-
- #335: atk looks for the path to the gnome library on the host
- #355: Please update WebKit - it doesn't compile!
- #453: libglib2 autoreconf
- #457: e2fsprogs link problem
- #459: libgtk2 autoreconf
- #469: build of libgtk2 for host incorrectly assumes that X.org ...
- #671: Bash fails to build when building buildront on Ubuntu 9.04
- #711: WebKit host dependencies problems
- #821: cp: illegal operation
- #1039: Not compiled on ubuntu karmic
- #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
-
-2010.02-rc1, Released February 9th, 2010:
-
- Fixes all over the tree and new features.
-
- Generalized autotools infrastructure to be usable for
- non-autotools packages, see package/Makefile.package.in for
- details.
-
- Cleaned up avr32 toolchain config, external source-based
- toolchain support is gone.
-
- Dependency checks: Also check for makeinfo, only print output
- on errors.
-
- Toolchain: uClibc 0.9.30.2, gcc 4.4.3
-
- New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
- tcpreplay
-
- Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
- bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
- e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
- hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
- libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
- neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
- rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
- usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
-
- Removed package: asterisk, openswan
-
- Issues resolved (http://bugs.uclibc.org):
-
- #515: tcpreplay: new package
- #553: Wrong DirectFB ps2mouse limitation
- #559: mesa3d build fails
- #679: Autoconf cannot find M4
- #739: New/updated hostapd package
- #749: Bump usbutils package to version 0.86
- #751: Kernel 2.6 snapshot fetch fail
- #753: Bump lighttpd package to 1.4.25
- #757: U-Boot: mkimage cannot be installed using external toolchain
- #761: Add binutils 2.20 to toolchain options
- #763: [SECURITY] Update pcre to 7.9
- #765: Add buildroot branding to gcc
- #767: Bump iw package to 0.9.18
- #773: [SECURITY] Update bind to 9.5.2-P1
- #795: Minor edits to fix typos, grammar, spelling, usage in documen...
- #813: Drop not very useful generic package selection options ...
- #823: Editor backup files (~) is copied from the target_skeleton
- #827: Bump mtd-utils package to version 1.2.0
- #841: Build error
- #913: Bump iptables to 1.4.6
- #919: Bump usb_modeswitch package to 1.0.7
- #925: Bump wpa_supplicant package to 0.6.10
- #931: Bump kismet package to 2010-01-R1
- #937: Bump openvpn package to 2.1.1
- #943: Bump sqlite package to 3.6.22
- #961: Bump dnsmasq to 2.52
- #967: Bump netstat-nat to 1.4.10
- #973: Bump iw to 0.9.19
- #1003: DHCP options disabled with busybox-1.16.0
- #1009: [SECURITY] Bump php to 5.2.12
- #1015: [SECURITY] Bump bind to 9.5.1-P2
- #1027: Busybox flash commands conflict with those from mtd-utils
- #1063: [SECURITY] Update lighttpd to 1.4.26
-
-2009.11, Released December 1st, 2009:
-
- Additional fixes and cleanups.
-
- Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
- microperl, ncurses, vim
-
- Issues resolved (http://bugs.uclibc.org):
-
- #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
-
-2009.11-rc2, Released November 29th, 2009:
-
- Additional fixes and cleanups.
-
- Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
-
-2009.11-rc1, Released November 23rd, 2009:
-
- Fixes all over the tree and new features.
-
- Cleaned up / Simplified build directory layout. Refer to
- docs/buildroot.html#using for details.
-
- Target defconfig files moved to configs/ and listed in 'make help'
- output.
-
- Fixed *clean targets. Now clean removes everything generated,
- so you can do a fresh rebuild. Distclean furthermore removes
- kbuild tools and .config, bringing the source tree back in a
- pristine state.
-
- Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
- soft / hardfloat setting for architecture, ensure target-ldd
- gets installed.
-
- New packages: divine, gvfs, libarchive, libmicrohttpd,
- sdl_sound, swfdec, sysstat
-
- Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
- busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
- gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
- imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
- libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
- libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
- matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
- ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
- python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
- shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
- synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
- udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
- xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
-
- Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
-
- Issues resolved (http://bugs.uclibc.org):
-
- #301: allow to install libsmbclient
- #303: add gvfs package
- #477: Add sdl_sound package
- #487: Make kismet package sexier
- #511: New package usb_modeswitch
- #527: misc fixes for dnsmasq package
- #565: libevent: Bump version and clean up makefile
- #587: Use iptables multipurpose binaries and bump to 1.4.4
- #593: Missing early check for patch(1)
- #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
- #609: libmicrohttpd: New package
- #615: python: Don't delete .py files unless asked
- #617: netkit/inetd requires RPC and fails to build if RPC is disabled
- #619: netkittelnet requires netkitbase to install, but there's no ...
- #645: allow to build nbd-server with NBD package
- #653: [SECURITY] Update php package to version 5.2.11
- #655: Update sqlite package to version 3.6.18
- #657: Bug in imagemagick-clean target
- #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
- #665: [PATCH] Samba package
- #667: [PATCH] e2fsprogs
- #683: SDL-dfb does not select directfb
- #701: make install problem with unstripped binaries
- #703: [SECURITY] Update openssl package to 0.9.8l
- #705: Bump spawn-fcgi package to 1.6.3
- #709: Bump lighttpd package to 1.4.24
- #713: Migrate openntpd package to Makefile.autotools.in
- #715: Bump libidn package to 1.15 and other fixes
- #717: Bump dnsmasq to 2.51 and introduce new IDN option
- #731: Bump iw package to 0.9.17
-
-2009.08, Released August 31th, 2009:
-
- Additional fixes and cleanups.
-
- Updated/fixed packages: ctorrent, saveconfig/getconfig,
- sdl_net, util-linux.
-
- Issues resolved (http://bugs.uclibc.org):
-
- #529: util-linux doesn't find headers and include libs correctly
- #557: Build ctorrent with SSL support if available
-
-2009.08-rc3, Released August 26th, 2009:
-
- Additional fixes and cleanups.
-
- Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
- directfb, enchant, kernel headers.
-
- Issues resolved (http://bugs.uclibc.org):
-
- #471: Allow directfb compilation with debug
- #541: Removal of CVS directories in target filesystem broken
- #547: berkeleydb: Update config.{sub, guess}
- #549: enchant: Fix dependencies.
- #569: Fix alsa-utils build for x86 on x86-64
-
-2009.08-rc2, Released August 6th, 2009:
-
- Additional fixes and new features.
-
- New packages: libuuid, gcc 4.3.4.
-
- Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
- jamvm, libusb, microperl, neon, popt, sed, webkit.
-
- Fixed issue with 'make oldconfig'
-
- Issues resolved (http://bugs.uclibc.org):
-
- #525: sed broken with external toolchain
- #537: Fix gzip build with recent glibc
-
-2009.08-rc1, Released August 2nd, 2009:
-
- Fixes all over the tree and new features.
-
- Improvement of external toolchain support:
- - Support for glibc toolchains.
- - The toolchain configuration announced to Buildroot is
- verified against the real toolchain configuration.
- - Fixes, documentation.
-
- Cleanup X.org support: clarified configuration options, and
- removed mandatory dependency on useless libraries such as
- libXt or libXaw.
-
- New QT-based configurator, usable using 'make xconfig'.
-
- Support for the Xtensa architecture.
-
- Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
- headers.
-
- New packages: bmon, ctorrent, dosfstools, enchant,
- gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
- sdl_gfx, spawn-fcgi.
-
- Updated packages: bind, busybox, coreutils, sqlite, directfb,
- expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
- libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
- lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
- gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
- neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
- wpa-supplicant, xdriver_xf86-input-synaptics,
- xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
- xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
- xutil_util-macros.
-
- Issues resolved (http://bugs.uclibc.org):
-
- #83: liblockfile fails to compile due to eaccess redefinition
- #163: Xtensa architecture port
- #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
- #241: device mapper + lvm2: build together
- #243: ctorrent: new package
- #247: ntfsprogs: new package
- #271: Library 'libgcc_s.so.1' not installed in search path
- #287: New package libnl
- #289: New package iw
- #331: Update MPlayer to version 1.0rc2
- #333: Bump sqlite package to 3.6.15
- #349: update libsoup to version 2.26.2
- #357: New package netstat-nat
- #359,#413: Upgrade openvpn to Makefile.autotools.in
- #367: linux kernel compile error for arm926t
- #369: Add SDL_gfx package
- #373: Support for building gstreamer without libxml
- #379: update DirectFB to version 1.4.0
- #383: gst-plugins-good: Allow soup plugin to be configured
- #385: neon: Fix pkgconfig dependency
- #387: Tremor not installed to toolchain
- #389: New package bmon
- #391: gstreamer: Bump version to 0.10.23
- #393: gst-plugins-base: Bump version to 0.10.23
- #395: gst-plugins-bad: New package
- #403: Error while building iso9660 image
- #409: Bump php package to 5.2.10
- #411: ipsec-tools: Bump version to 0.7.2
- #417: New package spawn-fcgi
- #419: Bump lighttpd package to 1.4.23
- #421: toolchain: Clean up toolchain locale support menu
- #427: webkit: Update to WebKit svn r44552
- #437: ltp-testsuite: Bump version to 20090630
- #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
- #467: DirectFB 1.4.1
- #473: memstat_0.5.tar.gz has install with -D and that fails "make"
- #491: libxml2: Bump version to 0.7.3
- #495: Bump bind package to 9.5.1-P3 (security)
- #497: OpenSSL RSA key generation hangs on x86_64
- #509: Bump sqlite package to 3.6.16
- #523: pciutils broken with external toolchain
- #533: Update gamin to 0.1.10 to fix compilation
-
-2009.05, Released June 1st, 2009:
-
- Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
- version and marked ubifsroot as broken.
-
-2009.05-rc3, Released May 27th, 2009:
-
- Fixes for toolchain (gcc arm pr37436), stable kernel versions,
- busybox, curl, libusb, readline, python and strace.
-
- Issues resolved (http://bugs.uclibc.org):
-
- #345: libcurl package needs a urandom fix
-
-2009.05-rc2, Released May 19th, 2009:
-
- Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
- for newer hosts), stable kernel versions, busybox, cups,
- dmraid, docker, mesa3d, rsync and updated defconfigs.
-
- xserver marked as broken on AVR32 and atngw100-expanded
- config removed.
-
- Issues resolved (http://bugs.uclibc.org):
-
- #167: metacity does not build
- #295: gamin installs python support even if python is disabled
- #323: gen_matypes fails to execute during build of Mesa when us...
-
-2009.05-rc1, Released May 5th, 2009:
-
- Fixes all over the tree, further conversion of packages to
- Makefile.autotools.in and we now build host versions of
- packages where needed for build time dependencies instead of
- relying on the correct versions being available on the build
- host. Ancient toolchain / busybox versions have furthermore
- been removed as announced in the 2009.02 release notes.
-
- New packages: flac, gob2, lzop, taglib, wpa_supplicant
-
- Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
- directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
- headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
- openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
- util-linux, xorg7, xerces
-
- Issues resolved (http://bugs.uclibc.org):
-
- #5,#77,#141,#143: Convert php package to Makefile.autotools.in
- and a ton of other improvements
- #19: page.h missing by util-linux
- #37: update libglib2 to version 2.18.4
- #61: tslib puts staging_dir into pkgconfig file
- #69: tar refuses to build
- #71,#175: ./wchar.h:41:12: error: empty filename in #include
- #73: Bump openssl package to the latest version
- #81: New package wpa_supplicant
- #99: new package: flac
- #101: update gstreamer packages
- #105,#313: menuconfig segfaults on tinyx if wchar is not
- selected
- #107: convert libvorbis to Makefile.autotools.in
- #109: Make pppd package avoid bsd err
- #111: binutils 2.17 fails to build when texinfo >= 4.10
- #133: Modify ncurses5-config to get correct include path
- #137: Bump php to version 5.2.9
- #139: Bump sqlite to 3.6.11 and convert to
- Makefile.autotools.in
- #145: Bump bind package to 9.5.1-P1 (security)
- #147: buildroot toolchain fails to build w/binutils-2.19.1
- #151: openssl package trivial fixes
- #161: vim fails on patching with errors in configure.patch
- #169: blackbox-0.70.1 does not build
- #177: xdriver_xf86-input-keyboard does not build
- #179: Upgrade dropbear to Makefile.autotools.in
- #181: Update to Xorg 7.4
- #187: ntfs-3g: could not build cross
- #191: alsa-lib ARM binaries always built with EABI
- #213: Bump wpa_supplicant package to version 0.6.9
- #217: Bump openssl package to 0.9.8k (security)
- #219: Toolchain build fails on m4
- #225: m4 macros are out of place
- #233: make ipv6 optional in iptables
- #237: ncftp: convert to Makefile.autotools.in
- #239: ntfs-3g: convert to Makefile.autotools.in
- #245: lzop: new package
- #271: Bump bind package to 9.5.1-P2 (security)
- #277: Bump sqlite package to 3.6.16
- #279: update libglib2 to version 2.20.1
- #281: update DirectFB to version 1.2.8
- #283: add taglib
- #285: compilation of samba fails if IPV6 support is missing
- #293: update samba to version 3.3.3
- #299: add shared-mime-info package
- #307: make openssl package respect build flags
diff --git a/src/native/buildroot-2019.02/COPYING b/src/native/buildroot-2019.02/COPYING
deleted file mode 100644
index 0c018b03..00000000
--- a/src/native/buildroot-2019.02/COPYING
+++ /dev/null
@@ -1,355 +0,0 @@
-With the exceptions below, Buildroot is distributed under the terms of
-the GNU General Public License, reproduced below; either version 2 of
-the License, or (at your option) any later version.
-
-Some files in Buildroot contain a different license statement. Those
-files are licensed under the license contained in the file itself.
-
-Buildroot also bundles patch files, which are applied to the sources
-of the various packages. Those patches are not covered by the license
-of Buildroot. Instead, they are covered by the license of the software
-to which the patches are applied. When said software is available
-under multiple licenses, the Buildroot patches are only provided under
-the publicly accessible licenses.
-
------------------------------------------------------------------
-
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.) You can apply it to
-your programs, too.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
- To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
- For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have. You must make sure that they, too, receive or can get the
-source code. And you must show them these terms so they know their
-rights.
-
- We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
- Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
- Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
- 1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
- 2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
-
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
- 3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable. However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
- 4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
- 5. You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
- 6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
- 7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all. For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices. Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
- 8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded. In such case, this License incorporates
-the limitation as if written in the body of this License.
-
- 9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation. If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
- 10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission. For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this. Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
- NO WARRANTY
-
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary. Here is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- , 1 April 1989
- Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.
diff --git a/src/native/buildroot-2019.02/Config.in b/src/native/buildroot-2019.02/Config.in
deleted file mode 100644
index d58d8dc0..00000000
--- a/src/native/buildroot-2019.02/Config.in
+++ /dev/null
@@ -1,862 +0,0 @@
-#
-
-mainmenu "Buildroot $BR2_VERSION Configuration"
-
-config BR2_HAVE_DOT_CONFIG
- bool
- default y
-
-config BR2_VERSION
- string
- option env="BR2_VERSION_FULL"
-
-config BR2_HOSTARCH
- string
- option env="HOSTARCH"
-
-config BR2_BUILD_DIR
- string
- option env="BUILD_DIR"
-
-# Hidden config symbols for packages to check system gcc version
-config BR2_HOST_GCC_VERSION
- string
- option env="HOST_GCC_VERSION"
-
-config BR2_HOST_GCC_AT_LEAST_4_5
- bool
- default y if BR2_HOST_GCC_VERSION = "4 5"
-
-config BR2_HOST_GCC_AT_LEAST_4_6
- bool
- default y if BR2_HOST_GCC_VERSION = "4 6"
- select BR2_HOST_GCC_AT_LEAST_4_5
-
-config BR2_HOST_GCC_AT_LEAST_4_7
- bool
- default y if BR2_HOST_GCC_VERSION = "4 7"
- select BR2_HOST_GCC_AT_LEAST_4_6
-
-config BR2_HOST_GCC_AT_LEAST_4_8
- bool
- default y if BR2_HOST_GCC_VERSION = "4 8"
- select BR2_HOST_GCC_AT_LEAST_4_7
-
-config BR2_HOST_GCC_AT_LEAST_4_9
- bool
- default y if BR2_HOST_GCC_VERSION = "4 9"
- select BR2_HOST_GCC_AT_LEAST_4_8
-
-config BR2_HOST_GCC_AT_LEAST_5
- bool
- default y if BR2_HOST_GCC_VERSION = "5"
- select BR2_HOST_GCC_AT_LEAST_4_9
-
-config BR2_HOST_GCC_AT_LEAST_6
- bool
- default y if BR2_HOST_GCC_VERSION = "6"
- select BR2_HOST_GCC_AT_LEAST_5
-
-config BR2_HOST_GCC_AT_LEAST_7
- bool
- default y if BR2_HOST_GCC_VERSION = "7"
- select BR2_HOST_GCC_AT_LEAST_6
-
-config BR2_HOST_GCC_AT_LEAST_8
- bool
- default y if BR2_HOST_GCC_VERSION = "8"
- select BR2_HOST_GCC_AT_LEAST_7
-
-# When adding new entries above, be sure to update
-# the HOSTCC_MAX_VERSION variable in the Makefile.
-
-# Hidden boolean selected by packages in need of Java in order to build
-# (example: kodi)
-config BR2_NEEDS_HOST_JAVA
- bool
-
-# Hidden boolean selected by packages in need of javac in order to build
-# (example: classpath)
-config BR2_NEEDS_HOST_JAVAC
- bool
-
-# Hidden boolean selected by packages in need of jar in order to build
-# (example: classpath)
-config BR2_NEEDS_HOST_JAR
- bool
-
-# Hidden boolean selected by pre-built packages for x86, when they
-# need to run on x86-64 machines (example: pre-built external
-# toolchains, binary tools like SAM-BA, etc.).
-config BR2_HOSTARCH_NEEDS_IA32_LIBS
- bool
-
-# Hidden boolean selected by packages that need to build 32 bits
-# binaries with the host compiler, even on 64 bits build machines (e.g
-# bootloaders).
-config BR2_HOSTARCH_NEEDS_IA32_COMPILER
- bool
-
-# Hidden boolean selected by packages that need the host to have an
-# UTF8 locale.
-config BR2_NEEDS_HOST_UTF8_LOCALE
- bool
-
-source "arch/Config.in"
-
-menu "Build options"
-
-menu "Commands"
-
-config BR2_WGET
- string "Wget command"
- default "wget --passive-ftp -nd -t 3"
-
-config BR2_SVN
- string "Subversion (svn) command"
- default "svn --non-interactive"
-
-config BR2_BZR
- string "Bazaar (bzr) command"
- default "bzr"
-
-config BR2_GIT
- string "Git command"
- default "git"
-
-config BR2_CVS
- string "CVS command"
- default "cvs"
-
-config BR2_LOCALFILES
- string "Local files retrieval command"
- default "cp"
-
-config BR2_SCP
- string "Secure copy (scp) command"
- default "scp"
-
-config BR2_HG
- string "Mercurial (hg) command"
- default "hg"
-
-config BR2_ZCAT
- string "zcat command"
- default "gzip -d -c"
- help
- Command to be used to extract a gzip'ed file to stdout. zcat
- is identical to gunzip -c except that the former may not be
- available on your system.
- Default is "gzip -d -c"
- Other possible values include "gunzip -c" or "zcat".
-
-config BR2_BZCAT
- string "bzcat command"
- default "bzcat"
- help
- Command to be used to extract a bzip2'ed file to stdout.
- bzcat is identical to bunzip2 -c except that the former may
- not be available on your system.
- Default is "bzcat"
- Other possible values include "bunzip2 -c" or "bzip2 -d -c".
-
-config BR2_XZCAT
- string "xzcat command"
- default "xzcat"
- help
- Command to be used to extract a xz'ed file to stdout.
- Default is "xzcat"
-
-config BR2_LZCAT
- string "lzcat command"
- default "lzip -d -c"
- help
- Command to be used to extract a lzip'ed file to stdout.
- Default is "lzip -d -c"
-
-config BR2_TAR_OPTIONS
- string "Tar options"
- default ""
- help
- Options to pass to tar when extracting the sources.
- E.g. " -v --exclude='*.svn*'" to exclude all .svn internal
- files and to be verbose.
-
-endmenu
-
-config BR2_DEFCONFIG_FROM_ENV
- string
- option env="BR2_DEFCONFIG"
-
-config BR2_DEFCONFIG
- string "Location to save buildroot config"
- default BR2_DEFCONFIG_FROM_ENV if BR2_DEFCONFIG_FROM_ENV != ""
- default "$(CONFIG_DIR)/defconfig"
- help
- When running 'make savedefconfig', the defconfig file will be
- saved in this location.
-
-config BR2_DL_DIR
- string "Download dir"
- default "$(TOPDIR)/dl"
- help
- Directory to store all the source files that we need to fetch.
- If the Linux shell environment has defined the BR2_DL_DIR
- environment variable, then this overrides this configuration
- item.
- The directory is organized with a subdirectory for each
- package. Each package has its own $(LIBFOO_DL_DIR) variable
- that can be used to find the correct path.
-
- The default is $(TOPDIR)/dl
-
-config BR2_HOST_DIR
- string "Host dir"
- default "$(BASE_DIR)/host"
- help
- Directory to store all the binary files that are built for the
- host. This includes the cross compilation toolchain when
- building the internal buildroot toolchain.
-
- The default is $(BASE_DIR)/host
-
-menu "Mirrors and Download locations"
-
-config BR2_PRIMARY_SITE
- string "Primary download site"
- default ""
- help
- Primary site to download from. If this option is set then
- buildroot will try to download package source first from this
- site and try the default if the file is not found.
- Valid URIs are:
- - URIs recognized by $(WGET)
- - local URIs of the form file://absolutepath
- - scp URIs of the form scp://[user@]host:path.
-
-config BR2_PRIMARY_SITE_ONLY
- bool "Only allow downloads from primary download site"
- depends on BR2_PRIMARY_SITE != ""
- help
- If this option is enabled, downloads will only be attempted
- from the primary download site. Other locations, like the
- package's official download location or the backup download
- site, will not be considered. Therefore, if the package is not
- present on the primary site, the download fails.
-
- This is useful for project developers who want to ensure that
- the project can be built even if the upstream tarball
- locations disappear.
-
-if !BR2_PRIMARY_SITE_ONLY
-
-config BR2_BACKUP_SITE
- string "Backup download site"
- default "http://sources.buildroot.net"
- help
- Backup site to download from. If this option is set then
- buildroot will fall back to download package sources from here
- if the normal location fails.
-
-config BR2_KERNEL_MIRROR
- string "Kernel.org mirror"
- default "https://cdn.kernel.org/pub"
- help
- kernel.org is mirrored on a number of servers around the
- world. The following allows you to select your preferred
- mirror. By default, a CDN is used, which automatically
- redirects to a mirror geographically close to you.
-
- Have a look on the kernel.org site for a list of mirrors, then
- enter the URL to the base directory. Examples:
-
- http://www.XX.kernel.org/pub (XX = country code)
- http://mirror.aarnet.edu.au/pub/ftp.kernel.org
-
-config BR2_GNU_MIRROR
- string "GNU Software mirror"
- default "http://ftpmirror.gnu.org"
- help
- GNU has multiple software mirrors scattered around the
- world. The following allows you to select your preferred
- mirror. By default, a generic address is used, which
- automatically selects an up-to-date and local mirror.
-
- Have a look on the gnu.org site for a list of mirrors, then
- enter the URL to the base directory. Examples:
-
- http://ftp.gnu.org/pub/gnu
- http://mirror.aarnet.edu.au/pub/gnu
-
-config BR2_LUAROCKS_MIRROR
- string "LuaRocks mirror"
- default "http://rocks.moonscript.org"
- help
- LuaRocks repository.
-
- See http://luarocks.org
-
-config BR2_CPAN_MIRROR
- string "CPAN mirror (Perl packages)"
- default "http://cpan.metacpan.org"
- help
- CPAN (Comprehensive Perl Archive Network) is a repository of
- Perl packages. It has multiple software mirrors scattered
- around the world. This option allows you to select a mirror.
-
- The list of mirrors is available at:
- http://search.cpan.org/mirror
-
-endif
-
-endmenu
-
-config BR2_JLEVEL
- int "Number of jobs to run simultaneously (0 for auto)"
- default "0"
- help
- Number of jobs to run simultaneously. If 0, determine
- automatically according to number of CPUs on the host system.
-
-config BR2_CCACHE
- bool "Enable compiler cache"
- help
- This option will enable the use of ccache, a compiler cache.
- It will cache the result of previous builds to speed up future
- builds. By default, the cache is stored in
- $HOME/.buildroot-ccache.
-
- Note that Buildroot does not try to invalidate the cache
- contents when the compiler changes in an incompatible way.
- Therefore, if you make a change to the compiler version and/or
- configuration, you are responsible for purging the ccache
- cache by removing the $HOME/.buildroot-ccache directory.
-
-if BR2_CCACHE
-
-config BR2_CCACHE_DIR
- string "Compiler cache location"
- default "$(HOME)/.buildroot-ccache"
- help
- Where ccache should store cached files.
- If the Linux shell environment has defined the BR2_CCACHE_DIR
- environment variable, then this overrides this configuration
- item.
-
-config BR2_CCACHE_INITIAL_SETUP
- string "Compiler cache initial setup"
- help
- Initial ccache settings to apply, such as --max-files or
- --max-size.
-
- For example, if your project is known to require more space
- than the default max cache size, then you might want to
- increase the cache size to a suitable amount using the -M
- (--max-size) option.
-
- The string you specify here is passed verbatim to ccache.
- Refer to ccache documentation for more details.
-
- These initial settings are applied after ccache has been
- compiled.
-
-config BR2_CCACHE_USE_BASEDIR
- bool "Use relative paths"
- default y
- help
- Allow ccache to convert absolute paths within the output
- directory into relative paths.
-
- During the build, many -I include directives are given with an
- absolute path. These absolute paths end up in the hashes that
- are computed by ccache. Therefore, when you build from a
- different directory, the hash will be different and the cached
- object will not be used.
-
- To improve cache performance, set this option to y. This
- allows ccache to rewrite absolute paths within the output
- directory into relative paths. Note that only paths within the
- output directory will be rewritten; therefore, if you change
- BR2_HOST_DIR to point outside the output directory and
- subsequently move it to a different location, this will lead
- to cache misses.
-
- This option has as a result that the debug information in the
- object files also has only relative paths. Therefore, make
- sure you cd to the build directory before starting gdb. See
- the section "COMPILING IN DIFFERENT DIRECTORIES" in the ccache
- manual for more information.
-
-endif
-
-config BR2_ENABLE_DEBUG
- bool "build packages with debugging symbols"
- help
- Build packages with debugging symbols enabled. All libraries
- and binaries in the 'staging' directory will have debugging
- symbols, which allows remote debugging even if libraries and
- binaries are stripped on the target. Whether libraries and
- binaries are stripped on the target is controlled by the
- BR2_STRIP_* options below.
-
-if BR2_ENABLE_DEBUG
-choice
- prompt "gcc debug level"
- default BR2_DEBUG_2
- help
- Set the debug level for gcc
-
-config BR2_DEBUG_1
- bool "debug level 1"
- help
- Debug level 1 produces minimal information, enough for making
- backtraces in parts of the program that you don't plan to
- debug. This includes descriptions of functions and external
- variables, but no information about local variables and no
- line numbers.
-
-config BR2_DEBUG_2
- bool "debug level 2"
- help
- The default gcc debug level is 2
-
-config BR2_DEBUG_3
- bool "debug level 3"
- help
- Level 3 includes extra information, such as all the macro
- definitions present in the program. Some debuggers support
- macro expansion when you use -g3.
-endchoice
-endif
-
-config BR2_STRIP_strip
- bool "strip target binaries"
- default y
- depends on !BR2_PACKAGE_HOST_ELF2FLT
- help
- Binaries and libraries in the target filesystem will be
- stripped using the normal 'strip' command. This allows to save
- space, mainly by removing debugging symbols. Debugging symbols
- on the target are needed for native debugging, but not when
- remote debugging is used.
-
-config BR2_STRIP_EXCLUDE_FILES
- string "executables that should not be stripped"
- default ""
- depends on BR2_STRIP_strip
- help
- You may specify a space-separated list of binaries and
- libraries here that should not be stripped on the target.
-
-config BR2_STRIP_EXCLUDE_DIRS
- string "directories that should be skipped when stripping"
- default ""
- depends on BR2_STRIP_strip
- help
- You may specify a space-separated list of directories that
- should be skipped when stripping. Binaries and libraries in
- these directories will not be touched. The directories should
- be specified relative to the target directory, without leading
- slash.
-
-choice
- prompt "gcc optimization level"
- default BR2_OPTIMIZE_S
- help
- Set the optimization level for gcc
-
-config BR2_OPTIMIZE_0
- bool "optimization level 0"
- help
- Do not optimize.
-
-config BR2_OPTIMIZE_1
- bool "optimization level 1"
- help
- Optimize. Optimizing compilation takes somewhat more time, and
- a lot more memory for a large function. With -O, the compiler
- tries to reduce code size and execution time, without
- performing any optimizations that take a great deal of
- compilation time. -O turns on the following optimization
- flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
- -fcprop-registers -floop-optimize -fif-conversion
- -fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
- -ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
- -ftree-fre -ftree-ch -funit-at-a-time -fmerge-constants. -O
- also turns on -fomit-frame-pointer on machines where doing so
- does not interfere with debugging.
-
-config BR2_OPTIMIZE_2
- bool "optimization level 2"
- help
- Optimize even more. GCC performs nearly all supported
- optimizations that do not involve a space-speed tradeoff. The
- compiler does not perform loop unrolling or function inlining
- when you specify -O2. As compared to -O, this option increases
- both compilation time and the performance of the generated
- code. -O2 turns on all optimization flags specified by -O. It
- also turns on the following optimization flags:
- -fthread-jumps -fcrossjumping -foptimize-sibling-calls
- -fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
- -fexpensive-optimizations -fstrength-reduce
- -frerun-cse-after-loop -frerun-loop-opt -fcaller-saves
- -fpeephole2 -fschedule-insns -fschedule-insns2
- -fsched-interblock -fsched-spec -fregmove -fstrict-aliasing
- -fdelete-null-pointer-checks -freorder-blocks
- -freorder-functions -falign-functions -falign-jumps
- -falign-loops -falign-labels -ftree-vrp -ftree-pre. Please
- note the warning under -fgcse about invoking -O2 on programs
- that use computed gotos.
-
-config BR2_OPTIMIZE_3
- bool "optimization level 3"
- help
- Optimize yet more. -O3 turns on all optimizations specified by
- -O2 and also turns on the -finline-functions, -funswitch-loops
- and -fgcse-after-reload options.
-
-config BR2_OPTIMIZE_G
- bool "optimize for debugging"
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
- help
- Optimize for debugging. This enables optimizations that do not
- interfere with debugging. It should be the optimization level
- of choice for the standard edit-compile-debug cycle, offering
- a reasonable level of optimization while maintaining fast
- compilation and a good debugging experience.
-
-config BR2_OPTIMIZE_S
- bool "optimize for size"
- help
- Optimize for size. -Os enables all -O2 optimizations that do
- not typically increase code size. It also performs further
- optimizations designed to reduce code size. -Os disables the
- following optimization flags: -falign-functions -falign-jumps
- -falign-loops -falign-labels -freorder-blocks
- -freorder-blocks-and-partition -fprefetch-loop-arrays
- -ftree-vect-loop-version
- This is the default.
-
-config BR2_OPTIMIZE_FAST
- bool "optimize for fast"
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
- help
- Optimize for fast. Disregard strict standards
- compliance. -Ofast enables all -O3 optimizations. It also
- enables optimizations that are not valid for all
- standard-compliant programs. It turns on -ffast-math and the
- Fortran-specific -fstack-arrays, unless -fmax-stack-var-size
- is specified, and -fno-protect-parens.
-
-endchoice
-
-config BR2_GOOGLE_BREAKPAD_ENABLE
- bool "Enable google-breakpad support"
- depends on BR2_INSTALL_LIBSTDCPP
- depends on BR2_HOST_GCC_AT_LEAST_4_8 # C++11
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
- depends on BR2_USE_WCHAR
- depends on BR2_TOOLCHAIN_HAS_THREADS
- depends on (BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC)
- depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS
- depends on BR2_PACKAGE_HOST_GOOGLE_BREAKPAD_ARCH_SUPPORTS
- select BR2_PACKAGE_GOOGLE_BREAKPAD
- help
- This option will enable the use of google breakpad, a library
- and tool suite that allows you to distribute an application to
- users with compiler-provided debugging information removed,
- record crashes in compact "minidump" files, send them back to
- your server and produce C and C++ stack traces from these
- minidumps. Breakpad can also write minidumps on request for
- programs that have not crashed.
-
-if BR2_GOOGLE_BREAKPAD_ENABLE
-
-config BR2_GOOGLE_BREAKPAD_INCLUDE_FILES
- string "List of executables and libraries to extract symbols from"
- default ""
- help
- You may specify a space-separated list of binaries and
- libraries with full paths relative to $(TARGET_DIR) of which
- debug symbols will be dumped for further use with google
- breakpad.
-
- A directory structure that can be used by minidump-stackwalk
- will be created at:
-
- $(STAGING_DIR)/usr/share/google-breakpad-symbols
-
-endif
-
-choice
- bool "libraries"
- default BR2_SHARED_LIBS if BR2_BINFMT_SUPPORTS_SHARED
- default BR2_STATIC_LIBS if !BR2_BINFMT_SUPPORTS_SHARED
- help
- Select the type of libraries you want to use on the target.
-
- The default is to build dynamic libraries and use those on the
- target filesystem, except when the architecture and/or the
- selected binary format does not support shared libraries.
-
-config BR2_STATIC_LIBS
- bool "static only"
- help
- Build and use only static libraries. No shared libraries will
- be installed on the target. This potentially increases your
- code size and should only be used if you know what you are
- doing. Note that some packages may not be available when this
- option is enabled, due to their need for dynamic library
- support.
-
-config BR2_SHARED_LIBS
- bool "shared only"
- depends on BR2_BINFMT_SUPPORTS_SHARED
- help
- Build and use only shared libraries. This is the recommended
- solution as it saves space and build time.
-
-config BR2_SHARED_STATIC_LIBS
- bool "both static and shared"
- depends on BR2_BINFMT_SUPPORTS_SHARED
- help
- Build both shared and static libraries, but link executables
- dynamically. While building both shared and static libraries
- take more time and more disk space, having static libraries
- may be useful to link some of the applications statically.
-
-endchoice
-
-config BR2_PACKAGE_OVERRIDE_FILE
- string "location of a package override file"
- default "$(CONFIG_DIR)/local.mk"
- help
- A package override file is a short makefile that contains
- variable definitions of the form _OVERRIDE_SRCDIR, which
- allows to tell Buildroot to use an existing directory as the
- source directory for a particular package. See the Buildroot
- documentation for more details on this feature.
-
-config BR2_GLOBAL_PATCH_DIR
- string "global patch directories"
- help
- You may specify a space separated list of one or more
- directories containing global package patches. For a specific
- version of a specific package ,
- patches are applied as follows:
-
- First, the default Buildroot patch set for the package is
- applied from the package's directory in Buildroot.
-
- Then for every directory - - that exists in
- BR2_GLOBAL_PATCH_DIR, if the directory
- /// exists,
- then all *.patch files in this directory will be applied.
-
- Otherwise, if the directory /
- exists, then all *.patch files in the directory will be
- applied.
-
-menu "Advanced"
-
-config BR2_COMPILER_PARANOID_UNSAFE_PATH
- bool "paranoid check of library/header paths"
- default y
- help
- By default, when this option is disabled, when the Buildroot
- cross-compiler will encounter an unsafe library or header path
- (such as /usr/include, or /usr/lib), the compiler will display
- a warning.
-
- By enabling this option, this warning is turned into an error,
- which will completely abort the build when such unsafe paths
- are encountered.
-
- Note that this mechanism is available for both the internal
- toolchain (through the toolchain wrapper and binutils patches)
- and external toolchain backends (through the toolchain
- wrapper).
-
-config BR2_FORCE_HOST_BUILD
- bool "Force the building of host dependencies"
- help
- Build all available host dependencies, even if they are
- already installed on the system.
-
- This option can be used to ensure that the download cache of
- source archives for packages remain consistent between
- different build hosts.
-
- This option will increase build time.
-
-config BR2_REPRODUCIBLE
- bool "Make the build reproducible (experimental)"
- # SOURCE_DATE_EPOCH support in toolchain-wrapper requires GCC 4.4
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_4
- help
- This option will remove all sources of non-reproducibility
- from the build process. For a given Buildroot configuration,
- this allows to generate exactly identical binaries from one
- build to the other, including on different machines.
-
- The current implementation is restricted to builds with the
- same output directory. Many (absolute) paths are recorded in
- intermediary files, and it is very likely that some of these
- paths leak into the target rootfs. If you build with the
- same O=... path, however, the result is identical.
-
- This is labeled as an experimental feature, as not all
- packages behave properly to ensure reproducibility.
-
-endmenu
-
-comment "Security Hardening Options"
-
-choice
- bool "Stack Smashing Protection"
- default BR2_SSP_ALL if BR2_ENABLE_SSP # legacy
- depends on BR2_TOOLCHAIN_HAS_SSP
- help
- Enable stack smashing protection support using GCC's
- -fstack-protector option family.
-
- See
- http://www.linuxfromscratch.org/hints/downloads/files/ssp.txt
- for details.
-
- Note that this requires the toolchain to have SSP support.
- This is always the case for glibc and eglibc toolchain, but is
- optional in uClibc toolchains.
-
-config BR2_SSP_NONE
- bool "None"
- help
- Disable stack-smashing protection.
-
-config BR2_SSP_REGULAR
- bool "-fstack-protector"
- help
- Emit extra code to check for buffer overflows, such as stack
- smashing attacks. This is done by adding a guard variable to
- functions with vulnerable objects. This includes functions
- that call alloca, and functions with buffers larger than 8
- bytes. The guards are initialized when a function is entered
- and then checked when the function exits. If a guard check
- fails, an error message is printed and the program exits.
-
-config BR2_SSP_STRONG
- bool "-fstack-protector-strong"
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
- help
- Like -fstack-protector but includes additional functions to be
- protected - those that have local array definitions, or have
- references to local frame addresses.
-
-comment "Stack Smashing Protection strong needs a toolchain w/ gcc >= 4.9"
- depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
-
-config BR2_SSP_ALL
- bool "-fstack-protector-all"
- help
- Like -fstack-protector except that all functions are
- protected. This option might have a significant performance
- impact on the compiled binaries.
-
-endchoice
-
-comment "Stack Smashing Protection needs a toolchain w/ SSP"
- depends on !BR2_TOOLCHAIN_HAS_SSP
-
-choice
- bool "RELRO Protection"
- depends on BR2_SHARED_LIBS
- help
- Enable a link-time protection know as RELRO (RELocation Read
- Only) which helps to protect from certain type of exploitation
- techniques altering the content of some ELF sections.
-
-config BR2_RELRO_NONE
- bool "None"
- help
- Disables Relocation link-time protections.
-
-config BR2_RELRO_PARTIAL
- bool "Partial"
- help
- This option makes the dynamic section not writeable after
- initialization (with almost no performance penalty).
-
-config BR2_RELRO_FULL
- bool "Full"
- help
- This option includes the partial configuration, but also marks
- the GOT as read-only at the cost of initialization time during
- program loading, i.e every time an executable is started.
-
-endchoice
-
-comment "RELocation Read Only (RELRO) needs shared libraries"
- depends on !BR2_SHARED_LIBS
-
-choice
- bool "Buffer-overflow Detection (FORTIFY_SOURCE)"
- depends on BR2_TOOLCHAIN_USES_GLIBC
- depends on !BR2_OPTIMIZE_0
- help
- Enable the _FORTIFY_SOURCE macro which introduces additional
- checks to detect buffer-overflows in the following standard
- library functions: memcpy, mempcpy, memmove, memset, strcpy,
- stpcpy, strncpy, strcat, strncat, sprintf, vsprintf, snprintf,
- vsnprintf, gets.
-
- NOTE: This feature requires an optimization level of s/1/2/3/g
-
- Support for this feature has been present since GCC 4.x.
-
-config BR2_FORTIFY_SOURCE_NONE
- bool "None"
- help
- Disables additional checks to detect buffer-overflows.
-
-config BR2_FORTIFY_SOURCE_1
- bool "Conservative"
- # gcc bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61164
- depends on !BR2_TOOLCHAIN_BUILDROOT || BR2_TOOLCHAIN_GCC_AT_LEAST_6
- help
- This option sets _FORTIFY_SOURCE to 1 and only introduces
- checks that shouldn't change the behavior of conforming
- programs. Adds checks at compile-time only.
-
-config BR2_FORTIFY_SOURCE_2
- bool "Aggressive"
- # gcc bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61164
- depends on !BR2_TOOLCHAIN_BUILDROOT || BR2_TOOLCHAIN_GCC_AT_LEAST_6
- help
- This option sets _FORTIFY_SOURCES to 2 and some more
- checking is added, but some conforming programs might fail.
- Also adds checks at run-time (detected buffer overflow
- terminates the program)
-
-endchoice
-
-comment "Fortify Source needs a glibc toolchain and optimization"
- depends on (!BR2_TOOLCHAIN_USES_GLIBC || BR2_OPTIMIZE_0)
-endmenu
-
-source "toolchain/Config.in"
-
-source "system/Config.in"
-
-source "linux/Config.in"
-
-source "package/Config.in"
-
-source "fs/Config.in"
-
-source "boot/Config.in"
-
-source "package/Config.in.host"
-
-source "Config.in.legacy"
-
-source "$BR2_BUILD_DIR/.br2-external.in"
diff --git a/src/native/buildroot-2019.02/Config.in.legacy b/src/native/buildroot-2019.02/Config.in.legacy
deleted file mode 100644
index 25b48fba..00000000
--- a/src/native/buildroot-2019.02/Config.in.legacy
+++ /dev/null
@@ -1,4250 +0,0 @@
-#
-# Config.in.legacy - support for backward compatibility
-#
-# When an existing Config.in symbol is removed, it should be added again in
-# this file, and take appropriate action to approximate backward compatibility.
-# This will make the transition for the user more convenient.
-#
-# When adding legacy symbols to this file, add them to the front. The oldest
-# symbols will be removed again after about two years.
-#
-# The symbol should be copied as-is from the place where it was previously
-# defined, but the help text should be removed or replaced with something that
-# explains how to fix it.
-#
-# For bool options, the old symbol should select BR2_LEGACY, so that the user
-# is informed at build-time about selected legacy options.
-# If there is an equivalent (set of) new symbols, these should be select'ed by
-# the old symbol for backwards compatibility.
-# It is not possible to select an option that is part of a choice. In that
-# case, the new option should use the old symbol as default. This requires a
-# change outside of Config.in.legacy, and this should be clearly marked as such
-# in a comment, so that removal of legacy options also include the removal of
-# these external references.
-#
-# [Example: renaming a bool option that is part of a choice from FOO to BAR]
-# original choice:
-# choice
-# prompt "Choose foobar"
-# config BR2_FOO_1
-# bool "foobar 1"
-# config BR2_FOO_2
-# bool "foobar 2"
-# endchoice
-#
-# becomes:
-# choice
-# prompt "Choose foobar"
-# default BR2_BAR_1 if BR2_FOO_1 # legacy
-# default BR2_BAR_2 if BR2_FOO_2 # legacy
-# config BR2_BAR_1
-# bool "foobar 1"
-# config BR2_BAR_2
-# bool "foobar 2"
-# endchoice
-#
-# and in Config.in.legacy:
-# config BR2_FOO_1
-# bool "foobar 1 has been renamed"
-# help
-#
-# # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
-# config BR2_FOO_2
-# bool "foobar 2 has been renamed"
-# help
-#
-# # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
-#
-# [End of example]
-#
-# For string options, it is not possible to directly select another symbol. In
-# this case, a hidden wrap bool option has to be added, that defaults to y if
-# the old string is not set at its default value. The wrap symbol should select
-# BR2_LEGACY.
-# If the original symbol has been renamed, the new symbol should use the value
-# of the old symbol as default. Like for choice options, a comment should be
-# added to flag that the symbol is still used in another file.
-#
-# [Example: renaming a string option from FOO to BAR]
-# original symbol:
-# config BR2_FOO_STRING
-# string "Some foo string"
-#
-# becomes:
-# config BR2_BAR_STRING
-# string "Some bar string"
-# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
-#
-# and in Config.in.legacy:
-# config BR2_FOO_STRING
-# string "The foo string has been renamed"
-# help
-#
-#
-# config BR2_FOO_STRING_WRAP
-# bool
-# default y if BR2_FOO_STRING != ""
-# select BR2_LEGACY
-#
-# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
-#
-# [End of example]
-
-config BR2_SKIP_LEGACY
- bool
- option env="SKIP_LEGACY"
-
-if !BR2_SKIP_LEGACY
-
-config BR2_LEGACY
- bool
- help
- This option is selected automatically when your old .config
- uses an option that no longer exists in current buildroot. In
- that case, the build will fail. Look for config options which
- are selected in the menu below: they no longer exist and
- should be replaced by something else.
-
-# This comment fits exactly in a 80-column display
-comment "Legacy detected: check the content of the menu below"
- depends on BR2_LEGACY
-
-menu "Legacy config options"
-
-if BR2_LEGACY
-comment "----------------------------------------------------"
-comment "Your old configuration uses legacy options that no "
-comment "longer exist in buildroot, as indicated in the menu "
-comment "below. As long as these options stay selected, or in"
-comment "case of string options are non-empty, the build "
-comment "will fail. "
-comment "* "
-comment "Where possible, an automatic conversion from old to "
-comment "new symbols has been performed. Before making any "
-comment "change in this legacy menu, make sure to exit the "
-comment "configuration editor a first time and save the "
-comment "configuration. Otherwise, the automatic conversion "
-comment "of symbols will be lost. "
-comment "* "
-comment "After this initial save, reopen the configuration "
-comment "editor, inspect the options selected below, read "
-comment "their help texts, and verify/update the new "
-comment "configuration in the corresponding configuration "
-comment "menus. When everything is ok, you can disable the "
-comment "legacy options in the menu below. Once you have "
-comment "disabled all legacy options, this text will "
-comment "disappear and you will be able to start the build. "
-comment "* "
-comment "Note: legacy options older than 5 years have been "
-comment "removed, and configuration files that still have "
-comment "those options set, will fail to build, or run in "
-comment "unpredictable ways. "
-comment "----------------------------------------------------"
-endif
-
-###############################################################################
-
-comment "Legacy options removed in 2019.02"
-
-config BR2_PACKAGE_QT
- bool "qt package removed"
- select BR2_LEGACY
- help
- The qt package was removed.
-
-config BR2_PACKAGE_QTUIO
- bool "qtuio package removed"
- select BR2_LEGACY
- help
- The qtuio package was removed.
-
-config BR2_PACKAGE_PINENTRY_QT4
- bool "pinentry-qt4 option removed"
- select BR2_LEGACY
- help
- The pinentry-qt4 option was removed.
-
-config BR2_PACKAGE_POPPLER_QT
- bool "poppler qt option removed"
- select BR2_LEGACY
- help
- The poppler qt option was removed.
-
-config BR2_PACKAGE_OPENCV3_WITH_QT
- bool "opencv3 qt backend option removed"
- select BR2_LEGACY
- help
- The opencv3 qt backend option was removed.
-
-config BR2_PACKAGE_OPENCV_WITH_QT
- bool "opencv qt backend option removed"
- select BR2_LEGACY
- help
- The opencv qt backend option was removed.
-
-config BR2_PACKAGE_AMD_CATALYST_CCCLE
- bool "catalyst control center option removed"
- select BR2_LEGACY
- help
- The AMD Catalyst Control Center option was removed.
-
-config BR2_PACKAGE_SDL_QTOPIA
- bool "sdl qtopia video driver option removed"
- select BR2_LEGACY
- help
- The SDL QTopia video driver option was removed.
-
-config BR2_PACKAGE_PYTHON_PYQT
- bool "python-pyqt package removed"
- select BR2_LEGACY
- help
- The python-pyqt package was removed. Consider python-pyqt5
- instead.
-
-config BR2_PACKAGE_GNURADIO_QTGUI
- bool "gnuradio gr-qtgui option removed"
- select BR2_LEGACY
- help
- The gr-qtgui option was removed.
-
-config BR2_PACKAGE_LUACRYPTO
- bool "luacrypto package removed"
- select BR2_LEGACY
- help
- The luacrypto package was removed. Consider luaossl instead.
-
-config BR2_PACKAGE_TN5250
- bool "tn5250 package removed"
- select BR2_LEGACY
- help
- The tn5250 package was removed.
-
-config BR2_PACKAGE_BOOST_SIGNALS
- bool "Boost signals removed"
- select BR2_LEGACY
- help
- Its removal was announced in boost 1.68 and its deprecation
- was announced in 1.54. Users are encouraged to use Signals2
- instead.
-
-config BR2_PACKAGE_FFTW_PRECISION_SINGLE
- bool "single"
- select BR2_LEGACY
- select BR2_PACKAGE_FFTW_SINGLE
- help
- This option has been removed in favor of
- BR2_PACKAGE_FFTW_SINGLE.
-
-config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
- bool "double"
- select BR2_LEGACY
- select BR2_PACKAGE_FFTW_DOUBLE
- help
- This option has been removed in favor of
- BR2_PACKAGE_FFTW_DOUBLE.
-
-config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
- bool "long double"
- depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
- (BR2_arm || BR2_mips || BR2_mipsel))
- select BR2_LEGACY
- select BR2_PACKAGE_FFTW_LONG_DOUBLE
- help
- This option has been removed in favor of
- BR2_PACKAGE_FFTW_LONG_DOUBLE.
-
-config BR2_PACKAGE_FFTW_PRECISION_QUAD
- bool "quad"
- depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
- select BR2_LEGACY
- select BR2_PACKAGE_FFTW_QUAD
- help
- This option has been removed in favor of
- BR2_PACKAGE_FFTW_QUAD.
-
-config BR2_PACKAGE_LUA_5_2
- bool "Lua 5.2.x version removed"
- select BR2_LEGACY
- select BR2_PACKAGE_LUA_5_3
- help
- The Lua 5.2.x version was removed.
-
-config BR2_TARGET_GENERIC_PASSWD_MD5
- bool "target passwd md5 format support has been removed"
- select BR2_LEGACY
- help
- The default has been moved to SHA256 and all C libraries
- now support that method by default
-
-comment "Legacy options removed in 2018.11"
-
-config BR2_TARGET_XLOADER
- bool "xloader has been removed"
- select BR2_LEGACY
- help
- The package has been removed as u-boot SPL provides
- similar functionality
-
-config BR2_PACKAGE_TIDSP_BINARIES
- bool "tidsp-binaries package removed"
- select BR2_LEGACY
- help
- The tidsp-binaries package was removed.
-
-config BR2_PACKAGE_DSP_TOOLS
- bool "dsp-tools package removed"
- select BR2_LEGACY
- help
- The dsp-tools package was removed.
-
-config BR2_PACKAGE_GST_DSP
- bool "gst-dsp package removed"
- select BR2_LEGACY
- help
- The gst-dsp package was removed.
-
-config BR2_PACKAGE_BOOTUTILS
- bool "bootutils package removed"
- select BR2_LEGACY
- help
- The bootutils package was removed.
-
-config BR2_PACKAGE_EXPEDITE
- bool "expedite package has been removed"
- select BR2_LEGACY
- help
- expedite is not actively maintained anymore.
- https://sourceforge.net/p/enlightenment/mailman/message/36428571
-
-config BR2_PACKAGE_MESA3D_OPENGL_TEXTURE_FLOAT
- bool "mesa3d opengl texture float option removed"
- select BR2_LEGACY
- help
- mesa3d now unconditionally enables floating-point textures,
- as the corresponding patent has expired.
-
-config BR2_KERNEL_HEADERS_4_10
- bool "kernel headers version 4.10.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.10.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_11
- bool "kernel headers version 4.11.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.11.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_12
- bool "kernel headers version 4.12.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.12.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_13
- bool "kernel headers version 4.13.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.13.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_15
- bool "kernel headers version 4.15.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.15.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_17
- bool "kernel headers version 4.17.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.17.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_PACKAGE_LIBNFTNL_XML
- bool "libnftl no longer supports XML output"
- select BR2_LEGACY
- help
- libnftnl removed integration with libmxml.
-
-config BR2_KERNEL_HEADERS_3_2
- bool "kernel headers version 3.2.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.2.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_1
- bool "kernel headers version 4.1.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.1.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_16
- bool "kernel headers version 4.16.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.16.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_18
- bool "kernel headers version 4.18.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.18.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-###############################################################################
-comment "Legacy options removed in 2018.08"
-
-config BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT
- bool "docker-engine static client option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_DOCKER_CLI_STATIC
- help
- BR2_PACKAGE_DOCKER_ENGINE_STATIC_CLIENT has been renamed to
- BR2_PACKAGE_DOCKER_CLI_STATIC, following the package split of
- docker-engine and docker-cli.
-
-config BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_19
- bool "Modular X.org server was updated to version 1.20.0"
- select BR2_LEGACY
- select BR2_PACKAGE_XSERVER_XORG_SERVER_V_1_20
- help
- Modular X.org server was updated to version 1.20.0
-
-config BR2_PACKAGE_XPROTO_APPLEWMPROTO
- bool "xproto-applewmproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-applewmproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_BIGREQSPROTO
- bool "xproto-bigreqsproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-bigreqsproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
- bool "xproto-compositeproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-compositeproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_DAMAGEPROTO
- bool "xproto-dameproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-dameproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_DMXPROTO
- bool "xproto-dmxproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-dmxproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_DRI2PROTO
- bool "xproto-dri2proto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-dri2proto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_DRI3PROTO
- bool "xproto-dri3proto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-dri3proto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_FIXESPROTO
- bool "xproto-fixesproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-fixesproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
- bool "xproto-fontcacheproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-fontcacheproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_FONTSPROTO
- bool "xproto-fontsproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-fontsproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_GLPROTO
- bool "xproto-glproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-glproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_INPUTPROTO
- bool "xproto-inputproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-inputproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_KBPROTO
- bool "xproto-kbproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-kbproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_PRESENTPROTO
- bool "xproto-presentproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-presentproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_RANDRPROTO
- bool "xproto-randrproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-randrproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_RECORDPROTO
- bool "xproto-recordproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-recordproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_RENDERPROTO
- bool "xproto-renderproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-renderproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_RESOURCEPROTO
- bool "xproto-resourceproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-resourceproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
- bool "xproto-scrnsaverprot package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-scrnsaverprot package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_VIDEOPROTO
- bool "xproto-videoproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-videoproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
- bool "xproto-windowswmproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-windowswmproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XCMISCPROTO
- bool "xproto-xcmiscproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xcmiscproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XEXTPROTO
- bool "xproto-xextproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xextproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
- bool "xproto-xf86bigfontproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xf86bigfontproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XF86DGAPROTO
- bool "xproto-xf86dgaproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xf86dgaproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XF86DRIPROTO
- bool "xproto-xf86driproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xf86driproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
- bool "xproto-xf86vidmodeproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xf86vidmodeproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XINERAMAPROTO
- bool "xproto-xineramaproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xineramaproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XPROTO
- bool "xproto-xproto package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xproto package has been replaced by the
- xorgproto package, which combines all xproto_* packages.
-
-config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
- bool "xproto-xproxymanagementprotocol package replaced by xorgproto"
- select BR2_LEGACY
- select BR2_PACKAGE_XORGPROTO
- help
- The xproto-xproxymanagementprotocol package has been
- replaced by the xorgproto package, which combines all
- xproto_* packages.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_OPENGL
- bool "gst1-plugins-bad opengl option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
- help
- The opengl option has been moved from gst1-plugins-bad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLES2
- bool "gst1-plugins-bad gles2 option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2
- help
- The gles2 option has been moved from gst1-plugins-bad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_GLX
- bool "gst1-plugins-bad glx option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLX
- help
- The glx option has been moved from gst1-plugins-bad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_EGL
- bool "gst1-plugins-bad egl option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_EGL
- help
- The egl option has been moved from gst1-plugins-bad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_X11
- bool "gst1-plugins-bad x11 option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_X11
- help
- The x11 option has been moved from gst1-plugins-bad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_WAYLAND
- bool "gst1-plugins-bad wayland option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_WAYLAND
- help
- The wayland option has been moved from gst1-plugins-bad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_LIB_OPENGL_DISPMANX
- bool "gst1-plugins-bad dispmanx option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_DISPMANX
- help
- The dispmanx option has been moved from gst1-plugins-mad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
- bool "gst1-plugins-bad audiomixer option moved to gst1-plugins-base"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOMIXER
- help
- The audiomixer option has been moved from gst1-plugins-bad to
- gst1-plugins-base.
-
-config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
- bool "gst1-plugins-ugly lame option moved to gst1-plugins-good"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME
- help
- The lame option has been moved from gst1-plugins-ugly to
- gst1-plugins-good.
-
-config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
- bool "gst1-plugins-ugly mpg123 option moved to gst1-plugins-good"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123
- help
- The mpg123 option has been moved from gst1-plugins-ugly to
- gst1-plugins-good.
-
-config BR2_GDB_VERSION_7_11
- bool "gdb 7.11 has been removed"
- select BR2_LEGACY
- help
- The 7.11 version of gdb has been removed. Use a newer version
- instead.
-
-config BR2_GDB_VERSION_7_10
- bool "gdb 7.10 has been removed"
- select BR2_LEGACY
- help
- The 7.10 version of gdb has been removed. Use a newer version
- instead.
-
-###############################################################################
-comment "Legacy options removed in 2018.05"
-
-config BR2_PACKAGE_MEDIAART_BACKEND_NONE
- bool "libmediaart none backend option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_MEDIAART_BACKEND_NONE has been renamed to
- BR2_PACKAGE_LIBMEDIAART_BACKEND_NONE
-
-config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
- bool "libmediaart gdk-pixbuf backend option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF has been renamed to
- BR2_PACKAGE_LIBMEDIAART_BACKEND_GDK_PIXBUF
-
-config BR2_PACKAGE_MEDIAART_BACKEND_GDK_PIXBUF
- bool "libmediaart qt backend option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_MEDIAART_BACKEND_QT has been renamed to
- BR2_PACKAGE_LIBMEDIAART_BACKEND_QT
-
-# Note: BR2_PACKAGE_TI_SGX_AM335X is still referenced from
-# package/ti-sgx-km/Config.in
-config BR2_PACKAGE_TI_SGX_AM335X
- bool "ti-sgx-km AM335X option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_TI_SGX_AM335X has been renamed to
- BR2_PACKAGE_TI_SGX_KM_AM335X.
-
-# Note: BR2_PACKAGE_TI_SGX_AM437X is still referenced from
-# package/ti-sgx-km/Config.in
-config BR2_PACKAGE_TI_SGX_AM437X
- bool "ti-sgx-km AM437X option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_TI_SGX_AM437X has been renamed to
- BR2_PACKAGE_TI_SGX_KM_AM437X.
-
-# Note: BR2_PACKAGE_TI_SGX_AM4430 is still referenced from
-# package/ti-sgx-km/Config.in
-config BR2_PACKAGE_TI_SGX_AM4430
- bool "ti-sgx-km AM4430 option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_TI_SGX_AM4430 has been renamed to
- BR2_PACKAGE_TI_SGX_KM_AM4430.
-
-# Note: BR2_PACKAGE_TI_SGX_AM5430 is still referenced from
-# package/ti-sgx-km/Config.in
-config BR2_PACKAGE_TI_SGX_AM5430
- bool "ti-sgx-km AM5430 option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_TI_SGX_AM5430 has been renamed to
- BR2_PACKAGE_TI_SGX_KM_AM5430.
-
-config BR2_PACKAGE_JANUS_AUDIO_BRIDGE
- bool "janus-gateway audio-bridge option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_AUDIO_BRIDGE has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_AUDIO_BRIDGE.
-
-config BR2_PACKAGE_JANUS_ECHO_TEST
- bool "janus-gateway echo-test option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_ECHO_TEST has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_ECHO_TEST.
-
-config BR2_PACKAGE_JANUS_RECORDPLAY
- bool "janus-gateway recordplay option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_RECORDPLAY has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_RECORDPLAY.
-
-config BR2_PACKAGE_JANUS_SIP_GATEWAY
- bool "janus-gateway sip-gateway option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_SIP_GATEWAY has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_SIP_GATEWAY.
-
-config BR2_PACKAGE_JANUS_STREAMING
- bool "janus-gateway streaming option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_STREAMING
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_STREAMING has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_STREAMING.
-
-config BR2_PACKAGE_JANUS_TEXT_ROOM
- bool "janus-gateway text-room option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_TEXT_ROOM has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_TEXT_ROOM.
-
-config BR2_PACKAGE_JANUS_VIDEO_CALL
- bool "janus-gateway video-call option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_VIDEO_CALL has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_VIDEO_CALL.
-
-config BR2_PACKAGE_JANUS_VIDEO_ROOM
- bool "janus-gateway video-room option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_VIDEO_ROOM has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_VIDEO_ROOM.
-
-config BR2_PACKAGE_JANUS_MQTT
- bool "janus-gateway mqtt option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_MQTT
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_MQTT has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_MQTT.
-
-config BR2_PACKAGE_JANUS_RABBITMQ
- bool "janus-gateway rabbitmq option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_RABBITMQ has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ.
-
-config BR2_PACKAGE_JANUS_REST
- bool "janus-gateway rest option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_REST
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_REST has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_REST.
-
-config BR2_PACKAGE_JANUS_UNIX_SOCKETS
- bool "janus-gateway unix-sockets option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_UNIX_SOCKETS has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_UNIX_SOCKETS.
-
-config BR2_PACKAGE_JANUS_WEBSOCKETS
- bool "janus-gateway websockets option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS
- help
- For consistency reasons, the janus-gateway option
- BR2_PACKAGE_JANUS_WEBSOCKETS has been renamed to
- BR2_PACKAGE_JANUS_GATEWAY_WEBSOCKETS.
-
-config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
- bool "ipsec-tools security context disable option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_IPSEC_SECCTX_DISABLE was renamed to
- BR2_PACKAGE_IPSEC_TOOLS_SECCTX_DISABLE.
-
-config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
- bool "ipsec-tools SELinux security context enable option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_IPSEC_SECCTX_ENABLE was renamed to
- BR2_PACKAGE_IPSEC_TOOLS_SECCTX_ENABLE.
-
-config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
- bool "ipsec-tools kernel security context enable option renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the option
- BR2_PACKAGE_IPSEC_SECCTX_KERNEL was renamed to
- BR2_PACKAGE_IPSEC_TOOLS_SECCTX_KERNEL.
-
-config BR2_PACKAGE_LIBTFDI_CPP
- bool "libftdi C++ bindings option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_LIBFTDI_CPP
- help
- The option BR2_PACKAGE_LIBTFDI_CPP was renamed to
- BR2_PACKAGE_LIBFTDI_CPP in order to fix a typo in the option
- name.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE
- bool "jquery-ui-themes option black-tie renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- black-tie theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_BLACK_TIE to
- BR2_PACKAGE_JQUERY_UI_THEMES_BLACK_TIE.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_BLITZER
- bool "jquery-ui-themes option blitzer renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- blitzer theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_BLITZER to
- BR2_PACKAGE_JQUERY_UI_THEMES_BLITZER.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO
- bool "jquery-ui-themes option cupertino renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- cupertino theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_CUPERTINO to
- BR2_PACKAGE_JQUERY_UI_THEMES_CUPERTINO.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE
- bool "jquery-ui-themes option dark-hive renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- dark-hive theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_DARK_HIVE to
- BR2_PACKAGE_JQUERY_UI_THEMES_DARK_HIVE.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV
- bool "jquery-ui-themes option dot-luv renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- dot-luv theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_DOT_LUV to
- BR2_PACKAGE_JQUERY_UI_THEMES_DOT_LUV.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT
- bool "jquery-ui-themes option eggplant renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- eggplant theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_EGGPLANT to
- BR2_PACKAGE_JQUERY_UI_THEMES_EGGPLANT.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE
- bool "jquery-ui-themes option excite-bike renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- excite-bike theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_EXCITE_BIKE to
- BR2_PACKAGE_JQUERY_UI_THEMES_EXCITE_BIKE.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_FLICK
- bool "jquery-ui-themes option flick renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- flick theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_FLICK to
- BR2_PACKAGE_JQUERY_UI_THEMES_FLICK.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS
- bool "jquery-ui-themes option hot-sneaks renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- hot-sneaks theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_HOT_SNEAKS to
- BR2_PACKAGE_JQUERY_UI_THEMES_HOT_SNEAKS.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY
- bool "jquery-ui-themes option humanity renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- humanity theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_HUMANITY to
- BR2_PACKAGE_JQUERY_UI_THEMES_HUMANITY.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG
- bool "jquery-ui-themes option le-frog renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- le-frog theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_LE_FROG to
- BR2_PACKAGE_JQUERY_UI_THEMES_LE_FROG.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC
- bool "jquery-ui-themes option mint-choc renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- mint-choc theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_MINT_CHOC to
- BR2_PACKAGE_JQUERY_UI_THEMES_MINT_CHOC.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST
- bool "jquery-ui-themes option overcast renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- overcast theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_OVERCAST to
- BR2_PACKAGE_JQUERY_UI_THEMES_OVERCAST.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER
- bool "jquery-ui-themes option pepper-grinder renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- pepper-grinder theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_PEPPER_GRINDER to
- BR2_PACKAGE_JQUERY_UI_THEMES_PEPPER_GRINDER.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_REDMOND
- bool "jquery-ui-themes option redmond renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- redmond theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_REDMOND to
- BR2_PACKAGE_JQUERY_UI_THEMES_REDMOND.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS
- bool "jquery-ui-themes option smoothness renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- smoothness theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_SMOOTHNESS to
- BR2_PACKAGE_JQUERY_UI_THEMES_SMOOTHNESS.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET
- bool "jquery-ui-themes option south-street renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- south-street theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_SOUTH_STREET to
- BR2_PACKAGE_JQUERY_UI_THEMES_SOUTH_STREET.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_START
- bool "jquery-ui-themes option start renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- start theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_START to
- BR2_PACKAGE_JQUERY_UI_THEMES_START.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_SUNNY
- bool "jquery-ui-themes option sunny renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- sunny theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_SUNNY to
- BR2_PACKAGE_JQUERY_UI_THEMES_SUNNY.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE
- bool "jquery-ui-themes option swanky-purse renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- swanky-purse theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_SWANKY_PURSE to
- BR2_PACKAGE_JQUERY_UI_THEMES_SWANKY_PURSE.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC
- bool "jquery-ui-themes option trontastic renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- trontastic theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_TRONTASTIC to
- BR2_PACKAGE_JQUERY_UI_THEMES_TRONTASTIC.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS
- bool "jquery-ui-themes option ui-darkness renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- ui-darkness theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_UI_DARKNESS to
- BR2_PACKAGE_JQUERY_UI_THEMES_UI_DARKNESS.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS
- bool "jquery-ui-themes option ui-lightness renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- ui-lightness theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_UI_LIGHTNESS to
- BR2_PACKAGE_JQUERY_UI_THEMES_UI_LIGHTNESS.
-
-config BR2_PACKAGE_JQUERY_UI_THEME_VADER
- bool "jquery-ui-themes option vader renamed"
- select BR2_LEGACY
- help
- For consistency reasons, the jquery-ui-themes option for the
- vader theme has been renamed from
- BR2_PACKAGE_JQUERY_UI_THEME_VADER to
- BR2_PACKAGE_JQUERY_UI_THEMES_VADER.
-
-config BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH
- bool "bluez5-utils health plugin option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH
- help
- For consistency reasons, the option
- BR2_PACKAGE_BLUEZ5_PLUGINS_HEALTH has been renamed to
- BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH.
-
-config BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI
- bool "bluez5-utils midi plugin option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI
- help
- For consistency reasons, the option
- BR2_PACKAGE_BLUEZ5_PLUGINS_MIDI has been renamed to
- BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI.
-
-config BR2_PACKAGE_BLUEZ5_PLUGINS_NFC
- bool "bluez5-utils nfc plugin option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC
- help
- For consistency reasons, the option
- BR2_PACKAGE_BLUEZ5_PLUGINS_NFC has been renamed to
- BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_NFC.
-
-config BR2_PACKAGE_BLUEZ5_PLUGINS_SAP
- bool "bluez5-utils sap plugin option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP
- help
- For consistency reasons, the option
- BR2_PACKAGE_BLUEZ5_PLUGINS_SAP has been renamed to
- BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SAP.
-
-config BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS
- bool "bluez5-utils sixaxis plugin option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS
- help
- For consistency reasons, the option
- BR2_PACKAGE_BLUEZ5_PLUGINS_SIXAXIS has been renamed to
- BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_SIXAXIS.
-
-config BR2_PACKAGE_TRANSMISSION_REMOTE
- bool "transmission remote tool option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_TRANSMISSION_DAEMON
- help
- Upstream does not provide a separate configure option for
- the tool transmission-remote, it is built when the
- transmission daemon has been enabled. Therefore, Buildroot
- has automatically enabled BR2_PACKAGE_TRANSMISSION_DAEMON
- for you.
-
-config BR2_PACKAGE_LIBKCAPI_APPS
- bool "libkcapi test applications removed"
- select BR2_LEGACY
- select BR2_PACKAGE_LIBKCAPI_HASHER if !BR2_STATIC_LIBS
- select BR2_PACKAGE_LIBKCAPI_RNGAPP
- select BR2_PACKAGE_LIBKCAPI_SPEED
- select BR2_PACKAGE_LIBKCAPI_TEST
- help
- Test applications (hasher, rng read, speed-test, test) now
- have their own configuration options in the libkcapi menu.
-
-config BR2_PACKAGE_MPLAYER
- bool "mplayer package removed"
- select BR2_LEGACY
- help
- The mplayer package was removed.
-
-config BR2_PACKAGE_MPLAYER_MPLAYER
- bool "mplayer package removed"
- select BR2_LEGACY
- help
- The mplayer package was removed.
-
-config BR2_PACKAGE_MPLAYER_MENCODER
- bool "mplayer package removed"
- select BR2_LEGACY
- help
- The mplayer package was removed.
-
-config BR2_PACKAGE_LIBPLAYER_MPLAYER
- bool "mplayer support in libplayer removed"
- select BR2_LEGACY
- help
- The mplayer package was removed.
-
-config BR2_PACKAGE_IQVLINUX
- bool "iqvlinux package removed"
- select BR2_LEGACY
- help
- This package contained a kernel module from Intel, which
- could only be used together with Intel userspace tools
- provided under NDA, which also come with the same kernel
- module. The copy of the kernel module available on
- SourceForge is provided only to comply with the GPLv2
- requirement. Intel engineers were even surprised it even
- built and were not willing to make any effort to fix their
- tarball naming to contain a version number. Therefore, it
- does not make sense for Buildroot to provide such a package.
-
- See https://sourceforge.net/p/e1000/bugs/589/ for the
- discussion.
-
-config BR2_BINFMT_FLAT_SEP_DATA
- bool "binfmt FLAT with separate code and data removed"
- select BR2_LEGACY
- help
- This FLAT binary format was only used on Blackfin, which has
- been removed.
-
-config BR2_bfin
- bool "Blackfin architecture support removed"
- select BR2_LEGACY
- help
- Following the removal of Blackfin support for the upstream
- Linux kernel, Buildroot has removed support for this CPU
- architecture.
-
-config BR2_PACKAGE_KODI_ADSP_BASIC
- bool "kodi-adsp-basic package removed"
- select BR2_LEGACY
- help
- kodi-adsp-basic is unmaintained
-
-config BR2_PACKAGE_KODI_ADSP_FREESURROUND
- bool "kodi-adsp-freesurround package removed"
- select BR2_LEGACY
- help
- kodi-adsp-freesurround is unmaintained
-
-###############################################################################
-comment "Legacy options removed in 2018.02"
-
-config BR2_KERNEL_HEADERS_3_4
- bool "kernel headers version 3.4.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.4.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_3_10
- bool "kernel headers version 3.10.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.10.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_3_12
- bool "kernel headers version 3.12.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.12.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_BINUTILS_VERSION_2_27_X
- bool "binutils version 2.27 support removed"
- select BR2_LEGACY
- help
- Support for binutils version 2.27 has been removed. The
- current default version (2.29 or later) has been selected
- instead.
-
-config BR2_PACKAGE_EEPROG
- bool "eeprog package removed"
- select BR2_LEGACY
- select BR2_PACKAGE_I2C_TOOLS
- select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
- help
- The eeprog program is now provided by the i2c-tools package.
-
-config BR2_PACKAGE_GNUPG2_GPGV2
- bool "gnupg2 gpgv2 option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_GNUPG2_GPGV
- help
- The gpgv2 executable is now named gpgv. The config option
- has been renamed accordingly.
-
-config BR2_PACKAGE_IMX_GPU_VIV_APITRACE
- bool "Vivante apitrace tool option removed"
- select BR2_LEGACY
- help
- The apitrace tool for Vivante is not provided by the
- imx-gpu-viv package any longer.
-
-config BR2_PACKAGE_IMX_GPU_VIV_G2D
- bool "Vivante G2D libraries from imx-gpu-viv removed"
- select BR2_LEGACY
- select BR2_PACKAGE_IMX_GPU_G2D
- help
- The G2D libraries are now provided by the imx-gpu-g2d package.
-
-###############################################################################
-comment "Legacy options removed in 2017.11"
-
-config BR2_PACKAGE_RFKILL
- bool "rfkill package removed"
- select BR2_LEGACY
- select BR2_PACKAGE_UTIL_LINUX
- select BR2_PACKAGE_UTIL_LINUX_RFKILL
- help
- The rfkill program is now provided by the util-linux package.
-
-config BR2_PACKAGE_UTIL_LINUX_RESET
- bool "util-linux reset option removed"
- select BR2_LEGACY
- help
- The util-linux package no longer offers a "reset" command. Use
- either the reset command provided by BusyBox or select ncurses
- programs, which will install a symlink from "tset" to reset.
-
-config BR2_PACKAGE_POLICYCOREUTILS_AUDIT2ALLOW
- bool "policycoreutils audit2allow option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_SELINUX_PYTHON
- select BR2_PACKAGE_SELINUX_PYTHON_AUDIT2ALLOW
- help
- The policycoreutils package no longer offers audit2allow
- as a option. This package has been moved into the
- selinux-python package by the SELinux maintainers.
-
-config BR2_PACKAGE_POLICYCOREUTILS_RESTORECOND
- bool "policycoreutils restorecond option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_RESTORECOND
- help
- The policycoreutils package no longer offers restorecond
- as a option. This package has been moved into a seperate
- package maintained by the SELinux maintainers.
-
-config BR2_PACKAGE_SEPOLGEN
- bool "sepolgen package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_SELINUX_PYTHON
- select BR2_PACKAGE_SELINUX_PYTHON_SEPOLGEN
- help
- Sepolgen is no longer a individual package, but instead has
- been moved into the selinux-python package by the SELinux
- maintainers.
-
-config BR2_PACKAGE_OPENOBEX_BLUEZ
- bool "openobex bluez option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_BLUEZ_UTILS
- help
- The OpenOBEX package no longer offers an option to enable or
- disable BlueZ support. Instead, BlueZ support is always
- included when the bluez5_utils or bluez_utils package is
- selected.
-
-config BR2_PACKAGE_OPENOBEX_LIBUSB
- bool "openobex libusb option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_LIBUSB
- help
- The OpenOBEX package no longer offers an option to enable or
- disable libusb support. Instead, USB support is always
- included when the libusb package is selected.
-
-config BR2_PACKAGE_OPENOBEX_APPS
- bool "openobex apps option removed"
- select BR2_LEGACY
- help
- The OpenOBEX package no longer offers an option to enable or
- disable apps support.
-
-config BR2_PACKAGE_OPENOBEX_SYSLOG
- bool "openobex syslog option removed"
- select BR2_LEGACY
- help
- The OpenOBEX package no longer offers an option to enable or
- disable syslog support.
-
-config BR2_PACKAGE_OPENOBEX_DUMP
- bool "openobex dump option removed"
- select BR2_LEGACY
- help
- The OpenOBEX package no longer offers an option to enable or
- disable dump support.
-
-config BR2_PACKAGE_AICCU
- bool "aiccu utility removed"
- select BR2_LEGACY
- help
- As the SixXS project has ceased its operation on 2017-06-06,
- the AICCU utility has no use anymore and has been removed.
-
- https://www.sixxs.net/sunset/
-
-config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
- bool "util-linux login utilities option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_UTIL_LINUX_LAST
- select BR2_PACKAGE_UTIL_LINUX_LOGIN
- select BR2_PACKAGE_UTIL_LINUX_RUNUSER
- select BR2_PACKAGE_UTIL_LINUX_SU
- select BR2_PACKAGE_UTIL_LINUX_SULOGIN
- help
- Login utilities (last, login, runuser, su, sulogin) now have
- their own configuration options in the util-linux menu.
-
-###############################################################################
-comment "Legacy options removed in 2017.08"
-
-config BR2_TARGET_GRUB
- bool "grub (aka grub-legacy) has been removed"
- select BR2_LEGACY
- help
- grub-legacy is no longer maintained, and no longer builds with
- recent binutils versions.
-
- Use grub2 or syslinux instead.
-
-config BR2_PACKAGE_SIMICSFS
- bool "simicsfs support removed"
- select BR2_LEGACY
- help
- Support for simicsfs kernel driver that provides access to a
- host computer's local filesystem when the target is
- executing within a SIMICS simulation has been removed.
-
- Simics is now moving away from the simicsfs kernel module,
- as the kernel module has required too much maintenance
- work. Users should move to the user mode Simics agent
- instead.
-
-config BR2_BINUTILS_VERSION_2_26_X
- bool "binutils version 2.26 support removed"
- select BR2_LEGACY
- help
- Support for binutils version 2.26 has been removed. The
- current default version (2.28 or later) has been selected
- instead.
-
-config BR2_XTENSA_OVERLAY_DIR
- string "The BR2_XTENSA_OVERLAY_DIR option has been removed"
- help
- The BR2_XTENSA_OVERLAY_DIR has been removed in favour of
- BR2_XTENSA_OVERLAY_FILE. You must now pass the complete
- path to the overlay file, not to the directory containing
- it.
-
-config BR2_XTENSA_OVERLAY_DIR_WRAP
- bool
- default y if BR2_XTENSA_OVERLAY_DIR != ""
- select BR2_LEGACY
-
-config BR2_XTENSA_CUSTOM_NAME
- string "The BR2_XTENSA_CUSTOM_NAME option has been removed"
- help
- The BR2_XTENSA_CUSTOM_NAME option has been removed.
-
-config BR2_XTENSA_CUSTOM_NAME_WRAP
- bool
- default y if BR2_XTENSA_CUSTOM_NAME != ""
- select BR2_LEGACY
-
-config BR2_PACKAGE_HOST_MKE2IMG
- bool "host mke2img has been removed"
- select BR2_LEGACY
- help
- We now call mkfs directly to generate ext2/3/4 filesystem
- image, so mke2img is no longer necessary.
-
-config BR2_TARGET_ROOTFS_EXT2_BLOCKS
- int "exact size in blocks has been removed"
- default 0
- help
- This option has been removed in favor of
- BR2_TARGET_ROOTFS_EXT2_SIZE. It has been set automatically
- to the value you had before. Set to 0 here to remove the
- warning.
-
-config BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP
- bool
- default y if BR2_TARGET_ROOTFS_EXT2_BLOCKS != 0 && \
- BR2_TARGET_ROOTFS_EXT2_BLOCKS != 61440 # deprecated default value
- select BR2_LEGACY
-
-# Note: BR2_TARGET_ROOTFS_EXT2_BLOCKS_WRAP still referenced in fs/ext2/Config.in
-
-config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES
- int "ext2 extra inodes has been removed" if BR2_TARGET_ROOTFS_EXT2_INODES = 0
- default 0
- help
- Buildroot now uses mkfs.ext2/3/4 to generate ext2/3/4
- images. It now automatically selects the number of inodes
- based on the image size. The extra number of inodes can no
- longer be provided; instead, provide the total number of
- inodes needed in BR2_TARGET_ROOTFS_EXT2_INODES.
-
-config BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES_WRAP
- bool
- default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES != 0
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CDXAPARSE
- bool "cdxaparse removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DATAURISRC
- bool "dataurisrc moved to gstreamer1"
- select BR2_LEGACY
- help
- Dataurisrc has moved to gstreamer core and is always built.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DCCP
- bool "dccp removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HDVPARSE
- bool "hdvparse removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MVE
- bool "mve removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
- bool "nuvdemux removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PATCHDETECT
- bool "patchdetect removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
- bool "sdi removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTA
- bool "tta removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
- bool "videomeasure removed"
- select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IQA
- select BR2_LEGACY
- help
- videomeasure plugin has been removed and has been replaced by
- iqa, which has automatically been enabled.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
- bool "apexsink removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
- bool "sdl removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
- bool "mad (*.mp3 audio) removed"
- select BR2_LEGACY
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
- bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
- select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
- select BR2_LEGACY
- help
- The WebRTC plugin in GStreamer 1.x has always been named
- webrtcdsp, but was wrongly introduced in Buildroot under the
- name webrtc. Therefore, we have renamed the option to match
- the actual name of the GStreamer plugin.
-
-config BR2_STRIP_none
- bool "Strip command 'none' has been removed"
- select BR2_LEGACY
- help
- The strip command choice has been changed into a single
- boolean option. Please check that the new setting is
- correct (in the "Build options" sub-menu)
-
-config BR2_PACKAGE_BEECRYPT_CPP
- bool "C++ support removed in beecrypt"
- select BR2_LEGACY
- help
- Support for C++ depends on icu. The beecrypt package is
- incompatible with icu 59+.
-
-config BR2_PACKAGE_SPICE_CLIENT
- bool "spice client support removed"
- select BR2_LEGACY
- help
- Spice client support has been removed upstream. The
- functionality now lives in the spice-gtk widget and
- virt-viewer.
-
-config BR2_PACKAGE_SPICE_GUI
- bool "spice gui support removed"
- select BR2_LEGACY
- help
- Spice gui support has been removed upstream. The
- functionality now lives in the spice-gtk widget and
- virt-viewer.
-
-config BR2_PACKAGE_SPICE_TUNNEL
- bool "spice network redirection removed"
- select BR2_LEGACY
- help
- Spice network redirection, aka tunnelling has been removed
- upstream.
-
-config BR2_PACKAGE_INPUT_TOOLS
- bool "input-tools removed"
- select BR2_LEGACY
- select BR2_PACKAGE_LINUXCONSOLETOOLS
- help
- input-tools has been removed, it is replaced by
- linuxconsoletools, which has automatically been enabled.
-
-config BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH
- bool "inputattach moved to linuxconsoletools"
- select BR2_LEGACY
- select BR2_PACKAGE_LINUXCONSOLETOOLS
- select BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH
- help
- input-tools has been removed, inputattach is now part
- of linuxconsoletools, which has automatically been
- enabled.
-
-config BR2_PACKAGE_INPUT_TOOLS_JSCAL
- bool "jscal moved to linuxconsoletools"
- select BR2_LEGACY
- select BR2_PACKAGE_LINUXCONSOLETOOLS
- select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
- help
- input-tools has been removed, jscal is now part
- of linuxconsoletools, which has automatically been
- enabled.
-
-config BR2_PACKAGE_INPUT_TOOLS_JSTEST
- bool "jstest moved to linuxconsoletools"
- select BR2_LEGACY
- select BR2_PACKAGE_LINUXCONSOLETOOLS
- select BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK
- help
- input-tools has been removed, jstest is now part
- of linuxconsoletools, which has automatically been
- enabled.
-
-config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_SH
- bool "SH Sourcery toolchain has been removed"
- select BR2_LEGACY
- help
- The Sourcery CodeBench toolchain for the sh architecture has
- been removed, since it uses glibc older than 2.17 that
- requires -lrt to link executables using clock_* system calls.
- This makes this toolchain difficult to maintain over time.
-
-config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_X86
- bool "x86 Sourcery toolchain has been removed"
- select BR2_LEGACY
- help
- The Sourcery CodeBench toolchain for the x86 architecture has
- been removed, since it uses glibc older than 2.17 that
- requires -lrt to link executables using clock_* system calls.
- This makes this toolchain difficult to maintain over time.
-
-config BR2_GCC_VERSION_4_8_X
- bool "gcc 4.8.x support removed"
- select BR2_LEGACY
- help
- Support for gcc version 4.8.x has been removed. The current
- default version (5.x or later) has been selected instead.
-
-###############################################################################
-comment "Legacy options removed in 2017.05"
-
-config BR2_PACKAGE_SUNXI_MALI_R2P4
- bool "sunxi-mali r2p4 removed"
- select BR2_LEGACY
- help
- sunxi-mali libMali for r2p4 Mali kernel module has been
- removed since the libump package only provides libUMP.so.3.
- libMali for r2p4 Mali kernel module requires libUMP.so.2.
-
-config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
- bool "CoffeeScript option has been removed"
- select BR2_LEGACY
- help
- The option to enable NodeJS CoffeeScript has been removed.
- To continue using it, add "coffee-script" to
- BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
-
-config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
- bool "Express web application framework option has been removed"
- select BR2_LEGACY
- help
- The option to enable the NodeJS Express web application
- framework has been removed. To continue using it, add
- "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
-
-config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
- bool "bluez5_utils gatttool install option removed"
- select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
- help
- The option to install gatttool specifically has been removed.
- Since version 5.44 gatttool is in the list of deprecated
- tools. The option to build and install deprecated tools has
- been automatically enabled.
-
-config BR2_PACKAGE_OPENOCD_FT2XXX
- bool "openocd ft2232 support has been removed"
- select BR2_PACKAGE_OPENOCD_FTDI
- select BR2_LEGACY
- help
- FT2232 support in OpenOCD has been removed, it's replaced by
- FDTI support, which has automatically been enabled.
-
-config BR2_PACKAGE_KODI_RTMPDUMP
- bool "kodi rtmp has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_INPUTSTREAM_RTMP
- help
- Internal rtmp support was removed from Kodi.
-
-config BR2_PACKAGE_KODI_VISUALISATION_FOUNTAIN
- bool "kodi-visualisation-fountain has been removed"
- select BR2_LEGACY
- help
- According to upstream 'the visualization is not currently
- in a working shape.'
-
-config BR2_PACKAGE_PORTMAP
- bool "portmap has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_RPCBIND
- help
- The portmap upstream tarball is removed, no releases since
- ten years and latest change in upstream git in 2014.
- You should better use rpcbind as a RPC portmapper.
-
-config BR2_BINUTILS_VERSION_2_25_X
- bool "binutils version 2.25 support removed"
- select BR2_LEGACY
- help
- Support for binutils version 2.25 has been removed. The
- current default version (2.27 or later) has been selected
- instead.
-
-config BR2_TOOLCHAIN_BUILDROOT_INET_RPC
- bool "uclibc RPC support has been removed"
- select BR2_LEGACY
- help
- uClibc-ng removed internal RPC implementation in 1.0.23. You
- should use libtirpc instead.
-
-config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS
- int "extra size in blocks has been removed"
- default 0
- help
- Since the support for auto calculation of the filesystem size
- has been removed, this option is now useless and must be 0.
- You may want to check that BR2_TARGET_ROOTFS_EXT2_BLOCKS
- matchs your needs.
-
-config BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS_WRAP
- bool
- default y if BR2_TARGET_ROOTFS_EXT2_EXTRA_BLOCKS != 0
- select BR2_LEGACY
-
-config BR2_PACKAGE_SYSTEMD_KDBUS
- bool "systemd-kdbus has been removed"
- select BR2_LEGACY
- help
- --enable/disable-kdbus configure option has been removed since
- systemd-231.
-
-config BR2_PACKAGE_POLARSSL
- bool "polarssl has been removed"
- select BR2_LEGACY
- help
- The polarssl crypto library has been removed since the 1.2.x
- release branch is no longer maintained. Newer upstream
- branches/releases (mbedtls) have API changes so they're not
- drop-in replacements.
-
-config BR2_NBD_CLIENT
- bool "nbd client option was renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_NBD_CLIENT
- help
- The nbd client option has been renamed to
- BR2_PACKAGE_NBD_CLIENT.
-
-config BR2_NBD_SERVER
- bool "nbd server option was renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_NBD_SERVER
- help
- The nbd server option has been renamed to
- BR2_PACKAGE_NBD_SERVER.
-
-config BR2_PACKAGE_GMOCK
- bool "gmock merged into gtest package"
- select BR2_LEGACY
- select BR2_PACKAGE_GTEST
- select BR2_PACKAGE_GTEST_GMOCK
- help
- GMock is now a suboption of the GTest package.
-
-config BR2_KERNEL_HEADERS_4_8
- bool "kernel headers version 4.8.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.8.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_3_18
- bool "kernel headers version 3.18.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.18.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_GLIBC_VERSION_2_22
- bool "glibc 2.22 removed"
- select BR2_LEGACY
- help
- Support for glibc version 2.22 has been removed. The current
- default version has been selected instead.
-
-###############################################################################
-comment "Legacy options removed in 2017.02"
-
-config BR2_PACKAGE_PERL_DB_FILE
- bool "perl-db-file removed"
- select BR2_LEGACY
- select BR2_PACKAGE_BERKELEYDB
- select BR2_PACKAGE_PERL
- help
- DB_File can be built as a core Perl module, so the separate
- perl-db-file package has been removed.
-
-config BR2_KERNEL_HEADERS_4_7
- bool "kernel headers version 4.7.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.7.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_6
- bool "kernel headers version 4.6.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.6.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_5
- bool "kernel headers version 4.5.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.5.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_3_14
- bool "kernel headers version 3.14.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.14.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
- bool "musl-cross 1.1.12 toolchain removed"
- select BR2_LEGACY
- help
- The support for the prebuilt toolchain based on the Musl C
- library provided by the musl-cross project has been removed.
- Upstream doesn't provide any prebuilt toolchain anymore, use
- the Buildroot toolchain instead.
-
-config BR2_UCLIBC_INSTALL_TEST_SUITE
- bool "uClibc tests now in uclibc-ng-test"
- select BR2_LEGACY
- select BR2_PACKAGE_UCLIBC_NG_TEST
- help
- The test suite of the uClibc C library has been moved into a
- separate package, uclibc-ng-test.
-
-config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
- bool "Blackfin.uclinux.org 2014R1 toolchain removed"
- select BR2_LEGACY
- help
- The ADI Blackfin toolchain has many bugs which are fixed in
- more recent gcc and uClibc-ng releases. Use the Buildroot
- toolchain instead.
-
-config BR2_PACKAGE_MAKEDEVS
- bool "makedevs removed"
- select BR2_LEGACY
- help
- The makedevs tool is part of busybox. The Buildroot fork
- should not be used outside of the Buildroot infrastructure.
-
-config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
- bool "Arago ARMv7 2011.09 removed"
- select BR2_LEGACY
- help
- The Arago toolchains are every old and not updated anymore.
-
-config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
- bool "Arago ARMv5 2011.09 removed"
- select BR2_LEGACY
- help
- The Arago toolchains are every old and not updated anymore.
-
-config BR2_PACKAGE_SNOWBALL_HDMISERVICE
- bool "snowball-hdmiservice removed"
- select BR2_LEGACY
- help
- We no longer have support for the Snowball platform in
- Buildroot, so this package was no longer useful.
-
-config BR2_PACKAGE_SNOWBALL_INIT
- bool "snowball-init removed"
- select BR2_LEGACY
- help
- We no longer have support for the Snowball platform in
- Buildroot, so this package was no longer useful.
-
-config BR2_GDB_VERSION_7_9
- bool "gdb 7.9 has been removed"
- select BR2_LEGACY
- help
- The 7.9 version of gdb has been removed. Use a newer version
- instead.
-
-###############################################################################
-comment "Legacy options removed in 2016.11"
-
-config BR2_PACKAGE_PHP_SAPI_CLI_CGI
- bool "PHP CGI and CLI options are now seperate"
- select BR2_PACKAGE_PHP_SAPI_CLI
- select BR2_PACKAGE_PHP_SAPI_CGI
- select BR2_LEGACY
- help
- The PHP Interface options have been split up into a
- separate option for each interface.
-
-config BR2_PACKAGE_PHP_SAPI_CLI_FPM
- bool "PHP CLI and FPM options are now separate"
- select BR2_PACKAGE_PHP_SAPI_CLI
- select BR2_PACKAGE_PHP_SAPI_FPM
- select BR2_LEGACY
- help
- The PHP Interface options have been split up into a
- separate option for each interface.
-
-config BR2_PACKAGE_WVSTREAMS
- bool "wvstreams removed"
- select BR2_LEGACY
- help
- wvstreams is not maintained anymore since about 2009. It also
- doesn't build anymore with recent compilers (GCC 5+).
-
-config BR2_PACKAGE_WVDIAL
- bool "wvdial removed"
- select BR2_LEGACY
- help
- wvdial is not maintained anymore since about 2009. It also
- doesn't build anymore with recent compilers (GCC 5+).
-
-config BR2_PACKAGE_WEBKITGTK24
- bool "webkitgtk 2.4.x removed"
- select BR2_LEGACY
- help
- This legacy package only existed because some other packages
- depended on that specific version of webkitgtk. However, the
- other packages have been fixed. webkitgtk 2.4 is full of
- security issues so it needs to be removed.
-
-config BR2_PACKAGE_TORSMO
- bool "torsmo removed"
- select BR2_LEGACY
- help
- torsmo has been unmaintained for a long time, and nobody
- seems to be interested in it.
-
-config BR2_PACKAGE_SSTRIP
- bool "sstrip removed"
- select BR2_LEGACY
- help
- sstrip is unmaintained and potentially harmful. It doesn't
- save so much compared to normal binutils strip, and there is
- a big risk of binaries that don't work. Use normal strip
- instead.
-
-config BR2_KERNEL_HEADERS_4_3
- bool "kernel headers version 4.3.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.3.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_KERNEL_HEADERS_4_2
- bool "kernel headers version 4.2.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.2.x of the Linux kernel headers are no longer
- maintained upstream and are now removed.
-
-config BR2_PACKAGE_KODI_ADDON_XVDR
- bool "kodi-addon-xvdr removed"
- select BR2_LEGACY
- help
- According to the github project page:
- https://github.com/pipelka/xbmc-addon-xvdr
- this package is discontinued.
-
-config BR2_PACKAGE_IPKG
- bool "ipkg removed"
- select BR2_LEGACY
- help
- ipkg dates back to the early 2000s when Compaq started the
- handhelds.org project and it hasn't seen development since
- 2006. Use opkg as a replacement.
-
-config BR2_GCC_VERSION_4_7_X
- bool "gcc 4.7.x support removed"
- select BR2_LEGACY
- help
- Support for gcc version 4.7.x has been removed. The current
- default version (4.9.x or later) has been selected instead.
-
-config BR2_BINUTILS_VERSION_2_24_X
- bool "binutils version 2.24 support removed"
- select BR2_LEGACY
- help
- Support for binutils version 2.24 has been removed. The
- current default version (2.26 or later) has been selected
- instead.
-
-config BR2_PACKAGE_WESTON_RPI
- bool "Weston propietary RPI support is gone"
- select BR2_LEGACY
- help
- Upstream decided the propietary (rpi-userland) weston composer
- support wasn't worth the effort so it was removed. Switch to
- the open VC4 support.
-
-config BR2_LINUX_KERNEL_TOOL_CPUPOWER
- bool "linux-tool cpupower"
- depends on BR2_LINUX_KERNEL
- select BR2_LEGACY
- select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
- help
- Linux tool cpupower option was renamed.
-
-config BR2_LINUX_KERNEL_TOOL_PERF
- bool "linux-tool perf"
- depends on BR2_LINUX_KERNEL
- select BR2_LEGACY
- select BR2_PACKAGE_LINUX_TOOLS_PERF
- help
- Linux tool perf option was renamed.
-
-config BR2_LINUX_KERNEL_TOOL_SELFTESTS
- bool "linux-tool selftests"
- depends on BR2_LINUX_KERNEL
- select BR2_LEGACY
- select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
- help
- Linux tool selftests option was renamed.
-
-config BR2_GCC_VERSION_4_8_ARC
- bool "gcc arc option renamed"
- select BR2_LEGACY
- select BR2_GCC_VERSION_ARC
- help
- The option that selects the gcc version for the ARC
- architecture has been renamed to BR2_GCC_VERSION_ARC.
-
-config BR2_KERNEL_HEADERS_4_0
- bool "kernel headers version 4.0.x are no longer supported"
- select BR2_LEGACY
- help
- Version 4.0.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_KERNEL_HEADERS_3_19
- bool "kernel headers version 3.19.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.19.x of the Linux kernel headers have been
- deprecated for more than four buildroot releases and are now
- removed.
-
-config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
- bool "libevas-generic-loaders package removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.18, libevas-generic-loaders is now provided by the
- efl package.
-
-config BR2_PACKAGE_ELEMENTARY
- bool "elementary package removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.18, elementary is now provided by the efl package.
-
-config BR2_LINUX_KERNEL_CUSTOM_LOCAL
- bool "Linux kernel local directory option removed"
- help
- The option to select a local directory as the source of the
- Linux kernel has been removed. It hurts reproducibility of
- builds.
-
- In case you were using this option during development of your
- Linux kernel, use the override mechanism instead.
-
-###############################################################################
-comment "Legacy options removed in 2016.08"
-
-config BR2_PACKAGE_EFL_JP2K
- bool "libevas jp2k loader has been removed"
- select BR2_LEGACY
- help
- JP2K support in EFL requires openjpeg 1.x (libopenjpeg1.pc)
- while Buildroot only packages openjpeg 2.x. Therefore, the
- JP2K loader has been removed from EFL.
-
-config BR2_PACKAGE_SYSTEMD_COMPAT
- bool "systemd compatibility libraries have been removed"
- select BR2_LEGACY
- help
- The systemd option to enable the compatibility libraries has
- been removed. Theses libraries have been useless since a few
- version, and have been fully dropped from the source since
- v230.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
- bool "gst1-plugins-bad liveadder plugin removed"
- select BR2_LEGACY
- select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
- help
- The functionality of the liveadder plugin of the
- gst1-plugins-bad package has been merged into audiomixer.
-
-config BR2_PACKAGE_LIBFSLVPUWRAP
- bool "libfslvpuwrap has been renamed to imx-vpuwrap"
- select BR2_LEGACY
- select BR2_PACKAGE_IMX_VPUWRAP
- help
- The libfslvpuwrap has been renamed to match the renamed
- package.
-
-config BR2_PACKAGE_LIBFSLPARSER
- bool "libfslparser has been renamed to imx-parser"
- select BR2_LEGACY
- select BR2_PACKAGE_IMX_PARSER
- help
- The libfslparser has been renamed to match the renamed
- package.
-
-config BR2_PACKAGE_LIBFSLCODEC
- bool "libfslcodec has been renamed to imx-codec"
- select BR2_LEGACY
- select BR2_PACKAGE_IMX_CODEC
- help
- The libfslcodec has been renamed to match the renamed package.
-
-config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
- bool "FIT support in uboot-tools has been refactored"
- select BR2_LEGACY
- select BR2_PACKAGE_DTC
- select BR2_PACKAGE_DTC_PROGRAMS
- select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
- select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
- select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
- help
- This option has been removed in favor of a more fine-grained
- configuration, which is recommended. Selecting this option
- enables FIT and FIT signature support for the target packages.
- It will also select the dtc and openssl packages.
-
-config BR2_PTHREADS_OLD
- bool "linuxthreads (stable/old)"
- select BR2_LEGACY
- help
- Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
- BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
-
-config BR2_BINUTILS_VERSION_2_23_X
- bool "binutils 2.23 removed"
- select BR2_LEGACY
- help
- Binutils 2.23 has been removed, using a newer version is
- recommended.
-
-config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
- bool "eglibc support has been removed"
- select BR2_LEGACY
- help
- The eglibc project no longer exists, as it has been merged
- back into the glibc project. Therefore, support for eglibc
- has been removed, and glibc should be used instead.
-
-config BR2_GDB_VERSION_7_8
- bool "gdb 7.8 has been removed"
- select BR2_LEGACY
- help
- The 7.8 version of gdb has been removed. Use a newer version
- instead.
-
-###############################################################################
-comment "Legacy options removed in 2016.05"
-
-config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
- bool "openvpn polarssl crypto backend removed"
- select BR2_LEGACY
- help
- The OpenVPN polarssl crypto backend option has been removed.
- Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
- compatible with mbedtls (polarssl) series 2.x which is the
- version provided in buildroot. And both can't coexist.
- It now uses OpenSSL as the only option.
-
-config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
- bool "nginx http spdy module removed"
- select BR2_LEGACY
- select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
- help
- The ngx_http_spdy_module has been superseded by the
- ngx_http_v2_module since nginx v1.9.5. The
- ngx_http_v2_module modules has been automatically selected
- in your configuration.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
- bool "gst1-plugins-bad rtp plugin moved to good"
- select BR2_LEGACY
- help
- The rtp plugin has been moved from gst1-plugins-base to
- gst1-plugins-good.
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
- bool "gst1-plugins-bad mpg123 plugin moved to ugly"
- select BR2_LEGACY
- help
- The mpg123 plugin has been moved from gst1-plugins-bad to
- gst1-plugins-ugly.
-
-config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
- bool "PowerPC Sourcery toolchain has been removed"
- select BR2_LEGACY
- help
- The Sourcery CodeBench toolchain for the PowerPC
- architecture has been removed, as it was very old, not
- maintained, and causing numerous build failures with modern
- userspace packages.
-
-config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
- bool "PowerPC Sourcery E500v2 toolchain has been removed"
- select BR2_LEGACY
- help
- The Sourcery CodeBench toolchain for the PowerPC E500v2
- architecture has been removed, as it was very old, not
- maintained, and causing numerous build failures with modern
- userspace packages.
-
-config BR2_x86_i386
- bool "x86 i386 support removed"
- select BR2_LEGACY
- help
- The support for the i386 processors of the x86 architecture
- has been removed.
-
-config BR2_PACKAGE_QT5QUICK1
- bool "qt5quick1 package removed"
- select BR2_LEGACY
- help
- The qt5quick1 package has been removed, since it was removed
- from upstream starting from Qt 5.6.
-
-config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
- string "uboot custom patch dir has been removed"
- help
- The uboot custom patch directory option has been removed. Use
- the improved BR2_TARGET_UBOOT_PATCH option instead.
-
-config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
- bool
- default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
- select BR2_LEGACY
-
-# Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
-# boot/uboot/Config.in
-
-config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
- bool "xf86-input-void removed"
- select BR2_LEGACY
- help
- The xf86-input-void package has been removed, there's no need
- for it in any modern (post-2007) xorg server.
-
-config BR2_KERNEL_HEADERS_3_17
- bool "kernel headers version 3.17.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.17.x of the Linux kernel headers have been
- deprecated for more than four buildroot releases and are now
- removed.
-
-config BR2_GDB_VERSION_7_7
- bool "gdb 7.7 has been removed"
- select BR2_LEGACY
- help
- The 7.7 version of gdb has been removed. Use a newer version
- instead.
-
-config BR2_PACKAGE_FOOMATIC_FILTERS
- bool "foomatic-filters"
- select BR2_LEGACY
- help
- The foomatic-filters package was removed.
-
-config BR2_PACKAGE_SAMBA
- bool "samba"
- select BR2_LEGACY
- help
- The samba package was removed in favour of samba4 since the
- 3.x series isn't supported by upstream any longer.
-
-config BR2_PACKAGE_KODI_WAVPACK
- bool "wavpack"
- select BR2_LEGACY
- help
- wavpack support was removed in favour of ffmpeg:
- https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
-
-config BR2_PACKAGE_KODI_RSXS
- bool "rsxs support in Kodi was moved to an addon"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
- help
- rsxs support in Kodi was moved to an addon
-
-config BR2_PACKAGE_KODI_GOOM
- bool "Goom support in Kodi was moved to an addon"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_VISUALISATION_GOOM
- help
- Goom support in Kodi was moved to an addon
-
-config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
- bool "systemd all extras option has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_XZ
- select BR2_PACKAGE_LIBGCRYPT
- help
- The systemd option to enable "all extras" has been
- removed. To get the same features, the libgcrypt and xz
- package should now be enabled.
-
-config BR2_GCC_VERSION_4_5_X
- bool "gcc 4.5.x has been removed"
- select BR2_LEGACY
- help
- The 4.5.x version of gcc has been removed. Use a newer
- version instead.
-
-config BR2_PACKAGE_SQLITE_READLINE
- bool "sqlite command-line editing support was updated"
- select BR2_PACKAGE_NCURSES
- select BR2_PACKAGE_READLINE
- select BR2_LEGACY
- help
- This option was removed in favour of the sqlite package
- deciding itself depending on the enabled packages whether
- command-line editing should be enabled, it also also takes
- libedit into account.
-
-###############################################################################
-comment "Legacy options removed in 2016.02"
-
-config BR2_PACKAGE_DOVECOT_BZIP2
- bool "bzip2 support option has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_BZIP2
- help
- Bzip2 support is built if the bzip2 package is selected.
-
-config BR2_PACKAGE_DOVECOT_ZLIB
- bool "zlib support option has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_ZLIB
- help
- Zlib support is built if the zlib package is selected.
-
-config BR2_PACKAGE_E2FSPROGS_FINDFS
- bool "e2fsprogs findfs option has been removed"
- select BR2_LEGACY
- help
- This option attempted to enable findfs capabilities from
- e2fsprogs but has not worked since July 2015 (due to
- packaging changes). One can use BusyBox's findfs support or
- enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
-
-config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
- bool "openpowerlink debug option has been removed"
- select BR2_LEGACY
- help
- This option depends on BR2_ENABLE_DEBUG which should not be
- used by packages anymore.
-
-config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
- bool "openpowerlink package has been updated"
- select BR2_LEGACY
- select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
- help
- openpowerlink kernel modules are built if the
- kernel stack library is selected.
-
-config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
- bool "openpowerlink package has been updated"
- select BR2_LEGACY
- select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
- help
- The user space support has been split in two part:
- - a monolitic user space library
- - a user spae deamon driver
-
-config BR2_LINUX_KERNEL_SAME_AS_HEADERS
- bool "using the linux headers version for the kernel has been removed"
- select BR2_LEGACY
- help
- The option to use the version of the kernel headers for the
- kernel to build has been removed.
-
- There is now the converse, better-suited and more versatile
- option to use the kernel version for the linux headers.
-
-config BR2_PACKAGE_CUPS_PDFTOPS
- bool "Pdftops support has been removed from Cups"
- select BR2_PACKAGE_CUPS_FILTERS
- select BR2_LEGACY
- help
- Pdftops support has been removed from the cups package
- It is now part of the cups-filters package.
-
-config BR2_KERNEL_HEADERS_3_16
- bool "kernel headers version 3.16.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.16.x of the Linux kernel headers have been
- deprecated for more than four buildroot releases and are now
- removed.
-
-config BR2_PACKAGE_PYTHON_PYXML
- bool "python-pyxml package has been removed"
- select BR2_LEGACY
- help
- PyXML is obsolete and its functionality is covered either via
- native Python XML support or python-lxml package.
-
-# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
-config BR2_ENABLE_SSP
- bool "Stack Smashing protection now has different levels"
- help
- The protection offered by SSP can now be selected from
- different protection levels. Be sure to review the SSP level
- in the build options menu.
-
-config BR2_PACKAGE_DIRECTFB_CLE266
- bool "cle266 driver for directfb removed"
- select BR2_LEGACY
- help
- The cle266 directfb driver support has been removed.
- It doesn't build in the latest version and it's unlikely
- anyone has any use for it.
-
-config BR2_PACKAGE_DIRECTFB_UNICHROME
- bool "unichrome driver for directfb removed"
- select BR2_LEGACY
- help
- The unichrome directfb driver support has been removed.
- It doesn't build in the latest version and it's unlikely
- anyone has any use for it.
-
-config BR2_PACKAGE_LIBELEMENTARY
- bool "libelementary has been renamed to elementary"
- select BR2_LEGACY
- select BR2_PACKAGE_ELEMENTARY
- help
- The libelementary package has been renamed to match the
- upstream name.
-
-config BR2_PACKAGE_LIBEINA
- bool "libeina package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libeina is now provided by the efl package.
-
-config BR2_PACKAGE_LIBEET
- bool "libeet package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libeet is now provided by the efl package.
-
-config BR2_PACKAGE_LIBEVAS
- bool "libevas package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libevas is now provided by the efl package.
-
-config BR2_PACKAGE_LIBECORE
- bool "libecore package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libecore is now provided by the efl package.
-
-config BR2_PACKAGE_LIBEDBUS
- bool "libedbus package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libedbus is now provided by the efl package.
-
-config BR2_PACKAGE_LIBEFREET
- bool "libefreet package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libefreet is now provided by the efl package.
-
-config BR2_PACKAGE_LIBEIO
- bool "libeio package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libeio is now provided by the efl package.
-
-config BR2_PACKAGE_LIBEMBRYO
- bool "libembryo package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libembryo is now provided by the efl package.
-
-config BR2_PACKAGE_LIBEDJE
- bool "libedje package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libedje is now provided by the efl package.
-
-config BR2_PACKAGE_LIBETHUMB
- bool "libethumb package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_EFL
- help
- With EFL 1.15, libethumb is now provided by the efl package.
-
-config BR2_PACKAGE_INFOZIP
- bool "infozip option has been renamed to zip"
- select BR2_LEGACY
- select BR2_PACKAGE_ZIP
- help
- Info-Zip's Zip package has been renamed from infozip to zip,
- to avoid ambiguities with Info-Zip's UnZip which has been
- added in the unzip package.
-
-config BR2_BR2_PACKAGE_NODEJS_0_10_X
- bool "nodejs 0.10.x option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_NODEJS
- help
- nodejs 0.10.x option has been removed. 0.10.x is now
- automatically chosen for ARMv5 architectures only and the
- latest nodejs for all other supported architectures. The
- correct nodejs version has been automatically selected in your
- configuration.
-
-config BR2_BR2_PACKAGE_NODEJS_0_12_X
- bool "nodejs version 0.12.x has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_NODEJS
- help
- nodejs version 0.12.x has been removed. As an alternative,
- the latest nodejs version has been automatically selected in
- your configuration.
-
-config BR2_BR2_PACKAGE_NODEJS_4_X
- bool "nodejs version 4.x has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_NODEJS
- help
- nodejs version 4.x has been removed. As an alternative,
- the latest nodejs version has been automatically selected in
- your configuration.
-
-###############################################################################
-comment "Legacy options removed in 2015.11"
-
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
- bool "gst1-plugins-bad real plugin has been removed"
- select BR2_LEGACY
- help
- The real plugin from GStreamer 1 bad plugins has been
- removed.
-
-config BR2_PACKAGE_MEDIA_CTL
- bool "media-ctl package has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_LIBV4L
- select BR2_PACKAGE_LIBV4L_UTILS
- help
- media-ctl source and developement have been moved to v4l-utils
- since June 2014. For an up-to-date media-ctl version select
- BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
-
-config BR2_PACKAGE_SCHIFRA
- bool "schifra package has been removed"
- select BR2_LEGACY
- help
- Schifra package has been maked broken since 2014.11 release
- and haven't been fixed since then.
-
-config BR2_PACKAGE_ZXING
- bool "zxing option has been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_ZXING_CPP
- help
- ZXing no longer provides the cpp bindings, it has been renamed
- to BR2_PACKAGE_ZXING_CPP which uses a new upstream.
-
-# Since FreeRDP has new dependencies, protect this legacy to avoid the
-# infamous "unmet direct dependencies" kconfig error.
-config BR2_PACKAGE_FREERDP_CLIENT
- bool "freerdp client option renamed"
- depends on BR2_PACKAGE_FREERDP
- select BR2_LEGACY
- select BR2_PACKAGE_FREERDP_CLIENT_X11
-
-config BR2_PACKAGE_BLACKBOX
- bool "blackbox package has been removed"
- select BR2_LEGACY
- help
- Upstream is dead and the package has been deprecated for
- some time. There are other alternative maintained WMs.
-
-config BR2_KERNEL_HEADERS_3_0
- bool "kernel headers version 3.0.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.0.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_KERNEL_HEADERS_3_11
- bool "kernel headers version 3.11.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.11.x of the Linux kernel headers have been
- deprecated for more than four buildroot releases and are now
- removed.
-
-config BR2_KERNEL_HEADERS_3_13
- bool "kernel headers version 3.13.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.13.x of the Linux kernel headers have been
- deprecated for more than four buildroot releases and are now
- removed.
-
-config BR2_KERNEL_HEADERS_3_15
- bool "kernel headers version 3.15.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.15.x of the Linux kernel headers have been
- deprecated for more than four buildroot releases and are now
- removed.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
- bool "DirectFB example df_andi has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
- bool "DirectFB example df_bltload has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
- bool "DirectFB example df_cpuload has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
- bool "DirectFB example df_databuffer has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
- bool "DirectFB example df_dioload has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
- bool "DirectFB example df_dok has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
- bool "DirectFB example df_drivertest has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
- bool "DirectFB example df_fire has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
- bool "DirectFB example df_flip has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
- bool "DirectFB example df_fonts has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
- bool "DirectFB example df_input has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
- bool "DirectFB example df_joystick has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
- bool "DirectFB example df_knuckles has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
- bool "DirectFB example df_layer has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
- bool "DirectFB example df_matrix has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
- bool "DirectFB example df_matrix_water has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
- bool "DirectFB example df_neo has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
- bool "DirectFB example df_netload has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
- bool "DirectFB example df_palette has been removed"
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
- bool "DirectFB example df_particle has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
- bool "DirectFB example df_porter has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
- bool "DirectFB example df_stress has been removed"
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
- bool "DirectFB example df_texture has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
- bool "DirectFB example df_video has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
- bool "DirectFB example df_video_particle has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
- bool "DirectFB example df_window has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_EXAMPLES
- help
- The per-DirectFB example options have been removed. The
- BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
- examples.
-
-config BR2_PACKAGE_KOBS_NG
- bool "kobs-ng was replaced by imx-kobs"
- select BR2_LEGACY
- select BR2_PACKAGE_IMX_KOBS
- help
- The outdated kobs-ng has been replaced by the Freescale-
- maintained imx-kobs package.
-
-config BR2_PACKAGE_SAWMAN
- bool "sawman package removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_SAWMAN
- help
- This option has been removed because the sawman package no
- longer exists: it was merged inside DirectFB itself. This
- feature can now be enabled using the
- BR2_PACKAGE_DIRECTFB_SAWMAN option.
-
-config BR2_PACKAGE_DIVINE
- bool "divine package removed"
- select BR2_LEGACY
- select BR2_PACKAGE_DIRECTFB_DIVINE
- help
- This option has been removed because the divine package no
- longer exists: it was merged inside DirectFB itself. This
- feature can now be enabled using the
- BR2_PACKAGE_DIRECTFB_DIVINE option.
-
-###############################################################################
-comment "Legacy options removed in 2015.08"
-
-config BR2_PACKAGE_KODI_PVR_ADDONS
- bool "Kodi PVR addon was split"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_PVR_ARGUSTV
- select BR2_PACKAGE_KODI_PVR_DVBLINK
- select BR2_PACKAGE_KODI_PVR_DVBVIEWER
- select BR2_PACKAGE_KODI_PVR_FILMON
- select BR2_PACKAGE_KODI_PVR_HTS
- select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
- select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
- select BR2_PACKAGE_KODI_PVR_MYTHTV
- select BR2_PACKAGE_KODI_PVR_NEXTPVR
- select BR2_PACKAGE_KODI_PVR_NJOY
- select BR2_PACKAGE_KODI_PVR_PCTV
- select BR2_PACKAGE_KODI_PVR_STALKER
- select BR2_PACKAGE_KODI_PVR_VBOX
- select BR2_PACKAGE_KODI_PVR_VDR_VNSI
- select BR2_PACKAGE_KODI_PVR_VUPLUS
- select BR2_PACKAGE_KODI_PVR_WMC
- help
- Kodi PVR addon was split into seperate modules
-
-config BR2_BINUTILS_VERSION_2_23_2
- bool "binutils 2.23 option renamed"
- select BR2_LEGACY
- help
- Binutils 2.23.2 has been removed, using a newer version is
- recommended.
-
-config BR2_BINUTILS_VERSION_2_24
- bool "binutils 2.24 option renamed"
- select BR2_LEGACY
- select BR2_BINUTILS_VERSION_2_24_X
- help
- The binutils version option has been renamed to match the
- same patchlevel logic used by gcc. The new option is now
- BR2_BINUTILS_VERSION_2_24_X.
-
-config BR2_BINUTILS_VERSION_2_25
- bool "binutils 2.25 option renamed"
- select BR2_LEGACY
- select BR2_BINUTILS_VERSION_2_25_X
- help
- The binutils version option has been renamed to match the
- same patchlevel logic used by gcc. The new option is now
- BR2_BINUTILS_VERSION_2_25_X.
-
-config BR2_PACKAGE_PERF
- bool "perf option has been renamed"
- select BR2_LEGACY
- select BR2_LINUX_KERNEL_TOOL_PERF
- help
- The perf package has been moved as a Linux tools package,
- and the option to enable it is now
- BR2_LINUX_KERNEL_TOOL_PERF.
-
-config BR2_BINUTILS_VERSION_2_22
- bool "binutils 2.22 removed"
- select BR2_LEGACY
- help
- Binutils 2.22 has been removed, using a newer version is
- recommended.
-
-config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
- bool "gpu-viv-bin-mx6q"
- select BR2_LEGACY
- select BR2_PACKAGE_IMX_GPU_VIV
- help
- Vivante graphics libraries have been renamed to
- BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
- name.
-
-config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
- bool "libsemanage python bindings removed"
- depends on BR2_PACKAGE_PYTHON
- select BR2_LEGACY
- help
- This option has been removed, since the libsemanage Python
- bindings on the target were not useful.
-
-config BR2_TARGET_UBOOT_NETWORK
- bool "U-Boot custom network settings removed"
- select BR2_LEGACY
- help
- U-Boot's custom network settings options have been removed.
-
-###############################################################################
-comment "Legacy options removed in 2015.05"
-
-config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
- bool "jffs2 16kB erasesize NAND flash option renamed"
- select BR2_LEGACY
- select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
- help
- The JFFS2 NAND flash options now longer include the page
- size.
-
-config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
- bool "jffs2 128kB erasesize NAND flash option renamed"
- select BR2_LEGACY
- select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
- help
- The JFFS2 NAND flash options now longer include the page
- size.
-
-config BR2_PACKAGE_MONO_20
- bool "2.0/3.5 .Net Runtime"
- select BR2_LEGACY
- help
- This option no longer exists, all versions of the .Net
- runtime are now installed.
-
-config BR2_PACKAGE_MONO_40
- bool "4.0 .Net Runtime"
- select BR2_LEGACY
- help
- This option no longer exists, all versions of the .Net
- runtime are now installed.
-
-config BR2_PACKAGE_MONO_45
- bool "4.5 .Net Runtime"
- select BR2_LEGACY
- help
- This option no longer exists, all versions of the .Net
- runtime are now installed.
-
-config BR2_CIVETWEB_WITH_LUA
- bool "civetweb lua option renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_CIVETWEB_WITH_LUA
- help
- civetweb's lua option has been renamed to
- BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
- packages name options.
-
-config BR2_PACKAGE_TIFF_TIFF2PDF
- bool "tiff utility-specific option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_TIFF_UTILITIES
- help
- utility-specific options have been removed in favour of
- the new option BR2_PACKAGE_TIFF_UTILITIES.
-
-config BR2_PACKAGE_TIFF_TIFFCP
- bool "tiff utility-specific option removed"
- select BR2_LEGACY
- select BR2_PACKAGE_TIFF_UTILITIES
- help
- utility-specific options have been removed in favour of
- the new option BR2_PACKAGE_TIFF_UTILITIES.
-
-config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
- bool "RTAI patch file path has been removed"
- select BR2_LEGACY
- help
- This option has never worked, so it has been removed.
-
-config BR2_TARGET_GENERIC_PASSWD_DES
- bool "Encoding passwords with DES has been removed"
- select BR2_LEGACY
- help
- Paswords can now only be encoded with either of md5, sha256 or
- sha512. The default is md5, which is stronger that DES (but
- still pretty weak).
-
-config BR2_PACKAGE_GTK2_THEME_HICOLOR
- bool "hicolor (default theme) is a duplicate"
- select BR2_LEGACY
- select BR2_PACKAGE_HICOLOR_ICON_THEME
- help
- The option was just a duplicate of hicolor icon theme.
-
-config BR2_PACKAGE_VALGRIND_PTRCHECK
- bool "valgrind's PTRCheck was renamed to SGCheck"
- select BR2_LEGACY
- select BR2_PACKAGE_VALGRIND_SGCHECK
- help
- PTRCheck was renamed to SGCheck in valgrind
-
-###############################################################################
-comment "Legacy options removed in 2015.02"
-
-config BR2_PACKAGE_LIBGC
- bool "libgc package removed"
- select BR2_LEGACY
- select BR2_PACKAGE_BDWGC
- help
- libgc has been removed because we have the same package under
- a different name, bdwgc.
-
-config BR2_PACKAGE_WDCTL
- bool "util-linux' wdctl option has been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_UTIL_LINUX_WDCTL
- help
- util-linux' wdctl option has been renamed to
- BR2_PACKAGE_UTIL_LINUX_WDCTL to be aligned with how the other
- options are named.
-
-config BR2_PACKAGE_UTIL_LINUX_ARCH
- bool "util-linux' arch option has been removed"
- select BR2_LEGACY
- help
- util-linux' arch was dropped in util-linux 2.23, in favor of
- the coreutils version.
-
-config BR2_PACKAGE_UTIL_LINUX_DDATE
- bool "util-linux' ddate option has been removed"
- select BR2_LEGACY
- help
- util-linux' ddate was dropped in util-linux 2.23.
-
-config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
- bool "rpm's bzip2 payloads option has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_BZIP2
- help
- The bzip2 payloads option rely entirely on the dependant
- package bzip2. So, you need to select it to enable this
- feature.
-
-config BR2_PACKAGE_RPM_XZ_PAYLOADS
- bool "rpm's xz payloads option has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_XZ
- help
- The xz payloads option rely entirely on the dependant package
- xz. So, you need to select it to enable this feature.
-
-config BR2_PACKAGE_M4
- bool "m4 target package removed"
- select BR2_LEGACY
- help
- The m4 target package has been removed, it's been
- deprecated for some time now.
-
-config BR2_PACKAGE_FLEX_BINARY
- bool "flex binary in target option removed"
- select BR2_LEGACY
- help
- The flex binary in the target option has been removed.
- It's been deprecated for some time now and is essentially a
- development tool which isn't very useful in the target.
-
-config BR2_PACKAGE_BISON
- bool "bison target package removed"
- select BR2_LEGACY
- help
- The bison target package has been removed, it's been
- deprecated for some time now and is essentially a development
- tool which isn't very useful in the target.
-
-config BR2_PACKAGE_GOB2
- bool "gob2 target package removed"
- select BR2_LEGACY
- help
- The gob2 target package has been removed, it's been
- deprecated for some time now and was essentially useless
- without a target toolchain.
-
-config BR2_PACKAGE_DISTCC
- bool "distcc target package removed"
- select BR2_LEGACY
- help
- The distcc target package has been removed, it's been
- deprecated for some time now and was essentially useless
- without a target toolchain.
-
-config BR2_PACKAGE_HASERL_VERSION_0_8_X
- bool "haserl 0.8.x version removed"
- select BR2_LEGACY
- help
- The 0.8.x version option for haserl has been removed since it
- has been deprecated for some time now.
- You should be able to use the 0.9.x version without issues.
-
-config BR2_PACKAGE_STRONGSWAN_TOOLS
- bool "strongswan option has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_STRONGSWAN_PKI
- select BR2_PACKAGE_STRONGSWAN_SCEP
- help
- The tools option has been removed upstream and the different
- tools have been split between the pki and scep options, with
- others deprecated.
-
-config BR2_PACKAGE_XBMC_ADDON_XVDR
- bool "xbmc-addon-xvdr removed"
- select BR2_LEGACY
- help
- According to the github project page:
- https://github.com/pipelka/xbmc-addon-xvdr
- this package is discontinued.
-
-config BR2_PACKAGE_XBMC_PVR_ADDONS
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_PVR_ADDONS
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_ALSA_LIB
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_ALSA_LIB
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_AVAHI
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_AVAHI
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_DBUS
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_DBUS
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBBLURAY
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBBLURAY
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_GOOM
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_GOOM
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_RSXS
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_RSXS
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBCEC
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBCEC
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBMICROHTTPD
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBMICROHTTPD
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBNFS
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBNFS
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_RTMPDUMP
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_RTMPDUMP
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBSHAIRPLAY
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBSMBCLIENT
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBSMBCLIENT
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBTHEORA
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBTHEORA
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBUSB
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBUSB
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_LIBVA
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_LIBVA
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PACKAGE_XBMC_WAVPACK
- bool "xbmc options have been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_KODI_WAVPACK
- help
- The XBMC media center project was renamed to Kodi
- entertainment center
-
-config BR2_PREFER_STATIC_LIB
- bool "static library option renamed"
- select BR2_LEGACY
- help
- The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
- highlights the fact that the option no longer "prefers"
- static libraries, but "enforces" static libraries (i.e
- shared libraries are completely unused).
-
- Take care of updating the type of libraries you want under the
- "Build options" menu.
-
-###############################################################################
-comment "Legacy options removed in 2014.11"
-
-config BR2_x86_generic
- bool "x86 generic variant has been removed"
- select BR2_LEGACY
- help
- The generic x86 CPU variant has been removed. Use another
- CPU variant instead.
-
-config BR2_GCC_VERSION_4_4_X
- bool "gcc 4.4.x has been removed"
- select BR2_LEGACY
- help
- The 4.4.x version of gcc has been removed. Use a newer
- version instead.
-
-config BR2_sparc_sparchfleon
- bool "sparchfleon CPU has been removed"
- select BR2_LEGACY
- help
- The sparchfleon CPU was only supported in a patched gcc 4.4
- version. Its support has been removed in favor of the leon3
- CPU starting from gcc 4.8.x.
-
-config BR2_sparc_sparchfleonv8
- bool "sparchfleonv8 CPU has been removed"
- select BR2_LEGACY
- help
- The sparchfleonv8 CPU was only supported in a patched gcc
- 4.4 version. Its support has been removed in favor of the
- leon3 CPU starting from gcc 4.8.x.
-
-config BR2_sparc_sparcsfleon
- bool "sparcsfleon CPU has been removed"
- select BR2_LEGACY
- help
- The sparcsfleon CPU was only supported in a patched gcc 4.4
- version. Its support has been removed in favor of the leon3
- CPU starting from gcc 4.8.x.
-
-config BR2_sparc_sparcsfleonv8
- bool "sparcsfleonv8 CPU has been removed"
- select BR2_LEGACY
- help
- The sparcsfleonv8 CPU was only supported in a patched gcc
- 4.4 version. Its support has been removed in favor of the
- leon3 CPU starting from gcc 4.8.x.
-
-config BR2_PACKAGE_XLIB_LIBPCIACCESS
- bool "xlib-libpciaccess option has been renamed"
- depends on BR2_PACKAGE_XORG7
- select BR2_LEGACY
- select BR2_PACKAGE_LIBPCIACCESS
- help
- libpciaccess neither depends on X11 nor Xlib. Thus the
- package has been renamed BR2_PACKAGE_LIBPCIACCESS
-
-config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
- bool "Xceive xc5000 option has been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
- help
- The Xceive xc5000 option now also handles older firmwares from
- Xceive (the xc4000 series), as well as new firmwares (the
- xc5000c) from Cresta, who bought Xceive.
-
-config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
- bool "Chelsio T4 option has been renamed"
- select BR2_LEGACY
- select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
- help
- The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
- has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
- to better account for the fact that a T5 variant exists.
-
-config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
- bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
- select BR2_LEGACY
- help
- The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
- renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
- select it in:
- Target packages -> Hardware handling ->
- Firmware -> linux-firmware -> WiFi firmware ->
- iwlwifi 3160/726x revision to use (revision 7)
-
-config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
- bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
- select BR2_LEGACY
- help
- The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
- renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
- select it in:
- Target packages -> Hardware handling ->
- Firmware -> linux-firmware -> WiFi firmware ->
- iwlwifi 3160/726x revision to use (revision 8)
-
-###############################################################################
-comment "Legacy options removed in 2014.08"
-
-config BR2_PACKAGE_LIBELF
- bool "libelf has been removed"
- select BR2_PACKAGE_ELFUTILS
- select BR2_LEGACY
- help
- The libelf package provided an old version of the libelf
- library and is deprecated. The libelf library is now provided
- by the elfutils package.
-
-config BR2_KERNEL_HEADERS_3_8
- bool "kernel headers version 3.8.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.8.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_PACKAGE_GETTEXT_TOOLS
- bool "support for gettext-tools on target has been removed"
- select BR2_LEGACY
- help
- The option to install the gettext utilities on the target
- has been removed. This is not necessary as Buildroot is not
- designed to provide a full development environment on the
- target. gettext tools should be used on the build machine
- instead.
-
-config BR2_PACKAGE_PROCPS
- bool "procps has been replaced by procps-ng"
- select BR2_PACKAGE_PROCPS_NG
- select BR2_LEGACY
- help
- The procps package has been replaced by the equivalent
- procps-ng.
-
-config BR2_BINUTILS_VERSION_2_20_1
- bool "binutils 2.20.1 has been removed"
- select BR2_LEGACY
- help
- The 2.20.1 version of binutils has been removed. Use a newer
- version instead.
-
-config BR2_BINUTILS_VERSION_2_21
- bool "binutils 2.21 has been removed"
- select BR2_LEGACY
- help
- The 2.21 version of binutils has been removed. Use a newer
- version instead.
-
-config BR2_BINUTILS_VERSION_2_23_1
- bool "binutils 2.23.1 has been removed"
- select BR2_LEGACY
- help
- The 2.23.1 version of binutils has been removed. Use a newer
- version instead.
-
-config BR2_UCLIBC_VERSION_0_9_32
- bool "uclibc 0.9.32 has been removed"
- select BR2_LEGACY
- help
- The 0.9.32 version of uClibc has been removed. Use a newer
- version instead.
-
-config BR2_GCC_VERSION_4_3_X
- bool "gcc 4.3.x has been removed"
- select BR2_LEGACY
- help
- The 4.3.x version of gcc has been removed. Use a newer
- version instead.
-
-config BR2_GCC_VERSION_4_6_X
- bool "gcc 4.6.x has been removed"
- select BR2_LEGACY
- help
- The 4.6.x version of gcc has been removed. Use a newer
- version instead.
-
-config BR2_GDB_VERSION_7_4
- bool "gdb 7.4 has been removed"
- select BR2_LEGACY
- help
- The 7.4 version of gdb has been removed. Use a newer version
- instead.
-
-config BR2_GDB_VERSION_7_5
- bool "gdb 7.5 has been removed"
- select BR2_LEGACY
- help
- The 7.5 version of gdb has been removed. Use a newer version
- instead.
-
-config BR2_BUSYBOX_VERSION_1_19_X
- bool "busybox version selection has been removed"
- select BR2_LEGACY
- help
- The possibility of selecting the Busybox version has been
- removed. Use the latest version provided by the Busybox
- package instead.
-
-config BR2_BUSYBOX_VERSION_1_20_X
- bool "busybox version selection has been removed"
- select BR2_LEGACY
- help
- The possibility of selecting the Busybox version has been
- removed. Use the latest version provided by the Busybox
- package instead.
-
-config BR2_BUSYBOX_VERSION_1_21_X
- bool "busybox version selection has been removed"
- select BR2_LEGACY
- help
- The possibility of selecting the Busybox version has been
- removed. Use the latest version provided by the Busybox
- package instead.
-
-config BR2_PACKAGE_LIBV4L_DECODE_TM6000
- bool "decode_tm6000"
- select BR2_PACKAGE_LIBV4L_UTILS
- select BR2_LEGACY
- help
- This libv4l option has been deprecated and replaced by a
- single option to build all the libv4l utilities.
-
-config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
- bool "ir-keytable"
- select BR2_PACKAGE_LIBV4L_UTILS
- select BR2_LEGACY
- help
- This libv4l option has been deprecated and replaced by a
- single option to build all the libv4l utilities.
-
-config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
- bool "v4l2-compliance"
- select BR2_PACKAGE_LIBV4L_UTILS
- select BR2_LEGACY
- help
- This libv4l option has been deprecated and replaced by a
- single option to build all the libv4l utilities.
-
-config BR2_PACKAGE_LIBV4L_V4L2_CTL
- bool "v4l2-ctl"
- select BR2_PACKAGE_LIBV4L_UTILS
- select BR2_LEGACY
- help
- This libv4l option has been deprecated and replaced by a
- single option to build all the libv4l utilities.
-
-config BR2_PACKAGE_LIBV4L_V4L2_DBG
- bool "v4l2-dbg"
- select BR2_PACKAGE_LIBV4L_UTILS
- select BR2_LEGACY
- help
- This libv4l option has been deprecated and replaced by a
- single option to build all the libv4l utilities.
-
-###############################################################################
-comment "Legacy options removed in 2014.05"
-
-config BR2_PACKAGE_EVTEST_CAPTURE
- bool "evtest-capture support removed (dropped since evtest 1.31)"
- select BR2_LEGACY
- help
- Support for evtest-capture has been removed (dropped from
- evtest package since version 1.31), use evemu package
- instead.
-
-config BR2_KERNEL_HEADERS_3_6
- bool "kernel headers version 3.6.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.6.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_KERNEL_HEADERS_3_7
- bool "kernel headers version 3.7.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.7.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_PACKAGE_VALA
- bool "vala target package has been removed"
- select BR2_LEGACY
- help
- The 'vala' target package has been removed since it has been
- deprecated for more than four buildroot releases.
- Note: the host vala package still exists.
-
-config BR2_TARGET_TZ_ZONELIST
- default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
-
-config BR2_PACKAGE_TZDATA_ZONELIST
- string "tzdata: the timezone list option has been renamed"
- help
- The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
- BR2_TARGET_TZ_ZONELIST, and moved to the "System
- configuration" menu. You'll need to select BR2_TARGET_TZ_INFO.
-
-config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
- bool
- default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
- select BR2_LEGACY
-
-config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
- bool "Lua command-line editing none has been renamed"
- select BR2_LEGACY
- help
- The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
- renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to
- select it in the corresponding choice.
-
-config BR2_PACKAGE_LUA_INTERPRETER_READLINE
- bool "Lua command-line editing using readline has been renamed"
- select BR2_LEGACY
- help
- The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
- renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
- it in the corresponding choice.
-
-config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
- bool "Lua command-line editing using linenoise has been renamed"
- select BR2_LEGACY
- help
- The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
- renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
- it in the corresponding choice.
-
-config BR2_PACKAGE_DVB_APPS_UTILS
- bool "dvb-apps utilities now built by default"
- select BR2_LEGACY
- help
- The dvb-apps utilities are now always built when the dvb-apps
- package is selected.
-
-config BR2_KERNEL_HEADERS_SNAP
- bool "Local Linux snapshot support removed"
- select BR2_LEGACY
- help
- Support for using a custom snapshot to install the Linux
- kernel headers has been removed.
-
-config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
- bool "/dev management by udev removed"
- select BR2_LEGACY
- help
- The 'udev' package has been converted to a virtual package.
- The providers for this feature are: 'eudev', 'systemd'.
-
- Therefore, if you are not using 'systemd' as init system, you
- must choose 'Dynamic using eudev' in the '/dev management'
- menu to get the same behaviour as in your old configuration.
-
- If you are using 'systemd', its internal implementation of
- 'udev' will be used automatically.
-
- You must also check the packages depending on 'udev' are still
- selected.
-
-config BR2_PACKAGE_UDEV
- bool "udev is now a virtual package"
- select BR2_LEGACY
- select BR2_PACKAGE_HAS_UDEV
- help
- The 'udev' package has been converted to a virtual package.
- The providers for this feature are: 'eudev', 'systemd'.
-
- Your old configuration refers to packages depending on 'udev',
- either for build or at runtime.
-
- Check that a 'udev' provider is selected. If you are not using
- 'systemd' as init system, 'eudev' should be selected, which is
- the case if '/dev management' is set to 'Dynamic using eudev'.
-
- If you are using 'systemd', its internal implementation of
- 'udev' is used.
-
-config BR2_PACKAGE_UDEV_RULES_GEN
- bool "udev rules generation handled by provider"
- select BR2_LEGACY
- select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
- select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
- help
- The 'udev' package has been converted to a virtual package.
- The providers for this feature are: 'eudev', 'systemd'.
-
- If you are not using 'systemd' as init system, udev rules
- generation will be handled by 'eudev'. Check that
- '/dev management' is set to 'Dynamic using eudev' to get
- the same behaviour as in your old configuration.
-
- If you are using 'systemd', it internal implementation of
- 'udev' will generate the rules.
-
-config BR2_PACKAGE_UDEV_ALL_EXTRAS
- bool "udev extras removed"
- select BR2_LEGACY
- help
- The 'udev' package has been converted to a virtual package.
- The providers for this feature are: 'eudev', 'systemd'.
-
- The option to enable the extra features of 'udev' (gudev, ...)
- has been removed. These features are automatically enabled in
- the 'udev' providers if the dependencies are selected. For
- example, selecting 'libglib2' will trigger the build of gudev.
-
-config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
- bool "xlib-libpthread-stubs option has been renamed"
- depends on BR2_PACKAGE_XORG7
- select BR2_LEGACY
- select BR2_PACKAGE_LIBPTHREAD_STUBS
- help
- The pthread stubs neither depend on X11 nor Xlib. Thus the
- package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
-
-###############################################################################
-comment "Legacy options removed in 2014.02"
-
-config BR2_sh2
- bool "sh2 support removed"
- select BR2_LEGACY
- help
- Due to an inexistent user base and generally poor Linux
- support, the support for the SH2 architecture was removed.
-
-config BR2_sh3
- bool "sh3 support removed"
- select BR2_LEGACY
- help
- Due to an inexistent user base and generally poor Linux
- support, the support for the SH3 architecture was removed.
-
-config BR2_sh3eb
- bool "sh3eb support removed"
- select BR2_LEGACY
- help
- Due to an inexistent user base and generally poor Linux
- support, the support for the SH3eb architecture was removed.
-
-config BR2_KERNEL_HEADERS_3_1
- bool "kernel headers version 3.1.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.1.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_KERNEL_HEADERS_3_3
- bool "kernel headers version 3.3.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.3.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_KERNEL_HEADERS_3_5
- bool "kernel headers version 3.5.x are no longer supported"
- select BR2_LEGACY
- help
- Version 3.5.x of the Linux kernel headers have been deprecated
- for more than four buildroot releases and are now removed.
-
-config BR2_GDB_VERSION_7_2
- bool "gdb 7.2.x is no longer supported"
- select BR2_GDB_VERSION_7_6
- select BR2_LEGACY
- help
- Version 7.2.x of gdb has been deprecated for more than four
- buildroot releases and is now removed. As an alternative, gdb
- 7.5.x has been automatically selected in your configuration.
-
-config BR2_GDB_VERSION_7_3
- bool "gdb 7.3.x is no longer supported"
- select BR2_GDB_VERSION_7_6
- select BR2_LEGACY
- help
- Version 7.3.x of gdb has been deprecated for more than four
- buildroot releases and is now removed. As an alternative, gdb
- 7.5.x has been automatically selected in your configuration.
-
-config BR2_PACKAGE_CCACHE
- bool "ccache target package has been removed"
- select BR2_LEGACY
- help
- The 'ccache' target package has been removed since it has been
- deprecated for more than four buildroot releases.
- Note: using ccache for speeding up builds is still supported.
-
-config BR2_HAVE_DOCUMENTATION
- bool "support for documentation on target has been removed"
- select BR2_LEGACY
- help
- Support for documentation on target has been removed since it
- has been deprecated for more than four buildroot releases.
-
-config BR2_PACKAGE_AUTOMAKE
- bool "automake target package has been removed"
- select BR2_LEGACY
- help
- The 'automake' target package has been removed since it has
- been deprecated for more than four buildroot releases.
- Note: the host automake still exists.
-
-config BR2_PACKAGE_AUTOCONF
- bool "autoconf target package has been removed"
- select BR2_LEGACY
- help
- The 'autoconf' target package has been removed since it has
- been deprecated for more than four buildroot releases.
- Note: the host autoconf still exists.
-
-config BR2_PACKAGE_XSTROKE
- bool "xstroke has been removed"
- select BR2_LEGACY
- help
- The 'xstroke' package has been removed since it has been
- deprecated for more than four buildroot releases.
-
-config BR2_PACKAGE_LZMA
- bool "lzma target package has been removed"
- select BR2_LEGACY
- help
- The 'lzma' target package has been removed since it has been
- deprecated for more than four buildroot releases.
- Note: generating lzma-compressed rootfs images is still
- supported.
-
-config BR2_PACKAGE_TTCP
- bool "ttcp has been removed"
- select BR2_LEGACY
- help
- The 'ttcp' package has been removed since it has been
- deprecated for more than four buildroot releases.
-
-config BR2_PACKAGE_LIBNFC_LLCP
- bool "libnfc-llcp has been replaced by libllcp"
- select BR2_LEGACY
- select BR2_PACKAGE_LIBLLCP
- help
- The 'libnfc-llcp' package has been removed since upstream
- renamed to 'libllcp'. We have added a new package for
- 'libllcp' and bumped the version at the same time.
-
-config BR2_PACKAGE_MYSQL_CLIENT
- bool "MySQL client renamed to MySQL"
- select BR2_LEGACY
- select BR2_PACKAGE_MYSQL
- help
- The option has been renamed BR2_PACKAGE_MYSQL
-
-config BR2_PACKAGE_SQUASHFS3
- bool "squashfs3 has been removed"
- select BR2_LEGACY
- select BR2_PACKAGE_SQUASHFS
- help
- The 'squashfs3' package has been removed since it has been
- deprecated for more than four buildroot releases. Package
- 'squashfs' (4) has been selected automatically as replacement.
-
-config BR2_TARGET_ROOTFS_SQUASHFS3
- bool "squashfs3 rootfs support has been removed"
- select BR2_LEGACY
- help
- Together with the removal of the squashfs3 package, support
- for squashfs3 root filesystems has been removed too. Squashfs
- root filesystems will automatically use squashfs4 now.
-
-config BR2_PACKAGE_NETKITBASE
- bool "netkitbase has been removed"
- select BR2_LEGACY
- help
- The 'netkitbase' package has been removed since it has been
- deprecated since 2012.11. This package provided 'inetd'
- which is replaced by 'xinet' and 'ping' which is replaced by
- 'busybox' or 'fping'.
-
-config BR2_PACKAGE_NETKITTELNET
- bool "netkittelnet has been removed"
- select BR2_LEGACY
- help
- The 'netkittelnet' package has been removed since it has
- been deprecated since 2012.11. 'busybox' provides a telnet
- client and should be used instead.
-
-config BR2_PACKAGE_LUASQL
- bool "luasql has been replaced by luasql-sqlite3"
- select BR2_PACKAGE_LUASQL_SQLITE3
- select BR2_LEGACY
- help
- The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
-
-config BR2_PACKAGE_LUACJSON
- bool "luacjson has been replaced by lua-cjson"
- select BR2_PACKAGE_LUA_CJSON
- select BR2_LEGACY
- help
- The option has been renamed BR2_PACKAGE_LUA_CJSON.
-
-###############################################################################
-comment "Legacy options removed in 2013.11"
-
-config BR2_PACKAGE_LVM2_DMSETUP_ONLY
- bool "lvm2's 'dmsetup only' option removed"
- select BR2_LEGACY
- help
- The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
- led to problems with other packages that need the full lvm2
- suite. Therefore, the option has been replaced with the
- positive BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
-
-# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
-# in order to automatically propagate old configs
-
-config BR2_PACKAGE_QT_JAVASCRIPTCORE
- bool "qt javascriptcore option removed"
- select BR2_LEGACY
- help
- The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
- force the activation or disabling of the JIT compiler in the
- Qt Javascript interpreter. However, the JIT compiler is not
- available for all architectures, so forcing its activation
- does not always work. Moreover, Qt knows by itself for which
- architectures JIT support is possible, and will
- automatically enable it if possible.
-
- Therefore, this option was in fact useless, and causing
- build problems when enabled on architectures for which the
- JIT support was not available. It has been removed, and
- there is no replacement: Qt will enable JIT at compile time
- when possible.
-
-config BR2_PACKAGE_MODULE_INIT_TOOLS
- bool "module-init-tools replaced by kmod"
- select BR2_PACKAGE_KMOD
- select BR2_PACKAGE_KMOD_TOOLS
- select BR2_LEGACY
- help
- The 'module-init-tools' package has been removed, since it
- has been depracated upstream and replaced by 'kmod'.
-
-config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
- string "u-boot: the git repository URL option has been renamed"
- help
- The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
- been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
-
-config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
- bool
- default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
- select BR2_LEGACY
-
-# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
-# boot/uboot/Config.in
-
-config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
- string "u-boot: the git repository version option has been renamed"
- help
- The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
- been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
-
-config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
- bool
- default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
- select BR2_LEGACY
-
-# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
-# boot/uboot/Config.in
-
-config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
- string "linux: the git repository URL option has been renamed"
- help
- The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
- been renamed to
- BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
-
-config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
- bool
- default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
- select BR2_LEGACY
-
-# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
-# linux/Config.in
-
-config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
- string "linux: the git repository version option has been renamed"
- help
- The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
- been renamed to
- BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
-
-config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
- bool
- default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
- select BR2_LEGACY
-
-# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
-# linux/Config.in
-
-###############################################################################
-comment "Legacy options removed in 2013.08"
-
-config BR2_ARM_OABI
- bool "ARM OABI support has been removed"
- select BR2_LEGACY
- help
- The support for the ARM OABI was deprecated since a while,
- and has been removed completely from Buildroot. It is also
- deprecated in upstream gcc, since gcc 4.7. People should
- switch to EABI instead, which should not be a problem as
- long as you don't have pre-built OABI binaries in your
- system that you can't recompile.
-
-config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
- bool "dosfstools dosfsck renamed to fsck.fat"
- select BR2_LEGACY
- select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
- help
- dosfsck was renamed upstream to fsck.fat for consistency.
-
-config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
- bool "dosfstools dosfslabel renamed to fatlabel"
- select BR2_LEGACY
- select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
- help
- doslabel was renamed upstream to fatlabel for consistency.
-
-config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
- bool "dosfstools mkdosfs renamed to mkfs.fat"
- select BR2_LEGACY
- select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
- help
- mkdosfs was renamed upstream to mkfs.fat for consistency.
-
-config BR2_ELF2FLT
- bool "the elf2flt option has been renamed"
- select BR2_LEGACY
- help
- The BR2_ELF2FLT option has been renamed to
- BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
- the package infrastructure.
-
-config BR2_VFP_FLOAT
- bool "the ARM VFP floating point option has been renamed"
- select BR2_LEGACY
- help
- Due to a major refactoring of the floating-point handling of
- the ARM architecture support, the BR2_VFP_FLOAT option has
- been replaced with a choice of options that allows to select
- between various VFP versions/capabilities.
-
-config BR2_PACKAGE_GCC_TARGET
- bool "gcc on the target filesystem has been removed"
- select BR2_LEGACY
- help
- The support for gcc in the target filesystem was deprecated
- since a while, and has been removed completely from Buildroot.
- See Buildroot's documentation for more explanations.
-
-config BR2_HAVE_DEVFILES
- bool "development files in target filesystem has been removed"
- select BR2_LEGACY
- help
- The installation of the development files in the target
- filesystem was deprecated since a while, and has been removed
- completely from Buildroot.
- See Buildroot's documentation for more explanations.
-
-endmenu
-
-endif # !SKIP_LEGACY
diff --git a/src/native/buildroot-2019.02/DEVELOPERS b/src/native/buildroot-2019.02/DEVELOPERS
deleted file mode 100644
index f9b6a0e7..00000000
--- a/src/native/buildroot-2019.02/DEVELOPERS
+++ /dev/null
@@ -1,2312 +0,0 @@
-# Syntax:
-#
-# N: Firstname Lastname
-# F: file pattern or directory
-# F: file pattern or directory
-#
-# The "F" entries can be:
-#
-# - A directory, in which case all patches touching any file in this
-# directory or its subdirectories will be CC'ed to the developer.
-# - A pattern, in which case the pattern will be expanded, and then
-# all files/directories (and their subdirectories) will be
-# considered when matching against a patch
-#
-# Notes:
-#
-# - When a developer adds an "arch/Config.in." file to its list
-# of files, he is considered a developer of this architecture. He
-# will receive e-mail notifications about build failures occuring on
-# this architecture. Not more than one e-mail per day is sent.
-# - When a developer adds a directory that contains one or several
-# packages, this developer will be notified when build failures
-# occur. Not more than one e-mail per day is sent.
-# - When a developer adds an "package/pkg-.mk" file to its list
-# of files, he is considered interested by this package
-# infrastructure, and will be CC'ed on all patches that add or
-# modify packages that use this infrastructure.
-
-N: Abhilash Tuse
-F: package/gstreamer1/gst1-rtsp-server/
-
-N: Adam Duskett
-F: package/audit/
-F: package/busybox/
-F: package/checkpolicy/
-F: package/cppdb/
-F: package/gstreamer1/gstreamer1/
-F: package/gstreamer1/gstreamer1-mm/
-F: package/gstreamer1/gst1-plugins-bad/
-F: package/gstreamer1/gst1-plugins-base/
-F: package/gstreamer1/gst1-plugins-good/
-F: package/gstreamer1/gst1-plugins-ugly/
-F: package/gstreamer1/gst1-vaapi/
-F: package/imx-usb-loader/
-F: package/janus-gateway/
-F: package/json-for-modern-cpp/
-F: package/libcpprestsdk/
-F: package/libressl/
-F: package/libselinux/
-F: package/libsemanage/
-F: package/libsepol/
-F: package/libwebsockets/
-F: package/nginx-naxsi/
-F: package/php/
-F: package/policycoreutils/
-F: package/python3/
-F: package/python-flask-sqlalchemy/
-F: package/python-mutagen/
-F: package/python-pip/
-F: package/python-psycopg2/
-F: package/python-sqlalchemy/
-F: package/python-visitor/
-F: package/restorecond/
-F: package/refpolicy/
-F: package/selinux-python/
-F: package/semodule-utils/
-F: package/setools/
-F: package/sngrep/
-F: package/systemd/
-
-N: Adrian Perez de Castro
-F: package/brotli/
-F: package/libepoxy/
-F: package/webkitgtk/
-F: package/woff2/
-
-N: Adrien Gallouët
-F: package/bird/
-F: package/glorytun/
-
-N: Aleksander Morgado
-F: package/libmbim/
-F: package/libqmi/
-F: package/modem-manager/
-
-N: Alex Suykov
-F: board/chromebook/snow/
-F: configs/chromebook_snow_defconfig
-F: package/vboot-utils/
-
-N: Alexander Clouter
-F: package/odhcp6c/
-
-N: Alexander Dahl
-F: package/fastd/
-F: package/libuecc/
-F: package/putty/
-
-N: Alexander Lukichev
-F: package/openpgm/
-
-N: Alexander Mukhin
-F: package/hostapd/
-
-N: Alexander Sverdlin
-F: package/mini-snmpd/
-
-N: Alexander Varnin
-F: package/liblog4c-localtime/
-
-N: Alexandre Belloni
-F: package/tz/
-
-N: Alexandre Esse
-F: package/kvazaar/
-F: package/v4l2loopback/
-
-N: Alistair Francis
-F: package/xen/
-
-N: Alvaro G. M
-F: package/dcron/
-F: package/libxmlrpc/
-F: package/python-docopt/
-
-N: Anders Darander
-F: package/ktap/
-
-N: André Hentschel
-F: package/azure-iot-sdk-c/
-F: package/libkrb5/
-F: package/openal/
-F: package/p7zip/
-F: package/wine/
-
-N: Andrey Smirnov
-F: package/python-backports-shutil-get-terminal-size/
-F: package/python-decorator/
-F: package/python-ipython-genutils/
-F: package/python-pathlib2/
-F: package/python-pickleshare/
-F: package/python-scandir/
-F: package/python-simplegeneric/
-F: package/python-systemd/
-F: package/python-traitlets/
-F: package/zstd/
-
-N: Andrey Yurovsky
-F: package/rauc/
-
-N: Andy Kennedy
-F: package/libunwind/
-
-N: Angelo Compagnucci
-F: package/corkscrew/
-F: package/fail2ban/
-F: package/i2c-tools/
-F: package/mender/
-F: package/mono/
-F: package/mono-gtksharp3/
-F: package/monolite/
-F: package/python-can/
-F: package/python-pillow/
-F: package/python-pydal/
-F: package/python-web2py/
-F: package/sysdig/
-
-N: Anisse Astier
-F: package/go/
-F: package/nghttp2/
-
-N: Anthony Viallard
-F: package/gnuplot/
-
-N: Antoine Ténart
-F: package/wf111/
-
-N: Antony Pavlov
-F: package/lsscsi/
-
-N: ARC Maintainers
-F: arch/Config.in.arc
-F: board/synopsys/
-F: configs/snps_arc700_axs101_defconfig
-F: configs/snps_archs38_axs103_defconfig
-F: configs/snps_archs38_haps_defconfig
-F: configs/snps_archs38_hsdk_defconfig
-F: configs/snps_archs38_vdk_defconfig
-
-N: Ariel D'Alessandro
-F: package/axfsutils/
-F: package/mali-t76x/
-
-N: Arnaud Aujon
-F: package/espeak/
-
-N: Arnout Vandecappelle
-F: package/arp-scan/
-F: package/dehydrated/
-F: package/freescale-imx/firmware-imx/
-F: package/freescale-imx/imx-lib/
-F: package/gstreamer/gst-fsl-plugins/
-F: package/libpagekite/
-F: package/lua-bit32/
-F: package/owfs/
-F: package/python-bottle/
-F: package/sqlcipher/
-F: package/stress/
-
-N: Asaf Kahlon
-F: package/libuv/
-F: package/python*
-F: package/zeromq/
-
-N: Ash Charles
-F: package/pru-software-support/
-F: package/ti-cgt-pru/
-
-N: Assaf Inbal
-F: package/lbase64/
-F: package/luabitop/
-F: package/luaexpatutils/
-F: package/luaposix/
-F: package/luasec/
-F: package/lua-ev/
-F: package/orbit/
-
-N: Bartosz Bilas
-F: package/qt5/qt5scxml/
-
-N: Bartosz Golaszewski
-F: package/autoconf-archive/
-F: package/doxygen/
-F: package/libgpiod/
-F: package/libserialport/
-F: package/libsigrok/
-F: package/libsigrokdecode/
-F: package/libzip/
-F: package/pulseview/
-F: package/sigrok-cli/
-
-N: Baruch Siach
-F: package/18xx-ti-utils/
-F: package/daemon/
-F: package/dropbear/
-F: package/ebtables/
-F: package/i2c-tools/
-F: package/libcurl/
-F: package/libpcap/
-F: package/openipmi/
-F: package/socat/
-F: package/strace/
-F: package/tcpdump/
-F: package/ti-uim/
-F: package/uhubctl/
-
-N: Ben Boeckel
-F: package/taskd/
-
-N: Benjamin Kamath
-F: package/lapack/
-
-N: Bernd Kuhls
-F: package/alsa-lib/
-F: package/alsa-utils/
-F: package/apache/
-F: package/apr/
-F: package/apr-util/
-F: package/asterisk/
-F: package/bcg729/
-F: package/bluez-tools/
-F: package/boinc/
-F: package/clamav/
-F: package/dovecot/
-F: package/dovecot-pigeonhole/
-F: package/dtv-scan-tables/
-F: package/eudev/
-F: package/exim/
-F: package/fetchmail/
-F: package/ffmpeg/
-F: package/freeswitch/
-F: package/freeswitch-mod-bcg729/
-F: package/ghostscript/
-F: package/giflib/
-F: package/glmark2/
-F: package/hdparm/
-F: package/jsoncpp/
-F: package/kodi*
-F: package/lame/
-F: package/leafnode2/
-F: package/libaacs/
-F: package/libasplib/
-F: package/libass/
-F: package/libbdplus/
-F: package/libbluray/
-F: package/libbroadvoice/
-F: package/libcdio/
-F: package/libcec/
-F: package/libcodec2/
-F: package/libcrossguid/
-F: package/libdcadec/
-F: package/libdrm/
-F: package/libdvbcsa/
-F: package/libdvdcss/
-F: package/libdvdnav/
-F: package/libdvdread/
-F: package/libebur128/
-F: package/libfreeglut/
-F: package/libg7221/
-F: package/libglew/
-F: package/libglfw/
-F: package/libglu/
-F: package/libhdhomerun/
-F: package/libilbc/
-F: package/libldns/
-F: package/libmicrohttpd/
-F: package/libminiupnpc/
-F: package/libnatpmp/
-F: package/libnpth/
-F: package/libogg/
-F: package/libopenh264/
-F: package/libpciaccess/
-F: package/libplatform/
-F: package/libpng/
-F: package/libsidplay2/
-F: package/libsilk/
-F: package/libsndfile/
-F: package/libsoil/
-F: package/libsoundtouch/
-F: package/libsquish/
-F: package/liburiparser/
-F: package/libva/
-F: package/libva-intel-driver/
-F: package/libva-utils/
-F: package/libvorbis/
-F: package/libvpx/
-F: package/libyuv/
-F: package/mesa3d/
-F: package/minidlna/
-F: package/mjpg-streamer/
-F: package/perl-crypt-openssl-guess/
-F: package/perl-crypt-openssl-random/
-F: package/perl-crypt-openssl-rsa/
-F: package/perl-digest-sha1/
-F: package/perl-encode-detect/
-F: package/perl-encode-locale/
-F: package/perl-file-listing/
-F: package/perl-html-parser/
-F: package/perl-html-tagset/
-F: package/perl-http-cookies/
-F: package/perl-http-daemon/
-F: package/perl-http-date/
-F: package/perl-http-message/
-F: package/perl-http-negotiate/
-F: package/perl-io-html/
-F: package/perl-lwp-mediatypes/
-F: package/perl-mail-dkim/
-F: package/perl-mailtools/
-F: package/perl-mime-base64/
-F: package/perl-net-dns/
-F: package/perl-net-http/
-F: package/perl-netaddr-ip/
-F: package/perl-timedate/
-F: package/perl-uri/
-F: package/perl-www-robotrules/
-F: package/pixman/
-F: package/pngquant/
-F: package/pound/
-F: package/pure-ftpd/
-F: package/python-couchdb/
-F: package/python-cssutils/
-F: package/python-futures/
-F: package/python-mwclient/
-F: package/python-mwscrape/
-F: package/python-mwscrape2slob/
-F: package/python-mako/
-F: package/python-oauthlib/
-F: package/python-pyicu/
-F: package/python-pylru/
-F: package/python-requests-oauthlib/
-F: package/python-slob/
-F: package/rtmpdump/
-F: package/samba4/
-F: package/softether/
-F: package/spandsp/
-F: package/sqlite/
-F: package/taglib/
-F: package/tinyxml2/
-F: package/tor/
-F: package/transmission/
-F: package/tvheadend/
-F: package/unixodbc/
-F: package/vdr/
-F: package/vdr-plugin-vnsiserver/
-F: package/vlc/
-F: package/vnstat/
-F: package/waylandpp/
-F: package/x11r7/
-F: package/x264/
-F: package/x265/
-F: package/znc/
-
-N: Biagio Montaruli
-F: board/acmesystems/
-F: configs/acmesystems_*
-
-N: Bimal Jacob
-F: package/nginx-upload/
-
-N: Bogdan Radulescu
-F: package/iftop/
-F: package/ncdu/
-
-N: Brandon Maier
-F: package/vmtouch/
-
-N: Brock Williams
-F: package/pdmenu/
-
-N: Carlo Caione
-F: package/sunxi-boards/
-
-N: Carlos Santos
-F: package/aer-inject/
-F: package/busybox/
-F: package/gtest/
-F: package/initscripts/
-F: package/intel-microcode/
-F: package/libpam-radius-auth/
-F: package/libpam-tacplus/
-F: package/modem-manager/
-F: package/pamtester/
-F: package/pcm-tools/
-F: package/perl-file-util/
-F: package/skeleton-custom/
-F: package/skeleton-init-common/
-F: package/skeleton-init-none/
-F: package/skeleton-init-systemd/
-F: package/skeleton-init-sysv/
-F: package/skeleton/
-F: package/sysvinit/
-F: package/util-linux/
-F: package/tpm2-abrmd/
-F: package/tpm2-tools/
-F: package/tpm2-tss/
-
-N: Carsten Schoenert
-F: package/dvbsnoop/
-F: package/libdvbsi/
-F: package/libsvg/
-F: package/libsvg-cairo/
-
-N: Cédric Chépied
-F: package/znc/
-
-N: Chakra Divi
-F: board/friendlyarm/nanopi-m1
-F: board/friendlyarm/nanopi-m1-plus
-F: board/olimex/a13_olinuxino
-F: board/orangepi/orangepi-plus
-F: configs/nanopi_m1_defconfig
-F: configs/nanopi_m1_plus_defconfig
-F: configs/olimex_a13_olinuxino_defconfig
-F: configs/orangepi_plus_defconfig
-
-N: Chris Packham
-F: package/eventlog/
-F: package/gstreamer1/gst1-shark/
-F: package/micropython/
-F: package/micropython-lib/
-F: package/syslog-ng/
-
-N: Christian Kellermann
-F: package/python-pylibftdi/
-
-N: Christian Stewart
-F: linux/linux-ext-aufs.mk
-F: package/aufs/
-F: package/aufs-util/
-F: package/batman-adv/
-F: package/docker-cli/
-F: package/docker-containerd/
-F: package/docker-engine/
-F: package/docker-proxy/
-F: package/go/
-F: package/mosh/
-F: package/rtl8821au/
-F: package/runc/
-F: package/tini/
-
-N: Christophe Vu-Brugier
-F: package/drbd-utils/
-F: package/iotop/
-F: package/python-configshell-fb/
-F: package/python-rtslib-fb/
-F: package/python-urwid/
-F: package/targetcli-fb/
-
-N: Christopher McCrory
-F: package/perl-appconfig/
-F: package/perl-astro-suntime/
-F: package/perl-class-load/
-F: package/perl-class-std/
-F: package/perl-class-std-fast/
-F: package/perl-data-dump/
-F: package/perl-data-optlist/
-F: package/perl-data-uuid/
-F: package/perl-date-manip/
-F: package/perl-dbd-mysql/
-F: package/perl-dbi/
-F: package/perl-device-serialport/
-F: package/perl-dist-checkconflicts/
-F: package/perl-file-slurp/
-F: package/perl-io-interface/
-F: package/perl-io-socket-multicast/
-F: package/perl-json-maybexs/
-F: package/perl-mime-tools/
-F: package/perl-module-implementation/
-F: package/perl-module-runtime/
-F: package/perl-number-bytes-human/
-F: package/perl-package-stash/
-F: package/perl-params-util/
-F: package/perl-sub-install/
-F: package/perl-sys-cpu/
-F: package/perl-sys-meminfo/
-F: package/perl-sys-mmap/
-F: package/perl-time-parsedate/
-F: package/perl-x10/
-
-N: Clayton Shotwell
-F: package/audit/
-F: package/checkpolicy/
-F: package/cpio/
-F: package/libcgroup/
-F: package/libee/
-F: package/libestr/
-F: package/liblogging/
-F: package/libselinux/
-F: package/libsemanage/
-F: package/libsepol/
-F: package/policycoreutils/
-F: package/ustr/
-
-N: Corentin Guillevic
-F: package/libloki/
-
-N: Cyril Bur
-F: arch/Config.in.powerpc
-F: package/kvm-unit-tests
-
-N: Dagg Stompler
-F: board/hardkernel/odroidc2
-F: configs/odroidc2_defconfig
-F: package/libamcodec/
-F: package/odroid-mali/
-F: package/odroid-scripts/
-
-N: Damien Lanson
-F: package/libvdpau/
-F: package/log4cpp/
-
-N: Daniel Nicoletti
-F: package/cutelyst/
-
-N: Daniel Nyström
-F: package/e2tools/
-
-N: Daniel Price
-F: package/nodejs/
-F: package/redis/
-
-N: Daniel Sangue
-F: package/libftdi1/
-
-N: Danomi Manchego
-F: package/cjson/
-F: package/jq/
-F: package/libwebsockets/
-F: package/ljsyscall/
-F: package/lua-cjson/
-F: package/luaexpat/
-F: package/xinetd/
-
-N: David Bachelart
-F: package/ccrypt/
-F: package/dos2unix/
-F: package/ipmiutil/
-F: package/jsmn/
-F: package/python-daemon/
-F: package/sslh/
-F: package/udpxy/
-
-N: David Bender
-F: package/benejson/
-F: package/cgic/
-F: package/freeradius-client/
-F: package/openldap/
-
-N: David du Colombier <0intro@gmail.com>
-F: package/x264/
-
-N: David Graziano
-F: package/libcsv/
-
-N: David Lechner
-F: board/lego/ev3/
-F: configs/lego_ev3_defconfig
-F: linux/linux-ext-ev3dev-linux-drivers.mk
-F: package/ev3dev-linux-drivers/
-
-N: Davide Viti
-F: package/flann/
-F: package/python-paho-mqtt/
-F: package/qhull/
-F: package/tcllib/
-
-N: Denis Bodor
-F: package/libstrophe/
-
-N: Dimitrios Siganos
-F: package/wireless-regdb/
-
-N: Dominik Faessler
-F: package/logsurfer/
-F: package/python-id3/
-
-N: Doug Kehn
-F: package/nss-pam-ldapd/
-F: package/sp-oops-extract/
-F: package/unscd/
-
-N: Dushara Jayasinghe
-F: package/prosody/
-
-N: Ed Swierk
-F: package/xxhash/
-
-N: Eric Le Bihan
-F: docs/manual/adding-packages-meson.txt
-F: package/adwaita-icon-theme/
-F: package/cargo-bin/
-F: package/cargo/
-F: package/darkhttpd/
-F: package/eudev/
-F: package/execline/
-F: package/hicolor-icon-theme/
-F: package/jemalloc/
-F: package/meson/
-F: package/ninja/
-F: package/pkg-meson.mk
-F: package/rust-bin/
-F: package/rust/
-F: package/s6/
-F: package/s6-dns/
-F: package/s6-linux-init/
-F: package/s6-linux-utils/
-F: package/s6-networking/
-F: package/s6-portable-utils/
-F: package/s6-rc/
-F: package/skalibs/
-F: package/smack/
-F: package/xvisor/
-
-N: Eric Limpens
-F: package/pifmrds/
-F: package/ympd/
-
-N: Erico Nunes
-F: board/aarch64-efi/
-F: configs/aarch64_efi_defconfig
-F: package/acpica/
-F: package/acpitool/
-F: package/efibootmgr/
-F: package/efivar/
-F: package/fwts/
-F: package/spi-tools/
-F: package/xdotool/
-F: configs/pc_x86_64_*
-
-N: Erik Larsson
-F: package/imx-mkimage/
-
-N: Erik Stromdahl
-F: package/mxsldr/
-
-N: Ernesto L. Williams Jr
-F: package/szip/
-
-N: Eugene Tarassov
-F: package/tcf-agent/
-
-N: Evan Zelkowitz
-F: package/sdl_gfx/
-
-N: Ezequiel Garcia
-F: board/ci20/
-F: configs/ci20_defconfig
-F: arch/Config.in.nios2
-F: package/fio/
-F: package/iptraf-ng/
-F: package/jimtcl/
-F: package/mimic/
-F: package/nodm/
-F: package/openbox/
-F: package/rtl8723bs/
-F: package/supertuxkart/
-
-N: Fabio Estevam
-F: board/warp7/
-F: configs/freescale_imx*
-F: configs/imx23evk_defconfig
-F: configs/imx6-sabre*
-F: configs/imx6slevk_defconfig
-F: configs/imx6sx-sdb_defconfig
-F: configs/imx6ulevk_defconfig
-F: configs/imx6ulpico_defconfig
-F: configs/imx7d-sdb_defconfig
-F: configs/imx7dpico_defconfig
-F: configs/mx25pdk_defconfig
-F: configs/mx51evk_defconfig
-F: configs/mx53loco_defconfig
-F: configs/mx6cubox_defconfig
-F: configs/mx6sx_udoo_neo_defconfig
-F: configs/mx6udoo_defconfig
-F: configs/wandboard_defconfig
-F: configs/warp7_defconfig
-F: package/atest/
-F: package/kmscube/
-
-N: Fabio Porcedda
-F: package/netsurf-buildsystem/
-
-N: Fabrice Fontaine
-F: package/domoticz/
-F: package/libmediaart/
-F: package/libmaxminddb/
-F: package/openzwave/
-
-N: Fabrice Fontaine
-F: package/alljoyn/
-F: package/alljoyn-base/
-F: package/alljoyn-tcl/
-F: package/alljoyn-tcl-base/
-F: package/boinc/
-F: package/cairo/
-F: package/duktape/
-F: package/expat/
-F: package/flatbuffers/
-F: package/gerbera/
-F: package/gtksourceview/
-F: package/gssdp/
-F: package/gupnp/
-F: package/gupnp-dlna/
-F: package/gupnp-tools/
-F: package/haproxy/
-F: package/hiredis/
-F: package/i2pd/
-F: package/igd2-for-linux/
-F: package/json-c/
-F: package/lcms2/
-F: package/lftp/
-F: package/libcap-ng/
-F: package/libcdio-paranoia/
-F: package/libcgicc/
-F: package/libconfig/
-F: package/libcue/
-F: package/libebml/
-F: package/libgee/
-F: package/libglib2/
-F: package/libgtk2/
-F: package/libgtk3/
-F: package/libidn/
-F: package/libidn2/
-F: package/libjpeg/
-F: package/liblockfile/
-F: package/libmatroska/
-F: package/libmpdclient/
-F: package/libnetfilter_conntrack/
-F: package/libnetfilter_queue/
-F: package/liboping/
-F: package/libpfm4/
-F: package/libraw/
-F: package/libraw1394/
-F: package/libroxml/
-F: package/librsvg/
-F: package/librsync/
-F: package/libsoup/
-F: package/libsoxr/
-F: package/libupnp/
-F: package/libupnp18/
-F: package/libv4l/
-F: package/libxslt/
-F: package/mbedtls/
-F: package/minissdpd/
-F: package/minizip/
-F: package/mongodb/
-F: package/motion/
-F: package/mutt/
-F: package/ncmpc/
-F: package/oprofile/
-F: package/pcmanfm/
-F: package/rygel/
-F: package/safeclib/
-F: package/tinycbor/
-F: package/tinydtls/
-F: package/tinymembench/
-F: package/whois/
-
-N: Falco Hyfing
-F: package/python-pymodbus/
-
-N: Floris Bos
-F: package/ipmitool/
-F: package/odhcploc/
-
-N: Francisco Gonzalez
-F: package/ser2net/
-
-N: Francois Perrad
-F: board/olimex/a20_olinuxino
-F: configs/olimex_a20_olinuxino_*
-F: package/4th/
-F: package/botan/
-F: package/chipmunk/
-F: package/dado/
-F: package/ficl/
-F: package/gdbm/
-F: package/libtomcrypt/
-F: package/libtommath/
-F: package/libump/
-F: package/linenoise/
-F: package/ljlinenoise/
-F: package/lpeg/
-F: package/lpty/
-F: package/lrandom/
-F: package/lsqlite3/
-F: package/lua*
-F: package/lunit/
-F: package/lzlib/
-F: package/moarvm/
-F: package/netsurf/
-F: package/perl*
-F: package/pkg-perl.mk
-F: package/pkg-luarocks.mk
-F: package/qemu/
-F: package/sdl2_mixer/
-F: package/sdl2_net/
-F: package/tekui/
-F: package/wsapi-fcgi/
-F: package/wsapi-xavante/
-F: utils/scancpan
-
-N: Frank Hunleth
-F: package/am335x-pru-package/
-F: package/libconfuse/
-F: package/libdmtx/
-F: package/libsodium/
-F: package/php-amqp/
-F: package/python-cherrypy/
-F: package/rabbitmq-server/
-F: package/sane-backends/
-F: package/ucl/
-F: package/upx/
-F: package/zxing-cpp/
-
-N: Gaël Portay
-F: package/qt5/qt5virtualkeyboard/
-F: package/qt5/qt5webengine/
-F: package/qt5/qt5webkit/
-F: package/qt5/qt5webkit-examples/
-
-N: Gary Bisson
-F: board/boundarydevices/
-F: configs/nitrogen*
-F: package/freescale-imx/
-F: package/gstreamer1/gst1-imx/
-F: package/libimxvpuapi/
-F: package/mfgtools/
-F: package/sshpass/
-F: package/x11r7/xdriver_xf86-video-imx-viv/
-
-N: Geoff Levand
-F: package/flannel/
-
-N: Geoffrey Ragot
-F: package/python-pycli/
-F: package/python-pyyaml/
-
-N: Gilles Talis
-F: package/fdk-aac/
-F: package/httping/
-F: package/iozone/
-F: package/leptonica/
-F: package/ocrad/
-F: package/tesseract-ocr/
-F: package/webp/
-F: package/xapian/
-
-N: Giulio Benetti
-F: package/sunxi-mali-mainline/
-F: package/sunxi-mali-mainline-driver/
-
-N: Gregory Dymarek
-F: package/ding-libs/
-F: package/gengetopt/
-F: package/janus-gateway/
-F: package/libnice/
-F: package/libsrtp/
-F: package/libwebsock/
-F: package/sofia-sip/
-
-N: Grzegorz Blach
-F: fs/f2fs/
-F: package/bluez5_utils-headers/
-F: package/f2fs-tools/
-F: package/pigpio/
-F: package/python-falcon/
-F: package/python-mimeparse/
-F: package/python-pigpio/
-F: package/python-wtforms/
-
-N: Guillaume Gardet
-F: package/c-icap/
-F: package/c-icap-modules/
-F: package/sdl2/
-
-N: Guillaume William Brs
-F: package/liquid-dsp/
-F: package/pixiewps/
-F: package/reaver/
-
-N: Guo Ren
-F: arch/Config.in.csky
-F: board/csky/
-F: configs/csky_*
-
-N: Gustavo Pimentel
-F: configs/arm_juno_defconfig
-F: board/arm/juno/
-
-N: Gwenhael Goavec-Merou
-F: package/gnuradio/
-F: package/gqrx/
-F: package/gr-osmosdr/
-F: package/libusbgx/
-F: package/python-cheetah/
-F: package/python-markdown/
-F: package/python-remi/
-F: package/python-sip/
-
-N: Henrique Camargo
-F: package/json-glib/
-
-N: Hiroshi Kawashima
-F: package/gauche/
-F: package/gmrender-resurrect/
-F: package/squeezelite/
-
-N: Ian Haylock
-F: package/python-rpi-gpio/
-
-N: Ignacy Gawędzki
-F: package/angularjs/
-
-N: Ilias Apalodimas
-F: package/keepalived/
-
-N: Ilya Averyanov
-F: package/exempi/
-
-N: Ismael Luceno
-F: package/axel/
-
-N: Jagan Teki
-F: board/amarula/
-F: board/asus/
-F: board/bananapi/
-F: board/engicam/
-F: board/friendlyarm/nanopi-a64/
-F: board/friendlyarm/nanopi-neo2/
-F: board/olimex/a64-olinuxino/
-F: board/orangepi/orangepi-lite2/
-F: board/orangepi/orangepi-one-plus
-F: board/orangepi/orangepi-pc2/
-F: board/orangepi/orangepi-prime/
-F: board/orangepi/orangepi-win/
-F: board/orangepi/orangepi-zero-plus2/
-F: board/pine64/
-F: configs/amarula_a64_relic_defconfig
-F: configs/amarula_vyasa_rk3288_defconfig
-F: configs/asus_tinker_rk3288_defconfig
-F: configs/bananapi_m1_defconfig
-F: configs/bananapi_m64_defconfig
-F: configs/engicam_imx6qdl_icore_defconfig
-F: configs/engicam_imx6qdl_icore_qt5_defconfig
-F: configs/engicam_imx6qdl_icore_rqs_defconfig
-F: configs/engicam_imx6ul_geam_defconfig
-F: configs/engicam_imx6ul_isiot_defconfig
-F: configs/friendlyarm_nanopi_a64_defconfig
-F: configs/friendlyarm_nanopi_neo2_defconfig
-F: configs/olimex_a64_olinuxino_defconfig
-F: configs/orangepi_lite2_defconfig
-F: configs/orangepi_one_plus_defconfig
-F: configs/orangepi_pc2_defconfig
-F: configs/orangepi_prime_defconfig
-F: configs/orangepi_win_defconfig
-F: configs/orangepi_zero_plus2_defconfig
-F: configs/pine64_defconfig
-F: configs/pine64_sopine_defconfig
-
-N: James Hilliard
-F: package/lua-std-debug/
-F: package/lua-std-normalize/
-F: package/python-aiodns/
-F: package/python-aiohttp/
-F: package/python-aiohttp-jinja2/
-F: package/python-aiohttp-remotes/
-F: package/python-aiohttp-security/
-F: package/python-aiohttp-session/
-F: package/python-aiohttp-sse/
-F: package/python-aiojobs/
-F: package/python-aiorwlock/
-F: package/python-async-timeout/
-F: package/python-cchardet/
-F: package/python-multidict/
-F: package/python-pycares/
-F: package/python-yarl/
-
-N: James Knight
-F: package/atkmm/
-F: package/cairomm/
-F: package/google-material-design-icons/
-F: package/glibmm/
-F: package/gtkmm3/
-F: package/libpqxx/
-F: package/pangomm/
-F: package/rpm/
-F: package/yad/
-
-N: Jan Heylen
-F: package/opentracing-cpp/
-
-N: Jan Kraval
-F: board/orangepi/orangepi-lite
-F: configs/orangepi_lite_defconfig
-
-N: Jan Kundrát
-F: configs/solidrun_clearfog_defconfig
-F: board/solidrun/clearfog/
-
-N: Jan Pedersen
-F: package/zip/
-
-N: Jan Viktorin
-F: package/python-pexpect/
-F: package/python-ptyprocess/
-F: package/zynq-boot-bin/
-
-N: Jared Bents
-F: package/davici/
-
-N: Jarkko Sakkinen
-F: package/quota/
-
-N: Jason Pruitt
-F: package/librtlsdr/
-
-N: Jens Rosenboom
-F: package/sl/
-
-N: Jens Zettelmeyer
-F: package/batctl/
-
-N: Jeremy Rosen
-F: package/fxload/
-
-N: Jérôme Oufella
-F: package/libdri2/
-F: package/qt-webkit-kiosk/
-
-N: Jérôme Pouiller
-F: package/apitrace/
-F: package/freescale-imx/gpu-amd-bin-mx51/
-F: package/freescale-imx/libz160/
-F: package/lxc/
-F: package/strongswan/
-F: package/wmctrl/
-F: package/x11r7/xdriver_xf86-video-imx/
-F: package/x11r7/xdriver_xf86-video-imx-viv/
-
-N: Joel Carlson
-F: package/capnproto/
-F: package/cmocka/
-F: package/flatcc/
-F: package/libcorrect/
-
-N: Joel Stanley
-F: package/pdbg/
-F: board/qemu/ppc64le-pseries/
-F: configs/qemu_ppc64le_pseries_defconfig
-
-N: Johan Derycke
-F: package/python-libconfig/
-
-N: Johan Oudinet
-F: package/ejabberd/
-F: package/erlang-eimp/
-F: package/erlang-goldrush/
-F: package/erlang-jiffy/
-F: package/erlang-lager/
-F: package/erlang-p1-cache-tab/
-F: package/erlang-p1-iconv/
-F: package/erlang-p1-oauth2/
-F: package/erlang-p1-sip/
-F: package/erlang-p1-stringprep/
-F: package/erlang-p1-stun/
-F: package/erlang-p1-tls/
-F: package/erlang-p1-utils/
-F: package/erlang-p1-xml/
-F: package/erlang-p1-xmpp/
-F: package/erlang-p1-yaml/
-F: package/erlang-p1-zlib/
-F: package/nginx-dav-ext/
-
-N: John Stile
-F: package/dhcpcd/
-
-N: Jonathan Ben Avraham
-F: arch/Config.in.xtensa
-F: package/autofs/
-F: package/dawgdic/
-F: package/libphidget/
-F: package/phidgetwebservice/
-F: package/rapidxml/
-F: package/sphinxbase/
-
-N: Jonathan Liu
-F: package/python-meld3/
-F: package/supervisor/
-
-N: Jörg Krause
-F: board/lemaker/bananapro/
-F: configs/bananapro_defconfig
-F: package/augeas/
-F: package/bluez-alsa/
-F: package/freescale-imx/imx-alsa-plugins/
-F: package/libopusenc/
-F: package/libupnpp/
-F: package/luv/
-F: package/luvi/
-F: package/mpd/
-F: package/shairport-sync/
-F: package/swupdate/
-F: package/upmpdcli/
-F: package/wavemon/
-
-N: Joris Lijssens
-F: package/emlog/
-F: package/libcoap/
-F: package/libnet/
-F: package/libuio/
-F: package/netsniff-ng/
-F: package/rabbitmq-c/
-
-N: Joseph Kogut
-F: package/at-spi2-atk/
-F: package/at-spi2-core/
-F: package/clang/
-F: package/gconf/
-F: package/libnss/
-F: package/llvm/
-F: package/python-cython/
-F: package/python-raven/
-F: package/python-schedule/
-F: package/python-sentry-sdk/
-F: package/python-websockets/
-F: package/python-xlib/
-
-N: Joshua Henderson
-F: package/qt5/qt5wayland/
-
-N: Juha Rantanen
-F: package/acsccid/
-
-N: Julian Scheel
-F: package/bitstream/
-F: package/cbootimage/
-F: package/cryptopp/
-F: package/dvblast/
-F: package/tegrarcm/
-
-N: Julien Boibessot
-F: board/armadeus/
-F: configs/armadeus*
-F: package/abootimg/
-F: package/gpm/
-F: package/lbreakout2/
-F: package/libcddb/
-F: package/libmodbus/
-F: package/ltris/
-F: package/opentyrian/
-F: package/python-pygame/
-
-N: Julien Corjon
-F: package/qt5/
-
-N: Julien Floret
-F: package/lldpd/
-
-N: Julien Grossholtz
-F: package/paho-mqtt-c
-
-N: Julien Viard de Galbert
-F: package/dieharder/
-F: package/easy-rsa/
-
-N: Justin Maggard
-F: package/dtach/
-
-N: Karoly Kasza
-F: package/irqbalance/
-F: package/openvmtools/
-
-N: Kelvin Cheung
-F: package/cpuload/
-F: package/bwm-ng/
-F: package/ramsmp/
-
-N: Kevin Joly
-F: package/libgphoto2/
-
-N: Koen Martens
-F: package/capnproto/
-F: package/linuxconsoletools/
-
-N: Kurt Van Dijck
-F: package/bcusdk/
-F: package/libpthsem/
-F: package/nilfs-utils/
-
-N: Laurent Cans
-F: package/aircrack-ng/
-
-N: Laurent Charpentier
-F: package/open-lldp/
-
-N: Lee Jones
-F: boot/afboot-stm32/
-
-N: Leon Anavi
-F: board/olimex/a10_olinuxino
-F: configs/olimex_a10_olinuxino_lime_defconfig
-
-N: Lionel Flandrin
-F: package/python-babel/
-F: package/python-daemonize/
-F: package/python-flask/
-F: package/python-flask-babel/
-F: package/python-gunicorn/
-
-N: Lionel Orry
-F: package/mongrel2/
-
-N: Lothar Felten
-F: board/bananapi/bananapi-m2-ultra/
-F: configs/bananapi_m2_ultra_defconfig
-F: package/ti-sgx-demos/
-F: package/ti-sgx-km/
-F: package/ti-sgx-um/
-
-N: Louis-Paul Cordier
-F: package/intel-gmmlib/
-
-N: Luca Ceresoli
-F: board/olimex/a20_olinuxino/
-F: board/zynq/
-F: board/zynqmp/
-F: configs/olimex_a20_olinuxino_*
-F: configs/zynq_zed_defconfig
-F: configs/zynqmp_zcu106_defconfig
-F: package/agentpp/
-F: package/exim/
-F: package/libpjsip/
-F: package/qpid-proton/
-F: package/rtl8188eu/
-F: package/snmppp/
-F: package/stm32flash/
-F: package/unzip/
-F: support/legal-info/
-
-N: Lucas De Marchi
-F: package/fswebcam/
-
-N: Ludovic Desroches
-F: board/atmel/
-F: configs/at91*
-F: configs/atmel_*
-F: package/fb-test-app/
-F: package/python-json-schema-validator/
-F: package/python-keyring/
-F: package/python-simplejson/
-F: package/python-versiontools/
-F: package/wilc1000-firmware/
-
-N: Mahyar Koshkouei
-F: package/ffmpeg/
-F: package/mpv/
-F: package/rpi-firmware/
-F: package/rpi-userland/
-
-N: Mamatha Inamdar
-F: package/nvme/
-
-N: Manuel Vögele
-F: package/python-pyqt5/
-F: package/python-requests-toolbelt/
-
-N: Marcin Bis
-F: package/bluez5_utils/
-F: package/cc-tool/
-F: package/ecryptfs-utils/
-
-N: Marcin Niestroj
-F: board/grinn/
-F: configs/grinn_*
-F: package/argparse/
-F: package/dt-utils/
-F: package/easydbus/
-F: package/lua-flu/
-F: package/lua-stdlib/
-F: package/luaossl/
-F: package/rs485conf/
-F: package/turbolua/
-
-N: Marcin Nowakowski
-F: package/libkcapi/
-
-N: Marcus Folkesson
-F: package/libostree/
-F: package/libselinux/
-F: package/libsemanage/
-F: package/libsepol/
-F: package/selinux-python/
-F: utils/config
-F: utils/diffconfig
-
-N: Marek Belisko
-F: package/libatasmart/
-F: package/polkit/
-F: package/sg3_utils/
-F: package/udisks/
-
-N: Mario Lang
-F: package/brltty/
-F: package/lynx/
-
-N: Mario Rugiero
-F: package/ratpoison/
-
-N: Mark Corbin
-F: arch/arch.mk.riscv
-F: arch/Config.in.riscv
-F: board/qemu/riscv32-virt/
-F: board/qemu/riscv64-virt/
-F: boot/riscv-pk/
-F: configs/qemu_riscv32_virt_defconfig
-F: configs/qemu_riscv64_virt_defconfig
-
-N: Markos Chandras
-F: package/harfbuzz/
-F: package/libsecret/
-
-N: Martin Bark
-F: board/raspberrypi/
-F: configs/raspberrypi3_defconfig
-F: package/ca-certificates/
-F: package/connman/
-F: package/nodejs/
-F: package/rpi-bt-firmware/
-F: package/rpi-firmware/
-F: package/rpi-wifi-firmware/
-F: package/tzdata/
-F: package/zic/
-
-N: Martin Hicks
-F: package/cryptsetup/
-
-N: Martin Kepplinger
-F: package/tslib/
-F: package/x11r7/xdriver_xf86-input-tslib/
-F: package/x11vnc/
-
-N: Mathieu Audat
-F: board/technologic/ts4900/
-F: configs/ts4900_defconfig
-F: package/ts4900-fpga/
-
-N: Matt Weber
-F: board/freescale/p*
-F: board/freescale/t*
-F: board/qemu/ppc64-e5500/
-F: configs/freescale_p*
-F: configs/freescale_t*
-F: configs/qemu_ppc64_e5500_defconfig
-F: package/argp-standalone/
-F: package/aufs/
-F: package/aufs-util/
-F: package/bc/
-F: package/bridge-utils/
-F: package/checkpolicy/
-F: package/checksec/
-F: package/cgroupfs-mount/
-F: package/crda/
-F: package/cunit/
-F: package/devmem2/
-F: package/dnsmasq/
-F: package/dosfstools/
-F: package/eigen/
-F: package/ethtool/
-F: package/flashbench/
-F: package/fmc/
-F: package/fmlib/
-F: package/git/
-F: package/gnutls/
-F: package/hostapd/
-F: package/i2c-tools/
-F: package/ifplugd/
-F: package/igmpproxy/
-F: package/iperf/
-F: package/iperf3/
-F: package/iputils/
-F: package/iw/
-F: package/kvm-unit-tests/
-F: package/kvmtool/
-F: package/libcsv/
-F: package/libcurl/
-F: package/libeastl/
-F: package/libfcgi/
-F: package/libopenssl/
-F: package/libselinux/
-F: package/libsemanage/
-F: package/libsepol/
-F: package/libssh2/
-F: package/libqmi/
-F: package/lighttpd/
-F: package/logrotate/
-F: package/makedevs/
-F: package/memtester/
-F: package/mii-diag/
-F: package/mrouted/
-F: package/mtd/
-F: package/mtools/
-F: package/nginx-upload/
-F: package/omniorb/
-F: package/openresolv/
-F: package/paxtest/
-F: package/picocom/
-F: package/policycoreutils/
-F: package/proftpd/
-F: package/protobuf-c/
-F: package/protobuf/
-F: package/python-flask-cors/
-F: package/python-ipy/
-F: package/python-posix-ipc/
-F: package/python-pypcap/
-F: package/python-pyrex/
-F: package/raptor/
-F: package/rcw/
-F: package/rng-tools/
-F: package/rsyslog/
-F: package/setools/
-F: package/smcroute/
-F: package/tclap/
-F: package/tini/
-F: package/uboot-tools/
-F: package/unionfs/
-F: package/valijson/
-F: package/wpa_supplicant/
-F: package/wireless_tools/
-F: package/xen/
-
-N: Mauro Condarelli
-F: package/mc/
-F: package/python-autobahn/
-F: package/python-cbor/
-F: package/python-characteristic/
-F: package/python-click/
-F: package/python-crossbar/
-F: package/python-lmdb/
-F: package/python-mistune/
-F: package/python-netaddr/
-F: package/python-pyasn-modules/
-F: package/python-pygments/
-F: package/python-pynacl/
-F: package/python-pytrie/
-F: package/python-service-identity/
-F: package/python-setproctitle/
-F: package/python-shutilwhich/
-F: package/python-treq/
-F: package/python-txaio/
-F: package/python-ujson/
-F: package/python-wsaccel/
-
-N: Max Filippov
-F: arch/Config.in.xtensa
-
-N: Maxime Hadjinlian
-F: package/babeld/
-F: package/dante/
-F: package/faifa/
-F: package/initscripts/
-F: package/intel-microcode/
-F: package/iucode-tool/
-F: package/jasper/
-F: package/kodi/
-F: package/libass/
-F: package/libbluray/
-F: package/libcdio/
-F: package/libcofi/
-F: package/libenca/
-F: package/libmodplug/
-F: package/libnfs/
-F: package/libplist/
-F: package/libshairplay/
-F: package/linux-zigbee/
-F: package/netcat-openbsd/
-F: package/open-plc-utils/
-F: package/rpi-firmware/
-F: package/rpi-userland/
-F: package/rtmpdump/
-F: package/skeleton/
-F: package/systemd/
-F: package/systemd-bootchart/
-F: package/tinyalsa/
-F: package/tinyxml/
-
-N: Maxime Ripard
-F: package/kmsxx/
-
-N: Michael Durrant
-F: board/arcturus/
-F: configs/arcturus_ucp1020_defconfig
-F: configs/arcturus_ucls1012a_defconfig
-
-N: Michael Rommel
-F: package/knock/
-F: package/python-crc16/
-F: package/python-pyzmq/
-
-N: Michael Trimarchi
-F: package/python-spidev/
-
-N: MichaÅ‚ Åyszczek
-F: board/altera/socrates_cyclone5/
-F: board/pine64/rock64
-F: configs/rock64_defconfig
-F: configs/socrates_cyclone5_defconfig
-
-N: Mike Harmony
-F: board/sinovoip/m2-plus/
-F: configs/bananapi_m2_plus_defconfig
-
-N: Mikhail Boiko
-F: package/libfribidi/
-
-N: Min Xu
-F: package/shadowsocks-libev/
-
-N: Mirza Krak
-F: package/mender/
-
-N: Morgan Delestre
-F: package/monkey/
-
-N: Murat Demirten
-F: package/jpeg-turbo/
-F: package/libgeotiff/
-
-N: Mylène Josserand
-F: package/rtl8723bu/
-
-N: Nathaniel Roach
-F: package/bandwidthd/
-F: package/libgudev/
-
-N: Naumann Andreas
-F: package/evemu/
-F: package/libevdev/
-
-N: Nicolas Cavallari
-F: package/libgit2/
-
-N: Nicolas Serafini
-F: package/exiv2/
-F: package/nvidia-tegra23/nvidia-tegra23-binaries/
-F: package/nvidia-tegra23/nvidia-tegra23-codecs/
-
-N: Nikolay Dimitrov
-F: board/embest/riotboard/
-F: configs/riotboard_defconfig
-
-N: Nimai Mahajan