summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* board: add blackfin gdb simulator supportWaldemar Brodkorb2016-07-247-0/+169
| | | | | | | | | With this config you can bootup a Linux kernel in GDB simulator and test Blackfin kernel and userland. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board/avnet: swap ramdisk and DT load addresses in U-Boot environmentThomas Petazzoni2016-07-242-7/+7
| | | | | | | | | | | | As reported in bug #9091, the U-Boot environment we provide for the Microzed and Zedboard platforms loads the ramdisk at 0x2000000 and the DT at 0x3000000. This means that a large enough ramdisk overwrites the DT. It makes more sense to load the DT at 0x2000000 and the ramdisk at 0x3000000. Reported-by: Michael Monaghan <michaellmonaghan@gmail.com> Tested-by: Michael Monaghan <michaellmonaghan@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* odroid-mali: new packageDagg Stompler2016-07-244-0/+64
| | | | | | | | | | | Signed-off-by: Dagg Stompler <daggs@gmx.com> [Thomas: - restrict to EABIhf for ARM, since the libraries are pre-built for this ABI - add comment about the glibc dependency - indicate odroid-scripts is a runtime dependency - remove fbset dependency] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: select odroid-scriptsDagg Stompler2016-07-241-0/+1
| | | | | Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* odroid-scripts: new packageDagg Stompler2016-07-245-0/+66
| | | | | Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* runc: pass -extldflags '-static' on when BR2_STATIC_LIBS=yThomas Petazzoni2016-07-241-2/+5
| | | | | | | | | There is no reason to link Go binaries statically, unless when BR2_STATIC_LIBS=y. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flannel: pass -extldflags '-static' on when BR2_STATIC_LIBS=yThomas Petazzoni2016-07-241-1/+4
| | | | | | | | | There is no reason to link Go binaries statically, unless when BR2_STATIC_LIBS=y. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docker-containerd: pass -extldflags '-static' on when BR2_STATIC_LIBS=yThomas Petazzoni2016-07-241-2/+5
| | | | | | | | | There is no reason to link Go binaries statically, unless when BR2_STATIC_LIBS=y. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ffmpeg: add optional dependency to libebur128Bernd Kuhls2016-07-241-0/+4
| | | | | | | | ebur128 support depends on gpl support in ffmpeg: http://git.videolan.org/?p=ffmpeg.git;a=blob;f=configure;h=ec4ff083dd373bce34869b67189905e2822b848b;hb=refs/heads/release/2.8#l2747 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libebur128: new packageBernd Kuhls2016-07-243-0/+29
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/gdb: fix gnulib issue with musl and uClibc toolchainsRomain Naour2016-07-241-1/+9
| | | | | | | | | | | | | | | | Starting with gdb 7.11, the bundled gnulib want to use rpl_gettimeofday (gettimeofday replacement) due bad guessing when cross-compiling with musl and uClibc toolchains. Instead of patching gnulib configure script to fix the test, use gl_cv_func_gettimeofday_clobber=no to not use rpl_gettimeofday. Thanks to Thomas Petazzoni to suggest this patch. Reported upstream: https://sourceware.org/bugzilla/show_bug.cgi?id=19798 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/go: needs PIE supportRomain Naour2016-07-241-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When built statically, runc try to link against Scrt1.o which is not provided by uClibc ARM toolchain for static build only. [...]arm-buildroot-linux-uclibcgnueabi/bin/ld: cannot find Scrt1.o: No such file or directory collect2: error: ld returned 1 exit status On ARM, Go forces the use of -pie, for some reason: pie := (goarch == "arm" && goos == "linux") || goos == "android" if pie { // we need to use -pie for Linux/ARM to get accurate imported sym cgoLDFLAGS = append(cgoLDFLAGS, "-pie") } For this reason, add a dependency on BR2_TOOLCHAIN_SUPPORTS_PIE for ARM CPUs to disable Go for such toolchains. While at it, rewrap Go dependencies. [1] http://lists.busybox.net/pipermail/buildroot/2016-July/167206.html Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Christian Stewart <christian@paral.in> Tested-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain: add hidden symbol for PIE supportWaldemar Brodkorb2016-07-2413-21/+18
| | | | | | | | | | | | | uClibc-ng does not support PIE for some architectures as arc and m68k. It isn't implemented in the static linking case, too. With musl toolchains you might have static PIE support with little patching of gcc. Static linking for GNU libc isn't enabled in buildroot. Fixup any package using special treatment of PIE. (grep -ir pie package/*/*.mk) Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> [Thomas: use positive logic.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* omniorb: add patch to fix musl buildThomas Petazzoni2016-07-241-0/+61
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/0e2025cbc1c54f0c177ce3f27020d454aa03645a/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ti-sgx-demos: new packageLothar Felten2016-07-244-0/+30
| | | | | | | | | | This package adds the SGX demos from Imagination Technologies, they are available as binaries only. This package contains binaries compiled for the SGX graphics accelerator used in the following Texas Instruments SoCs: AM335x, AM437x, AM4430, AM5430. Signed-off-by: Lothar Felten <lothar.felten@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/gdb: gdbserver: add missing headerRomain Naour2016-07-241-0/+30
| | | | | | | | | | Backport upstream patch for musl toolchains Fixes: http://autobuild.buildroot.net/results/564/56443134388ee6c4a13add10cc53eff6f47f244e Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: add Arcturus uCP1020 BSP supportOleksandr G Zhadan2016-07-245-0/+863
| | | | | | | | | | | The uCP1020 product family (ucp1020) is an Arcturus Networks Inc. System on Modules product featuring a Freescale P1020 CPU, optionally populated with 1 or 2 Gig-Ethernet PHYs, DDR3, NOR Flash, eMMC NAND Flash and/or SPI Flash. Signed-off-by: Oleksandr G Zhadan <oleks@arcturusnetworks.com> Signed-off-by: Michael Durrant <mdurrant@arcturusnetworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: update boot.iniDagg Stompler2016-07-241-2/+30
| | | | | | | | | | | - fix disablehpd bug (thanks to Thomas for spotting it.) - change default HDMI mode to 1080p60hz. - add support for HDMI HotPlug Detection control. - add support for mason timer. - add support for headless boot Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/docker-containerd: bump to latestChristian Stewart2016-07-242-2/+2
| | | | | | | | Bump the pinned docker-containerd version to the latest in advance of the introduction of docker-engine v1.12.0-rc4. Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* igd2-for-linux: new packageFabrice Fontaine2016-07-246-0/+165
| | | | | | | | | | | | | | | | | | | This is The Linux UPnP Internet Gateway Device 2. It is modified from the original Linux UPnP Internet Gateway Device [http://linux-igd.sourceforge.net/] according to UPnP InternetGatewayDevice:2 specifications. It implements the UPnP Internet Gateway Device version 2 specification (IGDv2) and allows UPnP aware clients, such as MSN Messenger, Azureus or Miranda to work properly from behind a NAT firewall. Please edit /etc/upnpd.conf before using upnpd! https://github.com/ffontaine/igd2-for-linux Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/terminology: new packageRomain Naour2016-07-244-0/+28
| | | | | | | | | Signed-off-by: Romain Naour <romain.naour@gmail.com> [Thomas: - rewrap Config.in help text - fix license, it's BSD-2c, not just "BSD" - add dependency on host-pkgconf] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sdl2_ttf: x-includes and x-libraries must be set for cross-compilingRomain Naour2016-07-241-0/+13
| | | | | | | | | | | | | | | | | | If those flags are not explicitly passed, the sdl2_ttf configure script will include -I/usr/include and -L/usr/lib in the compile flags, which are obviously unsafe for cross-compilation. "checking for X... libraries /usr/lib, headers /usr/include" Fixes: http://autobuild.buildroot.net/results/f968fb31e9882cc856296a7c729d93e345e9e861 Signed-off-by: Romain Naour <romain.naour@gmail.com> [Thomas: - don't pass an argument to --with-x - use --without-x instead of --with-x=no] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/rtl8821au: switch to abperiasamy forkChristian Stewart2016-07-242-12/+5
| | | | | | | | | | | | | | | | | Switching to the rtl8821au fork at github.com/abperiasamy/rtl8812AU_8821AU_linux. - The current fork we are using is maintained by 1 person. - The current fork does not work, and there are no plans to fix this: - https://github.com/ulli-kroll/rtl8821au/issues/5 - https://github.com/ulli-kroll/rtl8821au/issues/6 - In practice, the current fork has numerous instability issues. - Our lab switched to the abperiasamy fork a couple months ago and have been very happy with it. - The contributor list for the abperiasamy fork contains 21 well-known individuals in the community. - The raspberry pi community recommends the abperiasamy fork and uses it extensively. - Firmware blobs are not necessary with the new fork. Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kodi: Support libcurl version 7.5.0Bernd Kuhls2016-07-241-0/+50
| | | | | | | | Fixes http://autobuild.buildroot.net/results/bc3/bc392094b5b05f5f4b4ede5ab3a54200d6d33be5/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: bump kernel to rev 1cb48cebb9d525e524de0ede46710bb29f54d4a6Dagg Stompler2016-07-231-1/+1
| | | | | Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: bump uboot to rev 1ec799cec97574a9838bc25b286484e579a41652Dagg Stompler2016-07-231-1/+1
| | | | | Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fio: add optional libnuma (numactl) dependencyGustavo Zacarias2016-07-231-0/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fio: add optional zlib dependencyGustavo Zacarias2016-07-231-0/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fio: bump to version 2.13Gustavo Zacarias2016-07-232-127/+1
| | | | | | | And drop upstream patch. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* zeromq: disable documentationGustavo Zacarias2016-07-231-0/+1
| | | | | | | | | If asciidoc and xmlto are around it will automatically enable the documentation build which is pointless. Build time on i5-3330 with docs = 37s, without docs 25s. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* zeromq: bump to version 4.1.5Gustavo Zacarias2016-07-233-35/+5
| | | | | | | | | Switch to github download URL since upstream switched. Drop upstream patch. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> [Thomas: remove duplicate _SITE variable.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* stunnel: security bump to version 5.35Gustavo Zacarias2016-07-232-3/+3
| | | | | | | | | Fixes: TLS session caching memory leak Malfunctioning "verify = 4" Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libunwind: needs ARM instruction supportGustavo Zacarias2016-07-231-3/+6
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/4cf/4cf517cd81d3aa5da26848edaba5df0bfbab2c77/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libdrm: bump version to 2.4.70Bernd Kuhls2016-07-232-3/+3
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* tunctl: new packageSergio Prado2016-07-234-0/+31
| | | | | | | | Tunctl is a tool for controlling the TUN/TAP driver in Linux. Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> [Thomas: use $(TARGET_CONFIGURE_OPTS).] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lighttpd: add clock_gettime patchGustavo Zacarias2016-07-232-0/+157
| | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/590/5901153a345c69d0a041309cfb79329bb42ff98d/ Patch status: upstream. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lighttpd: webdav locks require libuuidGustavo Zacarias2016-07-231-1/+7
| | | | | | | | | Since 1.4.40 webdav locks require libuuid from util-linux, so make it an automatic dependency. Fixes: http://autobuild.buildroot.net/results/b14/b14484300b4acfcaa18593b097167cef14330898/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* connman: bump to version 1.33Gustavo Zacarias2016-07-232-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pcmanfm: add optional support for gtk3Gustavo Zacarias2016-07-232-2/+10
| | | | | | | | | pcmanfm can now use gtk3+ so use that over gtk2+ if it's available. Since it's only x11-safe for the moment the comment and deps other than gtk stay the same. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libfm: add optional support for gtk3Gustavo Zacarias2016-07-232-2/+10
| | | | | | | | | pcmanfm can now use gtk3+ so use that over gtk2+ if it's available. Since it's only x11-safe for the moment the comment and deps other than gtk stay the same. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pcmanfm: bump to version 1.2.4Gustavo Zacarias2016-07-232-3/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libfm: bump to version 1.2.4Gustavo Zacarias2016-07-232-3/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* menu-cache: bump to version 1.0.1Gustavo Zacarias2016-07-232-3/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libfm-extra: bump to version 1.2.4Gustavo Zacarias2016-07-233-4/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libarchive: fix build error when linking with lzmaSergio Prado2016-07-231-1/+2
| | | | | | | | | | | | | | | | | | Build fails when linking with liblzma compiled without threads support. ./.libs/libarchive.so: undefined reference to `lzma_cputhreads' ./.libs/libarchive.so: undefined reference to `lzma_stream_encoder_mt' So let's enable LZMA only when toolchain has threads support. Fixes: http://autobuild.buildroot.org/results/2cb7f8a056982d0b894d0e2531ef357e74c8b796 http://autobuild.buildroot.org/results/d12954fbd460d396f255158fa127f39ff9d2be8d http://autobuild.buildroot.org/results/abe10c70f38423a212ab27d7d27e22174eaa5aab Many more... Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ser2net: add sysv init scriptVicente Olivert Riera2016-07-232-0/+48
| | | | | | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> [Thomas: - remove check for the ser2net binary - add check for the configuration file - use 'printf' instead of 'echo -n' - fix indentation where needed] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/enlightenment: enable systemd supportRomain Naour2016-07-231-2/+8
| | | | | Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/efl: enable systemd supportRomain Naour2016-07-231-2/+7
| | | | | | | | | | | | | | systemd it one of the "highly recommended" dependecies according to the README [1] but disabling it doesn't need the --enable-i-really-know-what-i-am-doing... option. That's why BR2_PACKAGE_EFL_HAS_RECOMMENDED_CONFIG is not disabled when systemd is not selected. [1] https://git.enlightenment.org/core/efl.git/tree/README?h=efl-1.17#n489 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* htop: bump to version 2.0.2Gustavo Zacarias2016-07-233-43/+5
| | | | | | | And drop upstream patch. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* harfbuzz: bump to version 1.3.0Gustavo Zacarias2016-07-232-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud