Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Buildroot 2013.11 #70

Open
wants to merge 6,872 commits into
base: master
Choose a base branch
from
Open

Buildroot 2013.11 #70

wants to merge 6,872 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Nov 4, 2013

  1. libnl: simplify makefile by using --{enable, disable}-cli

    The libnl configure script has a --{enable,disable}-cli options that
    allows to enable or disable the compilation of the libnl tools. Use
    this option instead of compiling everything and then removing the
    installed programs.
    
    Note that we also get rid of the uninstall command, which is planned
    to be globally removed in Buildroot.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Acked-by: "Yann E. MORIN" <[email protected]>
    Reviewed-by: Samuel Martin <[email protected]>
    tpetazzoni authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    250af24 View commit details
    Browse the repository at this point in the history
  2. libnl: do not allow to build tools on static lib configs

    Building the libnl tools requires the <dlfcn.h> header, which is not
    compatible with static only builds. Therefore, this commit makes the
    libnl tools option depend on !BR2_PREFER_STATIC_LIB.
    
    Fixes:
    
       http://autobuild.buildroot.org/results/573/57340b9bd2db3a523836e02e01cba6f7c17c8ca7/build-end.log
    
    [Peter: fix tools comment dependency]
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Acked-by: "Yann E. MORIN" <[email protected]>
    Acked-by: Samuel Martin <[email protected]>
    tpetazzoni authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    337a59d View commit details
    Browse the repository at this point in the history
  3. dhcpcd: needs MMU

    dhcpcd fails to build on non-MMU platforms, even with the
    --disable-fork option:
    
      bind.o: In function `_daemonise':
      bind.c:(.text+0x62): undefined reference to `_fork'
      collect2: ld returned 1 exit status
    
    Therefore, we make dhcpcd depend on MMU support, and remove the
    non-MMU condition in the .mk file. More recent versions of dhcpcd do
    support non-MMU properly, but this commit intends to be only a fix.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Acked-by: "Yann E. MORIN" <[email protected]>
    Acked-by: Samuel Martin <[email protected]>
    tpetazzoni authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    5522747 View commit details
    Browse the repository at this point in the history
  4. libvpx: needs thread support

    tpetazzoni authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    5702d2f View commit details
    Browse the repository at this point in the history
  5. netperf: enable demo mode

    Enable demo mode for netperf to activates a global "-D" <interval> option.
    This option will display interim results at least every time interval.
    
    Signed-off-by: Kelvin Cheung <[email protected]>
    Acked-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    kelvincheung authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    c4ea640 View commit details
    Browse the repository at this point in the history
  6. sqlite: Disable dynamic extention if static library is seleted

    Signed-off-by: Sonic Zhang <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    sonicz authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    bd56cd6 View commit details
    Browse the repository at this point in the history
  7. omniorb: fix autobuilder failure

    http://autobuild.buildroot.net/results/e3244abc550a95eb69e63b8db203f39b27f3288e/
    
    Turns out omniorb isn't building because of an old cross compile patch.
    The last patchset was missing the delete.
    
    Signed-off-by: Matt Weber <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Matt Weber authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    f870e91 View commit details
    Browse the repository at this point in the history
  8. qt: don't allow building WebKit on some architectures

    WebKit has some architecture specific support, and therefore is not
    necessarily available for all architectures. Make sure the Qt WebKit
    option cannot be selected on those architectures that are not
    supported.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 4, 2013
    Configuration menu
    Copy the full SHA
    01f99d2 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2013

  1. linux-headers: bump 3. {2, 4, 10, 11}.x versions and add 3.12.x

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    a3c27d2 View commit details
    Browse the repository at this point in the history
  2. linux: bump version to 3.12

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    602bbb7 View commit details
    Browse the repository at this point in the history
  3. libsigsegv: fix avr32 build

    The libsigsegv configure step fails to correctly figure out the direction of
    stack growth for avr32. This leads to a zero STACK_DIRECTION definition, and
    build failures such as the following.
    
      http://autobuild.buildroot.net/results/a3fe938f9376533b4777d79deb7a2ee83ed5ce33
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    c6e6959 View commit details
    Browse the repository at this point in the history
  4. dropwatch: fix avr32 build failure

    On avr32, dropwatch needs libiberty to avoid build failures such as
    
      http://autobuild.buildroot.net/results/cd5/cd5e22fb5c9b0fc5d396bc85a5e253a1a65054da/
    
    Also test built on ARM.
    
    [Peter: pass TARGET_LDFLAGS as well, append -lintl in gettext case]
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    da1ca5c View commit details
    Browse the repository at this point in the history
  5. collectd: add option for sensors plugin

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    7c611d5 View commit details
    Browse the repository at this point in the history
  6. configs/qemu: bump relevant config versions

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    1c7b9de View commit details
    Browse the repository at this point in the history
  7. configs/imx233_olinuxino: bump to the latest versions

    Also tweak the kernel and buildroot config for basic WiFi support.
    And fetch the ASoC patches for builtin audio.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    27451ee View commit details
    Browse the repository at this point in the history
  8. configs/mpc8315erdb: bump to the latest and greatest versions

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    ad142f3 View commit details
    Browse the repository at this point in the history
  9. configs/p1010rdb: bump to the latest and greatest versions

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    2fb4366 View commit details
    Browse the repository at this point in the history
  10. package/rpi-firmware: bump

    Further fixes for de-interlacing.
    
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    c16b7bf View commit details
    Browse the repository at this point in the history
  11. package/rpi-userland: bump

    Fixes for camera features (exposure, capture loop, shutter speed),
    h264 encoding headers, EXIF thumbnails.
    
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    b6cc2f4 View commit details
    Browse the repository at this point in the history
  12. package/tzdata: bump

    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    5238d0b View commit details
    Browse the repository at this point in the history
  13. package/zic: bump

    This bump to allign with the tzdata bump in previous commit.
    
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    615881f View commit details
    Browse the repository at this point in the history
  14. dependencies.sh: update i386 package names

    This is the list needed to run the Linaro pre-built toolchain
    on a 64-bit Ubuntu 13.10 system.
    
    Signed-off-by: Frank Hunleth <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    fhunleth authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    f408f39 View commit details
    Browse the repository at this point in the history
  15. sqlcipher: fix download url

    Signed-off-by: Romain Naour <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    RomainNaour authored and jacmet committed Nov 5, 2013
    Configuration menu
    Copy the full SHA
    f72755c View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2013

  1. nettle: disable openssl support for (unused) examples

    Works around a linker issue when statically linking:
    
    http://autobuild.buildroot.net/results/e3f43fed8f57c52e07e20055f11680f8200fb65e/
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    58417d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2054018 View commit details
    Browse the repository at this point in the history
  3. curl: fix homepage

    cURL's homepage is curl.haxx.se and not curl.haxx.nu
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    62ebea1 View commit details
    Browse the repository at this point in the history
  4. busybox: minor fixes to S01logging bootscript

    * The PID file is not created unless the '-m' option is passed to
      start-stop-daemon.
    
    * Remove the mark '-m 0' option as it's not supported by busybox's
      syslogd.
    
    * Syslogd and Klogd forks to background by default giving as a result
      that the pid stored in the PID file is not correct. Let the
      background job be done by 'start-stop-daemon' by passing '-n'
      (foreground) to the daemons and '-b' to start-stop-daemon. This
      way the pid stored in the PID files is correct.
    
    Signed-off-by: Javier Viguera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    jviguera authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    fc6b5e4 View commit details
    Browse the repository at this point in the history
  5. polarssl: bump to version 1.2.10

    Fixes a memory leak in RSA blinding.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    6f05d5a View commit details
    Browse the repository at this point in the history
  6. aircrack-ng: add security patch for CVE-2010-1159

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    ac14752 View commit details
    Browse the repository at this point in the history
  7. avr32: pass target arch to gcc

    As suggested by Alexander Lukichev and Thomas Petazzoni on the mailing list,
    only one of the two avr32 microarchitectures is relevant for Buildroot:
    avr32 Linux implies the avr32b microarchitecure, as used in the ap7000.
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    d7ec946 View commit details
    Browse the repository at this point in the history
  8. connman: disable on avr32

    The inotify_init1 syscall is not available on avr32. Fixes build failures
    such as the following.
    
      http://autobuild.buildroot.net/results/0d8/0d8e7bd8bd3f227fabfb0d5feb59a5d316026d3f
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    de0b7e9 View commit details
    Browse the repository at this point in the history
  9. libevas: disable on avr32

    Neither epoll_create1 nor inotify_init1 is available on avr32. Fixes build
    failures such as the following.
    
      http://autobuild.buildroot.net/results/4d435a5fc608936362d605aca696c01023be9723
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    fdecbd5 View commit details
    Browse the repository at this point in the history
  10. package/nut: new package

    'nut' are the Network UPS Tools.
    
    [Note: original patch from Dallas, but completely revamped
     by Yann, so nothing remains from the original patch, but two
     variable names.]
    
    Signed-off-by: Dallas Clement <[email protected]>
    [[email protected]: refresh patch, use latest version,
        add license, fix commit message, add dependencies, fix
        runtime path, fix libs-config, move to 'system utils']
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    856294d View commit details
    Browse the repository at this point in the history
  11. rpi: improve documentation

    Signed-off-by: Mathieu Benoit <[email protected]>
    [[email protected]: further improvements for readability and
        completeness]
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    mathieu benoit authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    7f02c73 View commit details
    Browse the repository at this point in the history
  12. Makefile: fix out-of-tree builds with multiple targets with 'all'

    For out-of-tree builds, this use-case fails to build:
        $ make clean all
    
    This is because 'all' is filtered-out in the Makefile wrapper, since
    the wrapper itself has a 'all' target.
    
    The 'all' target is just the usual naming for the default target in a
    Makefile. In fact, the first target is the default one, so we can name
    it whatever we want.
    
    Rename the Makefile wrapper 'all' target to avoid name-clashing.
    
    Fixes #6644.
    
    Reported-by: Ryan Barnett <[email protected]>
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Cc: Ryan Barnett <[email protected]>
    Cc: Thomas Petazzoni <[email protected]>
    Tested-by: Ryan Barnett <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 6, 2013
    Configuration menu
    Copy the full SHA
    971faf8 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2013

  1. openpgm: disable on AVR32

    openpgm doesn't build correctly on AVR32 using
    gcc-4.2.2-avr32-2.1.5 toolchain: it is configured to call
    intrinsic atomic functions not provided by the toolchain,
    so they are propagated as unresolved external symbols in the
    built openpgm libraries. This breaks programs that try to link
    openpgm, because they do not know where to get those either. For
    instance, it breaks building zeromq tests when PGM support is
    selected.
    
    This commit disables openpgm on AVR32 due to apparent absence of
    interest in this package on that architecture and it breaking too
    many test builds.
    
    Fixes http://autobuild.buildroot.net/results/5a3261109ea63ba17375003eabd8b5d88757865f/
    (at least)
    
    Signed-off-by: Alexander Lukichev <[email protected]>
    Reviewed-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    alukichev authored and jacmet committed Nov 7, 2013
    Configuration menu
    Copy the full SHA
    00a9540 View commit details
    Browse the repository at this point in the history
  2. uclibc: reinstate support for version 0.9.31

    This patch reinstates support for uClibc version 0.9.31, which was removed
    from Buildroot in commit 8abb5b3
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 7, 2013
    Configuration menu
    Copy the full SHA
    1fc19cd View commit details
    Browse the repository at this point in the history
  3. trivial: pcmanfm: fix typo in config help

    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 7, 2013
    Configuration menu
    Copy the full SHA
    c74f177 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2013

  1. mplayer: disable for anything lower than ARMv5

    Disable mplayer for anything lower than a v5 ARM core.
    The support is broken and it's kind of pointless anyway. Fixes:
    http://autobuild.buildroot.net/results/8f946e28b11b2ab1ba0d9688286c665488de0486/
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    af616db View commit details
    Browse the repository at this point in the history
  2. dhcpcd: bump to version 6.1.0

    Now has proper support for nommu and non-IPv6.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    f8c07f2 View commit details
    Browse the repository at this point in the history
  3. openpgm: disable for AVR32, not its Buildroot-built toolchain

    OpenPGM builds incorrectly on AVR32 with gcc-4.2.2-avr32-2.1.5.
    Since it is presumed to be the only GCC version used by Buildroot
    for AVR32, this patch disables openpgm for all cases when AVR32
    is selected as the target architecture, including when a toolchain
    is downloaded or preinstalled (this is what Buildroot autobuilders
    do).
    
    Signed-off-by: Alexander Lukichev <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    alukichev authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    9589eff View commit details
    Browse the repository at this point in the history
  4. gutenprint: fix download url

    Signed-off-by: Arnaud Aujon <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Arnaud Aujon authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    058f37f View commit details
    Browse the repository at this point in the history
  5. avr32: fix uclibc build using recent kernel headers

    Using kernel headers newer than 3.6.x, uclibc 0.9.31.1 fails to build:
    
      In file included from output/host/usr/avr32-buildroot-linux-uclibc/sysroot/usr/include/linux/rtnetlink.h:6,
                     from libc/inet/netlinkaccess.h:34,
                     from libc/inet/if_index.c:36:
      output/host/usr/avr32-buildroot-linux-uclibc/sysroot/usr/include/linux/if_link.h:314: error: expected specifier-qualifier-list before '__be16'
      make[1]: *** [libc/inet/if_index.os] Error 1
      make[1]: Leaving directory `output/build/uclibc-0.9.31.1'
      make: *** [output/build/uclibc-0.9.31.1/.stamp_built] Error 2
    
    This patch adjusts the system type definitions in the netlinkaccess.h
    header, updating the types to match those used in uClibc 0.9.33.2.
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    cad987f View commit details
    Browse the repository at this point in the history
  6. uclibc-snapshot: enable option UCLIBC_HAS_OBSTACK

    Prior to uClibc commit f143f920694c, uClibc used to always include the
    gnu obstack extension, which is used and required by many tools, such as
    binutils.
    
    Because of the change mentioned above, obstack is now optional, and got
    disabled per default, so enable it in the uClibc snapshot configuration file.
    
    Signed-off-by: Chris Zankel <[email protected]>
    Acked-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    czankel authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    38dbd33 View commit details
    Browse the repository at this point in the history
  7. qt: remove the BR2_PACKAGE_QT_JAVASCRIPTCORE option

    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. This commit removes this option and there is no
    replacement: Qt will enable JIT at compile time when possible.
    
    Fixes:
    
      http://autobuild.buildroot.org/results/aae/aaeb82753b7654eeca679ded5d0211ceebda3ea2/build-end.log
      http://autobuild.buildroot.org/results/367/3670e4f03ff0ce114c90bd7139243d82c427b52a/build-end.log
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    1f9c04f View commit details
    Browse the repository at this point in the history
  8. Config.in.legacy: select BR2_LEGACY for module-init-tools legacy option

    Commit 94c7208 ("module-init-tools: remove package") removed the
    module-init-tools package and therefore added the corresponding config
    option in Config.in.legacy. However, the commit forgot to add the
    "select BR2_LEGACY" that ensures the build cannot proceed until the
    user has acknowledged the change (i.e kmod replacing
    module-init-tools).
    
    This commit adds this missing "select BR2_LEGACY".
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Acked-by: Thomas De Schampheleire <[email protected]>
    Acked-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    0f401f9 View commit details
    Browse the repository at this point in the history
  9. libqrencode: select libpng only when tools are selected

    As stated on the libqrencode web site, PNG (or SDL) is only
    needed for the test and utility programs; the library itself
    has no dependencies.
    
    While we are here, remove spaces in the ifeq clause, to match
    the examples in the buildroot manual.
    
    Signed-off-by: Danomi Manchego <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    danomimanchego123 authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    69635db View commit details
    Browse the repository at this point in the history
  10. openssh: bump version

    From the announcement:
    
    This release fixes a security bug:
    
     * sshd(8): fix a memory corruption problem triggered during rekeying
       when an AES-GCM cipher is selected. Full details of the vulnerability
       are available at: http://www.openssh.com/txt/gcmrekey.adv
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    5a0e125 View commit details
    Browse the repository at this point in the history
  11. configs: rename rpi_defconfig for consistency

    We name all of our boards and defconfig files based on the boards
    fullname, not a nickname or a shortname.
    
    'rpi' is short for Raspberry Pi, so name all our Raspberry Pi ressource
    with 'raspberrypi' instead of 'rpi'.
    
    This should also help Buildroot-newcomers to recognise Raspberry Pi
    related files (defconfig and board doc).
    
    Signed-off-by: Mathieu Benoit <[email protected]>
    [[email protected]: reverse the rename]
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Cc: Ryan Barnett <[email protected]>
    Cc: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    mathieu benoit authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    094d8ec View commit details
    Browse the repository at this point in the history
  12. freetype: add libpng to freetype-config and freetype2.pc

    Add libpng libraries to freetype-config and freetype2.pc when they're
    needed to avoid build breakage for other packages.
    
    Patch in a different form is already upstream.
    
    Fixing configure & friends is not so good since autoreconf busts things
    up because of the odd way things are done (upstream fixed too it seems).
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    f7313ca View commit details
    Browse the repository at this point in the history
  13. uclibc: fix MIPS variables

    The BR2_UCLIBC_MIPS_ISA hidden Config.in variable defines which uClibc
    config option should be enabled for a given MIPS architecture
    variant. Therefore, using lower case names doesn't work: they should
    be upper case, to match uClibc config option names. This commit makes
    sure the mips32, mips32r2 and mips64 builds select the appropriate
    uClibc configuration.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Cc: Markos Chandras <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    ab0ff59 View commit details
    Browse the repository at this point in the history
  14. libmicrohttpd: disable epoll support on avr32

    As it isn't available.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    eb17c71 View commit details
    Browse the repository at this point in the history
  15. zmqpp: fix build failure

    The zmqpp client needs a little help to link against libpthread. Fix build
    failures such as the following.
    
      http://autobuild.buildroot.net/results/d0a/d0a740d4d5414844ca7f2de266fc92223d3d20c8
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    fa510de View commit details
    Browse the repository at this point in the history
  16. Generation of locales: made call to tr more robust and added LOWERCAS…

    …E macro
    
    When calling 'tr' without quoting braces, bash can make really weird things
    if there are existing 'single-letter-named' directories
    eg:
    thierry@thierry-desktop:~$ echo AAA | tr [A-Z] [a-z]
    aaa
    thierry@thierry-desktop:~$ mkdir m
    thierry@thierry-desktop:~$ echo AAA | tr [A-Z] [a-z]
    AAA
    
    The (quick) analysis is that the callee (tr) argvs then
    contain 'm' thus the translation does not work
    
    Using quotes works around it:
    thierry@thierry-desktop:~$ echo AAA | tr '[A-Z]' '[a-z]'
    aaa
    
    Signed-off-by: Thierry Bultel <[email protected]>
    Reviewed-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Thierry Bultel authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    6fb546c View commit details
    Browse the repository at this point in the history
  17. xlib_libpthread-stubs: needs -pthread when linking statically

    Fixes e.g. http://autobuild.buildroot.net/results/1eaa694263b74313b0c90c510abcb11d490a3773/
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    79afe8e View commit details
    Browse the repository at this point in the history
  18. xorg: needs thread support

    libpthread-stubs, libX11, and a few more xorg packages use threads. Since
    almost all xorg packages depend on libX11 directory or indirectly, and
    since the remaining ones are pretty useless on their own, just require
    threads for xorg as a whole.
    
    The thread dependency is kept in libpthread-stubs, because that package
    will move out of the x11r7 directory later (pending patch by Spenser
    Gilliland), so the dependency on threads will be required then.
    
    Fixes:
      http://autobuild.buildroot.org/results/609/6099baac4bb469ae18aab6512233db25183eaabd/
    
    [Arnout: disable all of xorg, correct comment]
    Signed-off-by: Jerzy Grzegorek <[email protected]>
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Jerzy Grzegorek authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    6c10f4c View commit details
    Browse the repository at this point in the history
  19. qt5base: fix rpi/egl support (vc_dispmanx_element_change_attributes p…

    …roto mismatch)
    
    Patch from upstream already included in the next 5.2 release
    
    Fixes:
    	http://autobuild.buildroot.net/results/347/347577bf1dee0fec3302a45f278eb253118a5b6f/build-end.log
    
    Signed-off-by: Samuel Martin <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tSed authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    d90d48e View commit details
    Browse the repository at this point in the history
  20. qt5webkit: fix build with bison-3.0

    - Add host-bison dependency
    - Fetch patch from upstream fixing build with bison-3.0
      (already included in the next 5.2 release)
    
    Fixes:
    	http://autobuild.buildroot.net/results/283/2831c0d859b035f7d2786f51885833a711b46b80/build-end.log
    
    Signed-off-by: Samuel Martin <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tSed authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    ee8c811 View commit details
    Browse the repository at this point in the history
  21. manual: clarify that Config.in comments should have correct dependencies

    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: "Samuel Martin" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    3c33c11 View commit details
    Browse the repository at this point in the history
  22. Config.in files: add missing dependencies to toolchain option comments

    When a package A depends on config option B and toolchain option C, then
    the comment that is given when C is not fulfilled should also depend on B.
    For example:
    
    config BR2_PACKAGE_A
    	depends on BR2_B
    	depends on BR2_LARGEFILE
    	depends on BR2_WCHAR
    
    comment "A needs a toolchain w/ largefile, wchar"
    	depends on !BR2_LARGEFILE || !BR2_WCHAR
    
    This comment should actually be:
    
    comment "A needs a toolchain w/ largefile, wchar"
    	depends on BR2_B
    	depends on !BR2_LARGEFILE || !BR2_WCHAR
    
    or if possible (typically when B is a package config option declared in that
    same Config.in file):
    
    if BR2_B
    
    comment "A needs a toolchain w/ largefile, wchar"
    	depends on !BR2_LARGEFILE || !BR2_WCHAR
    
    [other config options depending on B]
    
    endif
    
    Otherwise, the comment would be visible even though the other dependencies
    are not met.
    
    This patch adds such missing dependencies, and changes existing such
    dependencies from
      depends on BR2_BASE_DEP && !BR2_TOOLCHAIN_USES_GLIBC
    to
      depends on BR2_BASE_DEP
      depends on !BR2_TOOLCHAIN_USES_GLIBC
    so that (positive) base dependencies are separate from the (negative)
    toolchain dependencies. This strategy makes it easier to write such comments
    (because one can simply copy the base dependency from the actual package
    config option), but also avoids complex and long boolean expressions.
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
     (untested)
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    be08420 View commit details
    Browse the repository at this point in the history
  23. Avoid toolchain download when it is preinstalled

    For configurations using a toolchain that is preinstalled on
    the host, <pkg>_SITE and <pkg>_SOURCE variables must be kept
    empty to avoid downloading any toolchain package.
    The actual implementation has been proposed by Thomas Petazzoni.
    
    Signed-off-by: GONZALEZ Laurent <[email protected]>
    Reviewed-by: Thomas Petazzoni <[email protected]>
    Tested-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Laurent GONZALEZ authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    2873eae View commit details
    Browse the repository at this point in the history
  24. infra: Add POST_RSYNC_HOOKS support

    One of the use cases is for the 'local packages' to restore
    the SCM info.  Some packages use this information to generate
    version info during build time.  In this case, the local package
    can have this hook to restore it by symbolic link for example.
    
    [Thomas: update commit title]
    Signed-off-by: Tzu-Jung Lee <[email protected]>
    Acked-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: Samuel Martin <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    e8ab39a View commit details
    Browse the repository at this point in the history
  25. infra: centralize rsync exclude list for VCS files

    Buildroot has three places where rsync is used:
    1. to copy the target skeleton
    2. to copy the rootfs overlay(s)
    3. to copy overridden package sources
    
    In all of these cases, we want to exclude version control files by default.
    Place 1 and 2 used an identical set of explicit --exclude options, while
    place 3 used the option --cvs-exclude. This last option, however, not only
    excludes version control files, but also binary files (.o, .so) and any file
    or directory named 'core' (a problem for the linux kernel that has several
    directories with this name). Moreover, the exact list of excluded files when
    using --cvs-exclude depends on the version of rsync.
    
    This patch creates one global variable RSYNC_VCS_EXCLUSIONS that can be used
    by the various rsync commands. It excludes the version control files of
    svn, git, hg, cvs and bzr.
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: Samuel Martin <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    7ad2865 View commit details
    Browse the repository at this point in the history
  26. manual: split info on hooks to a separate section/file

    Split out the information on hooks to a separate section (and source file).
    Not only because the hooks are useful for all infrastructures (and thus
    don't really fit specifically in the generic infrastructure section), but
    also for clarity when the info on hooks will be expanded in later patches.
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: Samuel Martin <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    7ae2b8e View commit details
    Browse the repository at this point in the history
  27. manual: add some info on the POST_RSYNC hook

    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: "Samuel Martin" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    fcdbeba View commit details
    Browse the repository at this point in the history
  28. infra: remove incorrect default for FOO_DIR_PREFIX

    Variable FOO_DIR_PREFIX is populated from pkgparentdir by the various
    package infrastructures. However, if that would be empty (which in fact is
    the case for the linux package), FOO_DIR_PREFIX would be set to
    '$(TOP_SRCDIR)/package'.
    Not only does this make no sense (LINUX_DIR_PREFIX becomes /package/linux,
    and for all other packages pkgparentdir is not-empty anyway), but it is also
    using a non-existing variable TOP_SRCDIR.
    This patch therefore removes the incorrect default.
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    9e7e9b2 View commit details
    Browse the repository at this point in the history
  29. infra: clean up 'Patching' message

    The 'Patching' message in the generic infrastructure prints not only the
    package name, but also a reference to the assumed package directory, based
    on FOO_DIR_PREFIX/FOO_RAWNAME. This doesn't really add value, as the name
    of the package is already apparent from the message and its location should
    be obvious. Hence, this patch simply reduces the print to "Patching".
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    b40341e View commit details
    Browse the repository at this point in the history
  30. toolchain-external: fix the SYSROOT_DIR mangling logic

    In a1d94aa ('toolchain-external: add support for musl C
    library'), we made the following change to the SYSROOT_DIR mangling
    logic:
    
    -       SYSROOT_DIR=`echo $${LIBC_A_LOCATION} | sed -r -e 's:usr/lib(32|64)?/(.*/)?libc\.a::'` ; \
    +       SYSROOT_DIR=`echo $${LIBC_A_LOCATION} | sed -r -e 's:(usr/)?lib(32|64)?/(.*/)?libc\.a::'` ; \
    
    This was needed to accomodate for musl based toolchains that don't
    have libc.a in usr/lib/..., but directory in lib/... Basically, the
    change makes the usr/ at the beginning optional.
    
    However, with the very permissive (.*) matching in the middle of the
    path, the change above had an unexpected consequence: any path contain
    '/lib' would be truncated before this lib. As an example, Peter
    reported that his builds, running from /var/lib/buildbot/ were no
    longer working because the SYSROOT_DIR was decided to be /var instead
    of something like
    /var/lib/buildbot/buildroot/output/host/opt/ext-toolchain/arm-linux-gnueabihf/libc/.
    
    So, this commit changes (again!) this regexp by changing (.*) to
    ([^/]*), the idea being that it will match only *one* path
    component. Note that this intermediate (.*) directory was added in
    e6e60be ('external-toolchain: add support for Linaro 2012.01') to
    accomodate for Linaro toolchains that have a subdirectory in their
    sysroot named after the target tuple:
    
    $ ./output/host/opt/ext-toolchain/bin/arm-linux-gnueabihf-gcc -print-file-name=libc.a
    /home/thomas/projets/buildroot/output/host/opt/ext-toolchain/bin/../arm-linux-gnueabihf/libc/usr/lib/arm-linux-gnueabihf/libc.a
    
    In addition to this, this commit also makes sure that the change
    making usr/ optional is properly reported on all the instances of this
    regular expression.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    620d85b View commit details
    Browse the repository at this point in the history
  31. toolchain-external: update comments

    [Peter: drop extra # as pointed out by Baruch Siach]
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    b07c2af View commit details
    Browse the repository at this point in the history
  32. toolchain-external: factorize regular expressions

    Based on a suggestion from Peter, this commit factorizes the logic and
    regular expressions that are used to find the sysroot and libdir for a
    given compiler. It reduces a bit the duplication of code, and
    centralizes the most bizarre part of this logic in one place.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    646bd86 View commit details
    Browse the repository at this point in the history
  33. rootfs-ext2: make the symlink as a _POST_TARGET

    This will allow us to remove the unused ROOTFS_$(FSTYPE)_POST_GEN_HOOKS.
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    75b6303 View commit details
    Browse the repository at this point in the history
  34. rootfs-common: remove the now unused ROOTFS_<PKG>_POST_GEN_HOOKS

    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    053d678 View commit details
    Browse the repository at this point in the history
  35. rootfs-cpio: whitespace cleanup in Config.in

    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    fb7ad1c View commit details
    Browse the repository at this point in the history
  36. rootfs-common: refactor the common compression commands

    This makes the compression extension available in a variable, so it
    can be used by the fs-specific commands. In this patch, it is used
    by iso9660. Following patches show more use cases.
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    bd8ef7a View commit details
    Browse the repository at this point in the history
  37. rootfs-ext2: symlink with the compressed rootfs

    Previously, a symlink was created to the uncompressed filesystem,
    which made it a bit useless in case compression was chosen.
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    4df9ecb View commit details
    Browse the repository at this point in the history
  38. rootfs-cpio: add U-Boot image support

    Adds U-Boot image support for cpio root filesystems. This allows you to
    use the bootm command in U-Boot to load the rootfs. It makes it possible to
    verify the CRC of the initramfs before booting the kernel.
    
    [Spenser: wrote first version of the patch.]
    Signed-off-by: Spenser Gilliland <[email protected]>
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    3970ebf View commit details
    Browse the repository at this point in the history
  39. uboot-tools: factor out common mkimage infrastructure

    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    13ae007 View commit details
    Browse the repository at this point in the history
  40. util-linux: disable fallocate for avr32

    The fallocate syscall is not implemented in the avr32 toolchain.
    
    Fixes build failures such as the following.
    
      http://autobuild.buildroot.net/results/bc4/bc41a3fea20181526eb247ac910244aa2aa4c4c0/
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    a035340 View commit details
    Browse the repository at this point in the history
  41. imagemagick: bump to version 6.8.7-3

    Signed-off-by: Jerzy Grzegorek <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Jerzy Grzegorek authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    42cd739 View commit details
    Browse the repository at this point in the history
  42. ipset: bump to version 6.20.1

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    26baab0 View commit details
    Browse the repository at this point in the history
  43. iptables: add support for connlabel match and nfnl_osf

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    b835171 View commit details
    Browse the repository at this point in the history
  44. hplip: bump to version 3.13.10

    Sections of the hplip-fix-make.patch patch file were removed, because they
    no longer appear in the Makefile.am file.
    
    Signed-off-by: Olivier Schonken <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    olivierschonken authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    2b0d870 View commit details
    Browse the repository at this point in the history
  45. libmodbus: bump version and change download location

    The license of libmodbus is LGPL v2.1 or later and the
    licence of programs in tests directory is GPL v3. So
    specify only LGPL v2.1.
    
    Signed-off-by: Yegor Yefremov <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yegorich authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    8639afc View commit details
    Browse the repository at this point in the history
  46. openpowerlink: bump to version 1.8.4

    Signed-off-by: Romain Naour <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    RomainNaour authored and jacmet committed Nov 10, 2013
    Configuration menu
    Copy the full SHA
    3d6aec1 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2013

  1. p910nd: new package

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    f71e73f View commit details
    Browse the repository at this point in the history
  2. package/rpi-firmware: bump version

    Bump bootloader and GPU firmware for misc fixes:
      - cec fixes
      - DTS buffering
      - others (pause_burst_frames enabled by default. WTF is that?)
    
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    0c6fff0 View commit details
    Browse the repository at this point in the history
  3. package/rpi-userland: bump version

    Bump for a few more options (eg. setting the palette in 4- or 8bpp,
    and rendering camera preview with GL).
    
    Signed-off-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    yann-morin-1998 authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    381e215 View commit details
    Browse the repository at this point in the history
  4. system: move init system option above /dev management.

    The option to choose init system was below the one for /dev management.
    As Systemd forces the use of udev, it is logical to swap them.
    
    Signed-off-by: Eric Le Bihan <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    elebihan authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    0b90a82 View commit details
    Browse the repository at this point in the history
  5. xmlstarlet: add license information

    Signed-off-by: Axel Lin <[email protected]>
    Acked-by: Arnout Vandecappelle <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    AxelLin authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    270db93 View commit details
    Browse the repository at this point in the history
  6. xmlstarlet: bump to version 1.5.0

    Signed-off-by: Axel Lin <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    AxelLin authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    ec2c832 View commit details
    Browse the repository at this point in the history
  7. cppdb: new package

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    0c14b6c View commit details
    Browse the repository at this point in the history
  8. cppdb: fix comment dependency

    As noticed by Thomas De Schampheleir.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    1eee94d View commit details
    Browse the repository at this point in the history
  9. imagemagick: bump version

    The -3 version is no longer available at the upstream URL.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    c344ec0 View commit details
    Browse the repository at this point in the history
  10. iozone: disable for uClibc 0.9.31

    uClibc 0.9.31.x does not include the pthread_setaffinity_np GNU extension.
    
    Fixes build failures such as the following.
    
      http://autobuild.buildroot.net/results/e21526c0c18733310d3fb322d79d5fff3a71af51/
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    d71d7d1 View commit details
    Browse the repository at this point in the history
  11. gstreamer1: bump version

    Bugfix release.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    c8461f3 View commit details
    Browse the repository at this point in the history
  12. gst1-plugins-base: bump version

    Bugfix release.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    df3c6ee View commit details
    Browse the repository at this point in the history
  13. gst1-plugins-good: bump version

    Bugfix release. Patch is now upstream.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    14ee08f View commit details
    Browse the repository at this point in the history
  14. gst1-plugins-bad: bump version

    Bugfix release. Patch is now upstream.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    8746b3d View commit details
    Browse the repository at this point in the history
  15. gst-plugins-ugly: bump version

    Bugfix release.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    d54bba0 View commit details
    Browse the repository at this point in the history
  16. log4cxx: needs threads

    Fixes build failures such as the following.
    
      http://autobuild.buildroot.net/results/7b73901d9e8b5098cd96b54d292bb3ffffb3fe37/
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    5f6dd5e View commit details
    Browse the repository at this point in the history
  17. pciutils: bump version

    I have just released version 3.2.1 of the pciutils. It's purely
    a maintenance release with a couple of minor bug fixes and minor
    improvements. Thus quoth the changelog:
    
    2013-11-10  Martin Mares <[email protected]>
    
    	* Released as 3.2.1.
    
    	* CardBus bridge capabilities are displayed.
    
    	* PCIe L1 PM substates are decoded.
    
    	* Various bugs were fixed in decoding of PCIe capabilities.
    
    	* The sysfs back-end does not spit out unnecessary warnings when
    	  empty slots report only a partial device address. This actually
    	  happens on IBM pSeries.
    
    	* Updated pci.ids to the today's snapshot of the database.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    6820059 View commit details
    Browse the repository at this point in the history
  18. docs/manual: Add version number to perl in prerequisites

    Building host-bison needs perl 5.8.7+, as it uses the "-f" option
    for site customization scripts. This feature was added in 5.8.7.
    
    Signed-off-by: Mischa Jonker <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    mischajonker authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    b376619 View commit details
    Browse the repository at this point in the history
  19. ethtool: bump version to 3.12.1

    3.12 release notes:
    
    	* Fix: Remove alternate method to check for VLAN tag offload on Linux
    	  < 2.6.37 (-k/-K options)
    	* Fix: Hide state of VLAN tag offload and LRO if the kernel is too old
    	  for us to reliably detect them (-k option)
    	* Feature: Add register dump support for Solarflare SFC9100 family
    	  (-d option)
    
    3.12.1 release notes:
    
    This includes a couple of changes that should have gone into 3.12.
    
    	* Fix: Memory corruption when applying external calibration to
    	  SFF-8472 module diagnostics (-m option)
    	* Feature: Add Intel 82599 and x540 DCB registers to dump
    	  (-d option)
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    6d93f06 View commit details
    Browse the repository at this point in the history
  20. libqmi: fix autobuild failures

    The libqmi build specifies -Werror in the CFLAGS by default. This causes
    build failures such as the following.
    
      http://autobuild.buildroot.net/results/070/070449299aa9025c4bc6769524a6e22d66c92a65/
    
    The -Werror flag can be disabled using a configuration switch.
    
    [Peter: use =no instead and add a comment explaining why]
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    6a3bff2 View commit details
    Browse the repository at this point in the history
  21. liblog4c-localtime: fix linking error without pthread

    Fixes http://autobuild.buildroot.net/results/34f/34f238cdb1b1b4be1a11143b5e4a17c78c2fc289/
    
    The rollingfile functionality only gets built if pthread support is
    available, but a call to these functions from log4c_fini() was outside
    the #if WITH_ROLLINGFILE conditional, causing linker errors when the
    library is used.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    c2255e0 View commit details
    Browse the repository at this point in the history
  22. Config.in files: whitespace cleanup

    This patch fixes the following whitespace problems in Config.in files:
    - trailing whitespace
    - spaces instead of tabs for indentation
    - help text not indented with tab + 2 spaces
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    bed4e27 View commit details
    Browse the repository at this point in the history
  23. icu: Doesn't work on ARC yet

    icu depends on __sync_sub_and_fetch and other atomic primitives that
    don't exist in the ARC toolchain yet.
    
    [Peter: adjust beecrypt/php comment dependency, don't mention atomic builtins]
    Signed-off-by: Mischa Jonker <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    mischajonker authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    9b6c5e9 View commit details
    Browse the repository at this point in the history
  24. toolchain-buildroot: glibc and eglibc support is no longer experimental

    The glibc and eglibc support has been introduced since a little bit of
    time now, I believe we can remove the "experimental" statement next to
    it.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    924b873 View commit details
    Browse the repository at this point in the history
  25. toolchain-buildroot: make sure glibc isn't chosen when BR2_PREFER_STA…

    …TIC_LIB=y
    
    (e)glibc doesn't support a fully statically linked userspace. Even a
    basic program such as Busybox fails to do authentication due to glibc
    loading some libraries dynamically. Therefore, we disable the
    possibility of building a glibc toolchain when
    BR2_PREFER_STATIC_LIB=y.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    819da04 View commit details
    Browse the repository at this point in the history
  26. toolchain-external: make sure (e)glibc isn't chosen when BR2_PREFER_S…

    …TATIC_LIB=y
    
    (e)glibc doesn't support a fully statically linked userspace. Even a
    basic program such as Busybox fails to do authentication due to glibc
    loading some libraries dynamically. Therefore, we disable the
    possibility of using a (e)glibc toolchain when
    BR2_PREFER_STATIC_LIB=y.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    ed3f3e4 View commit details
    Browse the repository at this point in the history
  27. gcc: don't patch gcc if there are no patches to apply

    While the generic package handler checks for a directory with patches
    before starting apply-patches.sh, this is not the case for gcc: the
    script is called, even if there is no directory with patches. This results
    into a build failure, as apply-patches exits with error code 1 if the
    directory doesn't exist.
    
    Signed-off-by: Mischa Jonker <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    mischajonker authored and jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    86a48c3 View commit details
    Browse the repository at this point in the history
  28. docs/about.html: we support internal (e)glibc toolchains as well now

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    439f487 View commit details
    Browse the repository at this point in the history
  29. docs/news.html: announce dev meeting report

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 11, 2013
    Configuration menu
    Copy the full SHA
    eb04ed8 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2013

  1. CHANGES: update with recent changes

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 12, 2013
    Configuration menu
    Copy the full SHA
    b9a16cb View commit details
    Browse the repository at this point in the history
  2. samba: security bump to version 3.6.20

    Fixes CVE-2013-4475 and CVE-2013-4476.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 12, 2013
    Configuration menu
    Copy the full SHA
    71879a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    68a48f0 View commit details
    Browse the repository at this point in the history
  4. qt5base: add missing hunk in posix_fallocate patch

    Signed-off-by: Fatih Aşıcı <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    fatih-asici authored and jacmet committed Nov 12, 2013
    Configuration menu
    Copy the full SHA
    3a74079 View commit details
    Browse the repository at this point in the history
  5. tstools: perform shared library linking step using gcc rather than ld

    Fixes http://autobuild.buildroot.net/results/c45/c45bbdaff6cff56b5646add38032f29bb5520f16
    
    Using ld directly breaks with certain toolchain configurations.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 12, 2013
    Configuration menu
    Copy the full SHA
    7a7ec2d View commit details
    Browse the repository at this point in the history
  6. legal info: fix saving of host package licenses

    Due to some tricky make behavior, the license texts of host packages that
    did not provide an explicit HOST_FOO_LICENSE_FILES definition was not saved.
    The problem is that it is not straightforward to use a variable
    defined/updated inside an evaluated block as input to a foreach statement.
    If you try to use $(FOO) then only the original value of FOO is used for
    foreach, any update inside the block is ignored. However, if you use
    $$(FOO), the entire contents of FOO (typically a list of items) is passed
    as one item to foreach, thus causing just one iteration instead of several.
    
    >From Arnout Vandecapelle's explanation:
    Any variable referenced with a single $ inside the inner-generic-package
    macro is expanded before the resulting contents are eval'ed. Therefore, it
    is not possible to refer to variables defined by the inner-generic-package
    macro from within a single-$ function call.
    
    To fix the problem, one should defer the evaluation of the entire block
    using double dollar signs.
    
    Additionally, a few empty lines have been added to the legal-info-foo block
    for clarity.
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Acked-by: Luca Ceresoli <[email protected]>
    Tested-by: Luca Ceresoli <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 12, 2013
    Configuration menu
    Copy the full SHA
    003d38d View commit details
    Browse the repository at this point in the history
  7. Update for 2013.11-rc1

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 12, 2013
    Configuration menu
    Copy the full SHA
    abce7ca View commit details
    Browse the repository at this point in the history
  8. news.html: add 2013.11-rc1 annoucement link

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 12, 2013
    Configuration menu
    Copy the full SHA
    980220c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    be93080 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2013

  1. Configuration menu
    Copy the full SHA
    b6ee44b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68a1bd1 View commit details
    Browse the repository at this point in the history
  3. docs: announce the upcoming Buildroot Developer Day

    [Peter: drop 'the' before FOSDEM]
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Acked-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 13, 2013
    Configuration menu
    Copy the full SHA
    d3db5d8 View commit details
    Browse the repository at this point in the history
  4. docs: add a page to thank our sponsors

    Offer a little bit more visibility to the companies who sponsored us,
    either by sponsoring the developer days, or development
    boards. Hopefully this will encourage other companies to do the same :)
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Acked-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 13, 2013
    Configuration menu
    Copy the full SHA
    4de330f View commit details
    Browse the repository at this point in the history
  5. docs/download.html: Fix tarball typos

    Reported-by: Arnout Vandecappelle <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 13, 2013
    Configuration menu
    Copy the full SHA
    c09f5aa View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2013

  1. linux-headers: bump 3. {4, 10, 11}.x stable versions

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 14, 2013
    Configuration menu
    Copy the full SHA
    da55895 View commit details
    Browse the repository at this point in the history
  2. qemu/arm-versatile: roll back to 3.11.x kernel series

    As pointed by Thomas P. kernel 3.12 oopses when loading/using the
    emulated network.
    Seems 3.12 broke versatile for qemu like in the past, only in a more
    subtle way this time that escaped my automated qemu builds/tests.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 14, 2013
    Configuration menu
    Copy the full SHA
    58b82e5 View commit details
    Browse the repository at this point in the history
  3. qemu/arm-nuri: bump to latest 3.10.x kernel version

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 14, 2013
    Configuration menu
    Copy the full SHA
    2b9bdca View commit details
    Browse the repository at this point in the history
  4. nano: fix build breakage with libmagic

    As reported by Cassiano Martin in bug #6692 if host == target the nano
    package can pick up the host libmagic and break.
    So add a check to see if the file package is enabled and use it,
    otherwise just disable libmagic support.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 14, 2013
    Configuration menu
    Copy the full SHA
    8931088 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2013

  1. sheevaplug_defconfig: bump kernel version, lock u-boot version

    Stick to 3.11.x for now, as sheevaplug has moved to DT only in 3.12+.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 16, 2013
    Configuration menu
    Copy the full SHA
    7bf866e View commit details
    Browse the repository at this point in the history
  2. uclibc: patch 0.9.31 for avr32, to add __kernel_long_t and __kernel_u…

    …long_t data types
    
    As reported by Thomas Petazzoni, the uclibc 0.9.31 build fails for avr32:
    
    In file included from /opt/br-avr32-full-2013.11-rc1/usr/avr32-buildroot-linux-uclibc/sysroot/usr/include/linux/kernel.h:4,
                     from /opt/br-avr32-full-2013.11-rc1/usr/avr32-buildroot-linux-uclibc/sysroot/usr/include/linux/netlink.h:4,
                     from /opt/br-avr32-full-2013.11-rc1/usr/avr32-buildroot-linux-uclibc/sysroot/usr/include/linux/rtnetlink.h:5,
                     from libc/inet/netlinkaccess.h:27,
                     from libc/inet/if_index.c:36:
    /opt/br-avr32-full-2013.11-rc1/usr/avr32-buildroot-linux-uclibc/sysroot/usr/include/linux/sysinfo.h:8: error: expected specifier-qualifier-list before '__kernel_long_t'
    make[1]: *** [libc/inet/if_index.os] Error 1
    make[1]: Leaving directory `/opt/toolchain-build/build/uclibc-0.9.31.1'
    
    The problem is reported at:
    
      https://lkml.org/lkml/2013/5/18/1
    
    The offending kernel commit is:
    
      http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=ccdfcc398594
    
    The fix is to patch uclibc 0.9.31 to add the missing kernel data types. The patch
    will only be generated for avr32, since uclibc 0.9.31 is not available in Buildroot
    for any other architecture.
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 16, 2013
    Configuration menu
    Copy the full SHA
    0294ace View commit details
    Browse the repository at this point in the history
  3. Fix typo in url

    Fix a typo in squashfs site url
    
    Signed-off-by: Arnaud Aujon <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Arnaud Aujon authored and jacmet committed Nov 16, 2013
    Configuration menu
    Copy the full SHA
    93adbf9 View commit details
    Browse the repository at this point in the history
  4. wayland: disable on avr32

    The epoll_create1, timerfd_create and timerfd_settime syscalls are not available
    on avr32. Fixes build failures such as the following.
    
      http://autobuild.buildroot.net/results/43b/43b3df5978782034279604abde8fe5d46c441344/
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 16, 2013
    Configuration menu
    Copy the full SHA
    1b5bd7a View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2013

  1. pv: support ccache builds

    When using ccache TARGET_CC is something like
        ccache gcc
    
    This causes problems in the pv build which attempts to
    override LD because the command ends up being
        make [...] LD=/tools/ccache /tools/gcc LDFLAGS="[...]
    
    As a result, during the build phase it attempts to build
    /tools/gcc which succeeds by doing nothing:
        make[1]: Nothing to be done for `/tools/gcc'.
    
    and during the install phase you get the real build which
    errors out on the LD error this snippet was attempting to
    fix:
        ld -r -o src/library.o src/library/getopt.o \
            src/library/gettext.o
        ld: src/library/gettext.o: Relocations in generic ELF \
            (EM: 40)
        src/library/gettext.o: error adding symbols: File in \
            wrong format
    
    Signed-off-by: Andrew Ruder <[email protected]>
    Acked-by: "Yann E. MORIN" <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Andrew Ruder authored and jacmet committed Nov 17, 2013
    Configuration menu
    Copy the full SHA
    21161a0 View commit details
    Browse the repository at this point in the history
  2. wvstreams: remove tcl dependency support

    As far as I can tell enabling tcl support has no affect on the actual
    library.  Furthermore, wvstreams has been checking for/linking against
    tcl 8.3 which has never been supported in buildroot as far as I can tell
    (8.4 added in 2005).  That being said there is clearly no reason to keep
    this around.
    
    Signed-off-by: Andrew Ruder <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Andrew Ruder authored and jacmet committed Nov 17, 2013
    Configuration menu
    Copy the full SHA
    1571017 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    64dbd7d View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2013

  1. e2fsprogs: disable e4defrag on avr32

    The fallocate syscall is not available on avr32. This is needed by the e4defrag
    utility, so we disable this on avr32.
    
    Fixes build failures such as the following.
    
      http://autobuild.buildroot.net/results/dcb/dcb4e5c6981a9299a2eb18e325d4de621846afdb/
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 18, 2013
    Configuration menu
    Copy the full SHA
    f0c5c85 View commit details
    Browse the repository at this point in the history
  2. barebox: bump to version 2013.10.1

    This is a bug fix release.
    
    Signed-off-by: Fabio Porcedda <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    fabio-porcedda authored and jacmet committed Nov 18, 2013
    Configuration menu
    Copy the full SHA
    db4f6e2 View commit details
    Browse the repository at this point in the history
  3. uclibc: rename patches for version 0.9.31

    Rename patches for uClibc version 0.9.31, for consistency with the general
    patch naming scheme in Buildroot. Also remove a .avr32 extension from a patch;
    this is not necessary, since uclibc 0.9.31 is unavailable on architectures
    other than avr32.
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 18, 2013
    Configuration menu
    Copy the full SHA
    25507b2 View commit details
    Browse the repository at this point in the history
  4. dhcp: adjust initscripts and misc details

    Revamp initscripts see bug #3601
    * Trim whitespace
    * Check for installed binary (dhcp-relay)
    * Check for installed config (dhcp-server)
    * Check for proper variable setup from the script (both)
    * Add "FAIL" message when startup fails (blind OK isn't accurate)
    * Add start/stop messages to dhcp-relay
    
    Switch bool to "dhcp (ISC)" to keep in line with package sorting.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 18, 2013
    Configuration menu
    Copy the full SHA
    dcefce4 View commit details
    Browse the repository at this point in the history
  5. libcurl: add security patch for CVE-2013-4545

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 18, 2013
    Configuration menu
    Copy the full SHA
    6b8aa11 View commit details
    Browse the repository at this point in the history
  6. ttcp: fix url, rename patch

     - fix download url : isn't available on previous ftp, use an other one
       instead
     - add version according to source code version
     - rename and clean patch according to patch policy
    
    [Peter: adjust upstream URL in Config.in]
    Signed-off-by: Arnaud Aujon <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Arnaud Aujon authored and jacmet committed Nov 18, 2013
    Configuration menu
    Copy the full SHA
    f078a8b View commit details
    Browse the repository at this point in the history
  7. Update for 2013.11-rc2

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 18, 2013
    Configuration menu
    Copy the full SHA
    b87c05d View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2013

  1. glibc/eglibc: remove reference to experimental from help text

    Since 924b873 we no longer declare glibc and eglibc support as
    experimental, so it shouldn't be mentioned in the help text anymore.
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Acked-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 19, 2013
    Configuration menu
    Copy the full SHA
    b478d30 View commit details
    Browse the repository at this point in the history
  2. vim: fix gettext check

    Fixes http://autobuild.buildroot.net/results/21b5a910e6a27fa1cb12d0002ffed7e6ed9d6c83/
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 19, 2013
    Configuration menu
    Copy the full SHA
    d0e1fae View commit details
    Browse the repository at this point in the history
  3. vim: add dependency to gettext if locale support is requested

    Until now, if locale support was requested, vim would be built with NLS or
    not depending on the build order. This patch now makes the dependency
    explicit.
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 19, 2013
    Configuration menu
    Copy the full SHA
    5a3c69a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e82799 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2013

  1. pv: needs gettext if locale is enabled

    Fixes http://autobuild.buildroot.net/results/c4f/c4f5ed916d85740ec00f5f34ded5de0195e5cd45/
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 20, 2013
    Configuration menu
    Copy the full SHA
    8b24c37 View commit details
    Browse the repository at this point in the history
  2. lxc: needs largefile support

    lxc_checkpoint.c: In function ‘main’:
    lxc_checkpoint.c:128: error: ‘O_LARGEFILE’ undeclared (first use in this function)
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 20, 2013
    Configuration menu
    Copy the full SHA
    b1ac80d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c4b78bd View commit details
    Browse the repository at this point in the history
  4. Mark MIPS I, II, III and IV as deprecated

    Deprecate old MIPS ISAs since they are rarely used anymore and they cause
    multiple build problems for new packages
    
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 20, 2013
    Configuration menu
    Copy the full SHA
    831dad2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    291d5f0 View commit details
    Browse the repository at this point in the history
  6. ruby: needs thread support

    tpetazzoni authored and jacmet committed Nov 20, 2013
    Configuration menu
    Copy the full SHA
    ca5a1e1 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2013

  1. Configuration menu
    Copy the full SHA
    99bccdc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    92ba26b View commit details
    Browse the repository at this point in the history
  3. schifra: fix post install hook

    Signed-off-by: Arnaud Rébillout <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Arnaud Rébillout authored and jacmet committed Nov 21, 2013
    Configuration menu
    Copy the full SHA
    af0813b View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2013

  1. schifra: fix install examples

    Fixes:
    
    http://autobuild.buildroot.net/results/1ec/1ec3664f28492bf3da53dcbe8ceeb165bce8df6d/build-end.log
    
    Signed-off-by: Romain Naour <[email protected]>
    Acked-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    RomainNaour authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    d2b29f4 View commit details
    Browse the repository at this point in the history
  2. linux-headers: bump 3. {4, 10, 11, 12}.x stable versions

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    13b32ef View commit details
    Browse the repository at this point in the history
  3. linux: bump to version 3.12.1

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    eaa8691 View commit details
    Browse the repository at this point in the history
  4. configs/qemu: bump relevant config versions

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    c3ab5bf View commit details
    Browse the repository at this point in the history
  5. mdadm: needs mmu

    gustavoz authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    c2f11a9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b14cab5 View commit details
    Browse the repository at this point in the history
  7. ola: disable -Werror

    By default, the ola build uses -Werror, so let's pass
    --disable-fatal-warnings to remove this and avoid build failures
    caused by warnings.
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    768f261 View commit details
    Browse the repository at this point in the history
  8. libglib2: needs MMU support

    Fixes http://autobuild.buildroot.net/results/2e0/2e032c6e44e10f2912935715741c3680a19b9b51/
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    2b468f1 View commit details
    Browse the repository at this point in the history
  9. libroxml: fix avr32 build failure

    The -Wno-unused-result option is not understood by the version of gcc used by the
    avr32 toolchain. Remove the option from the compilation flags.
    
    Fixes build failures such as the following.
    
      http://autobuild.buildroot.net/results/e22/e22d94fca3eabb4e54d82af04319f17ad8e10c20/
    
    The single existing patch for libroxml has been renamed to include a numerical
    component for application order sorting. The existing patch has also been updated
    to apply without fuzz.
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    2b2c657 View commit details
    Browse the repository at this point in the history
  10. libcap-ng: disable on avr32 which lacks TLS

    libcap-ng needs TLS support, which is not available on avr32.
    Also, disable reverse dependencies.
    
    Fixes:
      http://autobuild.buildroot.net/results/73c/73c7c211a51c312bbe4eb6a540f3ad9c92c79ebe/
    
    Signed-off-by: Samuel Martin <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tSed authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    a80e3e0 View commit details
    Browse the repository at this point in the history
  11. tinymembench: package not supported on MIPS64

    Fixes:
    
       http://autobuild.buildroot.net/results/bab/bab68bcf8714f215ac0b0c2546fa06608377fbb0/
    
    This package is only supported on MIPS32 platforms. The mips-32.S file
    included in the source code of this package only makes sense to be compiled
    for MIPS32, and also contains hardcoded MIPS32 instructions which are
    illegal on MIPS64.  Trying to compile this package on a MIPS64 platform will
    end with a linkage failure due to undefined references.
    
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Reviewed-by: Markos Chandras <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    9883cbd View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    b55e473 View commit details
    Browse the repository at this point in the history
  13. openssl: only build threads configuration if toolchain has pthread su…

    …pport
    
    Gets rid of a large number of warnings (and suboptimal code?):
    
    ..sysroot/usr/include/features.h:209:5: warning: #warning requested
    reentrant code, but thread support was disabled [-Wcpp]
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    43becdb View commit details
    Browse the repository at this point in the history
  14. libvncserver: openssl support needs pthreads

    Fixes http://autobuild.buildroot.net/results/c30/c3082693fe0da0c54d4bbf950dd6d74e1395c1d9/
    
    Also pass --without-ssl if that isn't the case, as the configure script
    otherwise ends up detecting openssl if built before libvncserver.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    f8e4365 View commit details
    Browse the repository at this point in the history
  15. beecrypt: include sequence numbers in patch names

    Signed-off-by: Vicente Olivert Riera <[email protected]>
    [ThomasDS: minor change in commit message]
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    32d6473 View commit details
    Browse the repository at this point in the history
  16. beecrypt: unconditionally disable openpm

    beecrypt does not properly handle its dependency on openpm, so that
    applications using libbeecrypt are not aware that they also need openmp
    (libgomp). This causes error messages during linking, such as (rpm):
    
    ..-gcc [..] -lbeecrypt  -lbz2 -lz -lpopt -lpthread
    libbecrypt.so: undefined reference to `GOMP_sections_end_nowait'
    libbecrypt.so: undefined reference to `GOMP_parallel_end'
    libbecrypt.so: undefined reference to `GOMP_sections_next'
    libbecrypt.so: undefined reference to `GOMP_parallel_sections_start'
    
    Because the openpm dependency of beecrypt is only used by rsa.c, to
    parallelize the calculation of RSA cyphers, we can simply disable openmp in
    beecrypt instead of trying to fix the way -lgomp is passed.
    
    Fixes http://autobuild.buildroot.net/results/bcf/bcff4b81bfbb1191f97317b0945c74d948c9774b/
    
    Signed-off-by: Thomas De Schampheleire <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    patrickdepinguin authored and jacmet committed Nov 22, 2013
    Configuration menu
    Copy the full SHA
    cc2c75b View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2013

  1. swig: unbreak host-swig build when host has octave installed

    But not the octave development package:
    
    checking for octave... octave
    checking for mkoctfile... configure: error: mkoctfile is not installed
    
    We don't need octace support, so fix it by explictly disabling it.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 24, 2013
    Configuration menu
    Copy the full SHA
    f133e9b View commit details
    Browse the repository at this point in the history
  2. nut: add libltdl dependency

    libltdl is needed for nut-scanner
    
    Signed-off-by: Romain Naour <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    RomainNaour authored and jacmet committed Nov 24, 2013
    Configuration menu
    Copy the full SHA
    46250ee View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2013

  1. e2fsprogs: Disable elf shared library when BR2_PREFER_STATIC_LIB is s…

    …elected.
    
    Signed-off-by: Sonic Zhang <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    sonicz authored and jacmet committed Nov 25, 2013
    Configuration menu
    Copy the full SHA
    efc3579 View commit details
    Browse the repository at this point in the history
  2. mongoose: S85mongoose: fix default options

    mongoose fails to start because the options used are not supported by
    mongoose. Fix it by using the correct option names instead.
    
    [Peter: reworded commit text and use the correct long options instead]
    Signed-off-by: Davide Viti <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Davide Viti authored and jacmet committed Nov 25, 2013
    Configuration menu
    Copy the full SHA
    12da132 View commit details
    Browse the repository at this point in the history
  3. pcre: add options to enable UTF and UCP support

    Allow to compile PCRE with UTF-8/16/32 support and with
    support for Unicode properties.
    
    [Peter: whitespace fix]
    Signed-off-by: Sven Neumann <[email protected]>
    Acked-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Sven Neumann authored and jacmet committed Nov 25, 2013
    Configuration menu
    Copy the full SHA
    d34c3ea View commit details
    Browse the repository at this point in the history
  4. libglib2: the system PCRE needs to have UTF and UCP enabled

    If glib2 is compiled with the system PCRE instead of the included
    copy, then that system PCRE needs to have support for UTF-8 and
    Unicode properties enabled. Otherwise you will get such warnings
    at run-time:
    
    GLib-CRITICAL **: PCRE library is compiled without UTF8 support
    GLib-CRITICAL **: PCRE library is compiled without UTF8 properties support
    
    Signed-off-by: Sven Neumann <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Sven Neumann authored and jacmet committed Nov 25, 2013
    Configuration menu
    Copy the full SHA
    e9060f3 View commit details
    Browse the repository at this point in the history
  5. tinymembench: not supported on MIPS n32/64 ABIs

    This is a fix for 9883cbd. After deeper
    testing we have found that package is supported on MIPS64, but only for
    o32 ABI.
    
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Reviewed-by: Markos Chandras <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 25, 2013
    Configuration menu
    Copy the full SHA
    ee40f4f View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2013

  1. protobuf-c: disable parallel build

    Ryan Barnett authored and jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    7200083 View commit details
    Browse the repository at this point in the history
  2. sunxi-mali, ti-gfx: add missing dollar sign in egl.pc

    Signed-off-by: Fatih Aşıcı <[email protected]>
    Reviewed-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    fatih-asici authored and jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    f2c32b8 View commit details
    Browse the repository at this point in the history
  3. poco: fix sh4a fenv build failure

    Disable FP environment on sh4a. Fixes
    http://autobuild.buildroot.net/results/8dc9bca5969d455cc30206fc1ae6e1d3ba6eb6ca/.
    
    Signed-off-by: Baruch Siach <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    baruchsiach authored and jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    54b369c View commit details
    Browse the repository at this point in the history
  4. mongoose: wait some time between stop and start of the service

    Startup script fails to restart the service: 1s delay is enough to fix
    this.
    
    Also apply a minor fix of the script name in the usage string
    
    Signed-off-by: Davide Viti <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Davide Viti authored and jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    be1cf3b View commit details
    Browse the repository at this point in the history
  5. uclibc-snapshot: enable option UCLIBC_SUSV2_LEGACY

    With uClibc commit e8065705, valloc is now optional in SUSv2 and removed
    from SUSv3 and later. However, cdrkit currently requires valloc, so
    enable it in the uClibc snapshot configuration file.
    
    Fixes
    http://autobuild.buildroot.net/results/5a5/5a51f3f06e04eed39d59477ea1178aef7d397754/
    
    Signed-off-by: Chris Zankel <[email protected]>
    [baruch: fix summary line, add autobuild reference]
    Signed-off-by: Baruch Siach <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    czankel authored and jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    d893bde View commit details
    Browse the repository at this point in the history
  6. php: fix iconv related build failure

    Fix a rare edge build failure when iconv is enabled, easily reproduced
    in a debian chroot with an aarch64 external toolchain with iconv +
    xmlrpc support enabled with a php cgi + cli target.
    Should solve bug #6500.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    f2a2c4c View commit details
    Browse the repository at this point in the history
  7. dbus: only install initscript for sysV targets

    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    d08ba19 View commit details
    Browse the repository at this point in the history
  8. Update for 2013.11-rc3

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 26, 2013
    Configuration menu
    Copy the full SHA
    1bf9afe View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2013

  1. quagga: security bump to version 0.99.22.4

    Fixes CVE-2013-6051.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 27, 2013
    Configuration menu
    Copy the full SHA
    50b9552 View commit details
    Browse the repository at this point in the history
  2. libnss: security bump to version 3.14.5

    Fixes CVE-2013-5605.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 27, 2013
    Configuration menu
    Copy the full SHA
    51b3db5 View commit details
    Browse the repository at this point in the history
  3. ruby: security bump to 1.9.3-p484

    Fixes CVE-2013-4164.
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 27, 2013
    Configuration menu
    Copy the full SHA
    3783b84 View commit details
    Browse the repository at this point in the history
  4. tinymembench: Fix typo error on dependence

    It should be BR2_MIPS_NABI64 instead of BR_MIPS_NABI64
    
    Fixes:
    
       http://autobuild.buildroot.net/results/c5d/c5da2d99c09b1a2f7da23f1636f1ccc8978cc4a3/
    
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 27, 2013
    Configuration menu
    Copy the full SHA
    2d9ee19 View commit details
    Browse the repository at this point in the history
  5. dropwatch: adjust LDFLAGS

    Add more library links into LDFLAGS.
    -lncurses because readline uses it (missing _tputs and others).
    -lpthread for missing _pthread_rwlock_unlock and others.
    -lm for missing _rint.
    Fixes:
    http://autobuild.buildroot.net/results/6b1/6b1f4f2167d8aca0d73dc0e66fd2e1704c821c61/
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 27, 2013
    Configuration menu
    Copy the full SHA
    7ea26ac View commit details
    Browse the repository at this point in the history
  6. binutils: fix static linking

    pkg-autotools.mk already handles static/shared linking, so no need to
    explictly force it. Worse even, the build fails with BR2_PREFER_STATIC_LINK
    as we end up calling libtool with --static when it tries to link the .so,
    breaking the build:
    
    ../ld: attempted static link of dynamic object
    `../opcodes/.libs/libopcodes.so'
    collect2: error: ld returned 1 exit status
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 27, 2013
    Configuration menu
    Copy the full SHA
    a6fa695 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2013

  1. apr: fix threading lib detection

    apr's configure doesn't try to guess which library is needed for
    threading when cross-compiling hence this is never reflected in
    apr-1-config, leading to a build failure such as:
    http://autobuild.buildroot.net/results/035/035a00de0a56be00559767ba822a396ddc18a9fb/
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    b7eb4b3 View commit details
    Browse the repository at this point in the history
  2. apr: needs mmu

    Uses fork() in apr_proc_fork() which is used by almost all the packages
    that use apr (log4cxx, subversion).
    apr-util doesn't use fork or apr_proc_fork but it's of no use alone.
    
    [Peter: also hide log4cxx comment if !BR2_USE_MMU]
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    1f2d661 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    769bb15 View commit details
    Browse the repository at this point in the history
  4. gpsd: do not allow profiling support on AArch64

    The profiling support is not available on AArch64, causing build
    failures such as:
    
      http://autobuild.buildroot.net/results/724f8646e1c2c28cf187f2313244d1e3e61b4c25/
    
    According to Will Newton, function profiling will only be added in the
    next version of the AArch64 Linaro toolchain. This indicates it is a
    rather new feature in AArch64, so for the moment, just disallow
    profiling on AArch64. We can revise this later, when this feature has
    been made available in Linaro toolchains, and official gcc releases
    (for internal toolchain support).
    
    Signed-off-by: Thomas Petazzoni <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    tpetazzoni authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    b0a72f0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    300c6e7 View commit details
    Browse the repository at this point in the history
  6. util-linux: tweak sscanf-no-ms-as patch

    The patch has a minor mistake so fix it.
    Credit go to Daniel Mentz <[email protected]> for the detailed bug report.
    Closes bug #6428
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    62d15df View commit details
    Browse the repository at this point in the history
  7. lvm2: replace !BR2_PACKAGE_LVM2_DMSETUP_ONLY by BR2_PACKAGE_LVM2_STAN…

    …DARD_INSTALL
    
    BR2_PACKAGE_LVM2_DMSETUP_ONLY is a "negative" option that disables
    build and install of part of the suite. This option cannot be unselected
    by other config options, which gives a problem for BR2_PACKAGE_UDISKS_LVM2:
    it needs BR2_PACKAGE_LVM2_APP_LIBRARY, which requires the full suite.
    
    Therefore, replace the negative BR2_PACKAGE_LVM2_DMSETUP_ONLY by a positive
    BR2_PACKAGE_LVM2_STANDARD_INSTALL. To make sure that existing defconfigs
    keep working, the new option defaults to y unless the legacy
    BR2_PACKAGE_LVM2_DMSETUP_ONLY was selected.
    
    Fixes http://autobuild.buildroot.net/results/ea4627cae45e972ebba5b33a2b2871ce7f46fedc/
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    arnout authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    ff0f55e View commit details
    Browse the repository at this point in the history
  8. wpa_supplicant: define BINDIR for systemd/dbus service files

    BINDIR is used to point systemd/dbus service files to the correct binary
    path where wpa_supplicant resides.
    So define it to avoid the default /usr/local path that doesn't work.
    Solves bug #6704
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    689f975 View commit details
    Browse the repository at this point in the history
  9. mplayer: not available on nios2

    tpetazzoni authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    9402eef View commit details
    Browse the repository at this point in the history
  10. gdb: disable texinfo/documentation

    Fixes bug #6554
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    df8d0b9 View commit details
    Browse the repository at this point in the history
  11. qt: Disable QtScript on non-supported platforms

    There is no support for certain platforms in QtScript right now, so
    buildroot upstream suggested to disable the possibility of enabling
    QtScript on those platforms as a quick fix for the 2013.11 release:
    
       http://lists.busybox.net/pipermail/buildroot/2013-November/083157.html
    
    QtScript doesn't build because it uses JavaScriptCore, so we re-use the
    existing BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT option which already lists
    which platforms are supported by JavaScriptCore in Qt4.
    
    In addition, a proposed fix to add support for MIPS64 has already been
    sent to Qt:
    
       https://bugreports.qt-project.org/browse/QTBUG-35030
    
    Fixes:
    
       http://autobuild.buildroot.net/results/fd7/fd7e7e53290f235b540ed5f3c784e2584fdb41e0/
    
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    1d57723 View commit details
    Browse the repository at this point in the history
  12. grantlee: Disable on non-supported platforms

    This package selects BR2_PACKAGE_QT_SCRIPT which is not supported on
    certain platforms. To prevent this behaviour we use the same solution as
    we applied for BR2_PACKAGE_QT_SCRIPT
    
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    a88dceb View commit details
    Browse the repository at this point in the history
  13. libnspr: Add dependency on !BR2_xtensa and !BR2_bfin

    Xtensa is not yet supported in libnspr. Also add dependencies to libnss,
    which requires libnspr, and ecryptfs-utils, which requires libnss.
    
    Fixes (xtensa)
    http://autobuild.buildroot.net/results/14b/14ba6426edbffa100de924aa69157b3f59368ff2/
    
    Fixes (blackfin)
    http://autobuild.buildroot.net/results/dd3/dd353703ed94cec48cd126d80cd2f1b039811be4/
    
    [baruch: fix summary, add autobuild reference, add comment dependency,
     add blackfin]
    
    Signed-off-by: Chris Zankel <[email protected]>
    Signed-off-by: Baruch Siach <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    czankel authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    354cab0 View commit details
    Browse the repository at this point in the history
  14. ecryptfs-utils: add a dependencies comment

    Signed-off-by: Baruch Siach <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    baruchsiach authored and jacmet committed Nov 28, 2013
    Configuration menu
    Copy the full SHA
    5be0437 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2013

  1. lua-ev: disable on avr32 and blackfin

    lua-ev is a reverse dependency of libev, but the architecture filtering is
    not propagated. Fixes autobuild failure such as the following.
    
      http://autobuild.buildroot.net/results/387/38704a4362ab6c3458c45603975b274937059fa9/
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 29, 2013
    Configuration menu
    Copy the full SHA
    765ccaf View commit details
    Browse the repository at this point in the history
  2. qt: fix build with opengl es

    Fixes http://autobuild.buildroot.net/results/efe/efe26c54361094fb1e201da6915900cd9b24d596/
    
    qt doesn't use pkg-config to figure out the needed compiler/linker flags
    for egl, so pass them explicitly instead.
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 29, 2013
    Configuration menu
    Copy the full SHA
    fe8d728 View commit details
    Browse the repository at this point in the history
  3. libpfm4: disable on avr32

    The perf_event_open syscall is not available on avr32. Fixes build failures
    such as the following.
    
      http://autobuild.buildroot.net/results/38f/38fa81315be448c409b9af29f92621fcf5676f71/
    
    Signed-off-by: Simon Dawson <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    spdawson authored and jacmet committed Nov 29, 2013
    Configuration menu
    Copy the full SHA
    1842ad7 View commit details
    Browse the repository at this point in the history
  4. tvheadend: remove -Werror from CFLAGS

    Remove -Werror from CFLAGS to avoid build failures caused by warnings.
    
    Fixes the following autobuild failure on MIPS64 n32/64:
    
       http://autobuild.buildroot.net/results/6be/6be075726ac6db0a48dd6b535841ada932c9ffbb/
    
    Reviewed-by: Markos Chandras <[email protected]>
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 29, 2013
    Configuration menu
    Copy the full SHA
    cf4ec89 View commit details
    Browse the repository at this point in the history
  5. hostapd: fix static build failure

    libnl-3 uses threads and this isn't accounted for in hostapd (or
    libnl-3*.pc files for that matter - hostapd doesn't use pkg-config
    anyway).
    Since linking order matters for static scenarios also throw in -lnl-3
    into LIBS first since it gets appended to in hostapd makefiles to add
    libnl-3.
    
    Fixes:
    http://autobuild.buildroot.net/results/d4a/d4a9f44effeb08eda6c4b32764274ae81d185d5e/
    
    Signed-off-by: Gustavo Zacarias <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    gustavoz authored and jacmet committed Nov 29, 2013
    Configuration menu
    Copy the full SHA
    f62a1d8 View commit details
    Browse the repository at this point in the history
  6. qt5: Disable on MIPS64 BigEndian n64 platforms

    qt5base fails to compile on MIPS64 BigEndian n64 platforms because there
    are multiple calls to some functions that are disabled. Since every Qt5
    package depends on qt5base we can disable Qt5 entirely. This is a quick
    fix for the next release. In the meantime, a proposed patch to fix this
    problem has already been sent to Qt:
    
    https://bugreports.qt-project.org/browse/QTBUG-35228
    
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Acked-by: Markos Chandras <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 29, 2013
    Configuration menu
    Copy the full SHA
    931b73e View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2013

  1. libtool: Apply upstream patch to set correct linkage on MIPS64

    This libtool change ensures that ld uses the right machine emulation file,
    which will allow to fix several MIPS64 n64 link failures, such as the one
    currently visible on the libiscsi package.  Packages affected by this
    problem will have to use <pkg>_AUTORECONF = YES to benefit from this libtool
    fix, until they are fixed upstream.
    
    Acked-by: Markos Chandras <[email protected]>
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    4268d39 View commit details
    Browse the repository at this point in the history
  2. libiscsi: Call autoreconf to use buildroot's libtool

    Use updated libtool from buildroot to fix MIPS64/n64 build problems
    http://autobuild.humanoidz.org/results/a9a/a9aa506a591581e413dc38c53d0e56bec5970634/build-end.log
    
    [Peter: add comment explaining why]
    Acked-by: Markos Chandras <[email protected]>
    Signed-off-by: Vicente Olivert Riera <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Vicente Olivert Riera authored and jacmet committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    155d273 View commit details
    Browse the repository at this point in the history
  3. dbus-python: select pyexpat dependency

    dbus-python requires xml.parsers.expat, which is provided by the pyexpat
    module. This patch enables the pyexpat module as a dependency when dbus-python
    is selected.
    
    [Peter: fixup whitespace]
    Signed-off-by: Ivan Sergeev <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    Ivan Sergeev authored and jacmet committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    fe796fe View commit details
    Browse the repository at this point in the history
  4. CHANGES: update with recent changes

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    1351d0c View commit details
    Browse the repository at this point in the history
  5. libnspr: Add patch to support nios2 arch

    Signed-off-by: Ezequiel Garcia <[email protected]>
    Signed-off-by: Peter Korsgaard <[email protected]>
    ezequielgarcia authored and jacmet committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    61998c8 View commit details
    Browse the repository at this point in the history
  6. docs/news.html: announce slides from 'Buildroot: What is new' present…

    …ation at ELCE
    
    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    e6b7bcd View commit details
    Browse the repository at this point in the history
  7. Update for 2013.11

    Signed-off-by: Peter Korsgaard <[email protected]>
    jacmet committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    9b39045 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2013

  1. Merge tag '2011.11' from official buildroot git tree

    Release 2011.11
    
    Conflicts:
    	fs/Config.in
    	linux/linux.mk
    	package/Config.in
    	package/Makefile.package.in
    	package/avahi/avahi.mk
    	package/busybox/busybox.mk
    	package/dbus/dbus.mk
    	package/e2fsprogs/Config.in
    	package/e2fsprogs/e2fsprogs.mk
    	package/fakeroot/fakeroot.mk
    	package/iproute2/iproute2.mk
    	package/jpeg/jpeg.mk
    	package/makedevs/makedevs.mk
    	package/ntfs-3g/ntfs-3g.mk
    	package/ntp/ntp.mk
    	package/proftpd/proftpd.mk
    	package/python/python-2.7-013-fix-linux-3-compilation.patch
    	package/qt/Config.in
    	package/qt/qt.mk
    	package/sdl/sdl.mk
    	package/sdl_image/sdl_image.mk
    	package/tiff/tiff.mk
    	package/udev/Config.in
    	package/udev/S10udev
    	package/udev/udev.mk
    	package/usbmount/Config.in
    	package/usbmount/usbmount-rules-fix.patch
    	package/usbmount/usbmount.mk
    	package/util-linux/Config.in
    	package/util-linux/util-linux-uclibc-build-fix.patch
    	package/util-linux/util-linux.mk
    	package/wpa_supplicant/wpa_supplicant.mk
    Daniel Burr committed Dec 2, 2013
    Configuration menu
    Copy the full SHA
    28af34d View commit details
    Browse the repository at this point in the history
  2. subversion is a build dependency

    Daniel Burr committed Dec 2, 2013
    Configuration menu
    Copy the full SHA
    59b5501 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2013

  1. Fixes after the merge with buildroot 2011.11:

    * The defconfig files now use the BR2_LINUX_KERNEL_CUSTOM_GIT* functionality and specify busybox 1.18 (1.17 doesn't get enabled by default since it now requires BR2_DEPRECATED).  Also reordered some keys in order to match the match the order of the generated .config file.
    * Restore include files which got merged out
    * Restore fake 'cp' target since it differs from the new 'file' target ('cp' creates a tarball, 'file' copies a pre-existing one)
    * Remove duplicate patches for e2fsprogs and usbmount
    * Change lirc and recovery_aml to use 'linux' instead of 'linux26'
    * Restore host rules which got merged out
    * Restore libjpeg-turbo in place of libjpeg
    Daniel Burr committed Dec 3, 2013
    Configuration menu
    Copy the full SHA
    dd94bb7 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2014

  1. [aml] Fix building of SDL host version

    * Add patch from https://bugzilla.libsdl.org/show_bug.cgi?id=1769 to allow the host version of SDL to compile with recent xorg headers.  This patch was committed upstream to the 1.2 branch on 2013-06-06 but the most recent 1.2 release appears to be 1.2.15 (2012-01-20).
    * Run autogen.sh in order to get updated configure script
    Daniel Burr committed Feb 23, 2014
    Configuration menu
    Copy the full SHA
    abe57d3 View commit details
    Browse the repository at this point in the history
  2. [aml] Fix xbmc linking with libsmbclient.so

    Remove the third party 'samba30' package and switch xbmc to use the mainline 'samba' package instead.  The samba30 package was not copying the libsmbclient.so.0 symlink into the target and so xbmc could not start.
    Daniel Burr committed Feb 23, 2014
    Configuration menu
    Copy the full SHA
    dd4f13d View commit details
    Browse the repository at this point in the history
  3. [aml] Fix playback with amlplayer

    libamcodec.so should be a relative link, not absolute
    Daniel Burr committed Feb 23, 2014
    Configuration menu
    Copy the full SHA
    51eb0ad View commit details
    Browse the repository at this point in the history
  4. [aml] Fix compilation when using autopoint

    The host version of autopoint was being used because AUTOPOINT is
    not defined, leading to build failures such as this (with util-linux
    2.20.1):
    
    autopoint: *** Missing version: please specify in configure.ac through a line 'AM_GNU_GETTEXT_VERSION(x.yy.zz)' the gettext version the package is using
    autopoint: *** Stop.
    Daniel Burr committed Feb 23, 2014
    Configuration menu
    Copy the full SHA
    0de8801 View commit details
    Browse the repository at this point in the history
  5. [aml] Use target version of libusb-config in lirc

    Fix compilation of the lirc package in cases where
    the build host has a different version of libusb-config
    Daniel Burr committed Feb 23, 2014
    Configuration menu
    Copy the full SHA
    e51587f View commit details
    Browse the repository at this point in the history
  6. [aml] Merge commit 'dd94bb7be6aca33073609cf3b856ef54fcf42e0b' into ti…

    …dy-2011.11
    
    Conflicts:
    	configs/amlogic_xios_m3-xbmc_defconfig
    Daniel Burr committed Feb 23, 2014
    Configuration menu
    Copy the full SHA
    426d3ac View commit details
    Browse the repository at this point in the history
  7. [aml] Rename xios to xios-skin

    Fix xios-skin package: it seems that newer versions of buildroot require
    that the package name matches the directory name
    Daniel Burr committed Feb 23, 2014
    Configuration menu
    Copy the full SHA
    2f22fc6 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2014

  1. [aml] Remove conflicting thirdparty packages

    Buildroot 2011.11 provides packages for bluez_utils and yajl so the
    thirdparty versions need to be removed
    Daniel Burr committed Feb 24, 2014
    Configuration menu
    Copy the full SHA
    ffa6fe1 View commit details
    Browse the repository at this point in the history
  2. [aml] Merge tag '2011.05' from official buildroot git tree

    Conflicts:
    	package/connman/S45connman
    	package/connman/connman.mk
    	package/iproute2/iproute2.mk
    	package/jpeg/jpeg.mk
    	package/ntfs-3g/ntfs-3g.mk
    	package/pkg-gentargets.mk
    	package/proftpd/proftpd.mk
    	package/tiff/tiff.mk
    	package/udev/Config.in
    	package/udev/udev.mk
    	toolchain/toolchain-common.in
    	toolchain/toolchain-external/ext-tool.mk
    Daniel Burr committed Feb 24, 2014
    Configuration menu
    Copy the full SHA
    8156575 View commit details
    Browse the repository at this point in the history
  3. [aml] Merge tag '2012.05' from official buildroot git tree

    Conflicts:
    	package/connman/S45connman
    	package/connman/connman.mk
    	package/iproute2/iproute2.mk
    	package/jpeg/jpeg.mk
    	package/ntfs-3g/ntfs-3g.mk
    	package/pkg-gentargets.mk
    	package/proftpd/proftpd.mk
    	package/tiff/tiff.mk
    	package/udev/Config.in
    	package/udev/udev.mk
    	toolchain/toolchain-common.in
    	toolchain/toolchain-external/ext-tool.mk
    Daniel Burr committed Feb 24, 2014
    Configuration menu
    Copy the full SHA
    069acc8 View commit details
    Browse the repository at this point in the history
  4. [aml] Fixes after the merge with buildroot 2012.05:

    * Buildroot 2012.05 provides a package for boost so remove the thirdparty version
    * BR2_KERNEL_MIRROR is supposed to point to kernel.org, not github
    * Add m4-1.4.16-no-gets.patch
    * Regenerate udev patches against udev-182
    * toolchainfile.cmake is now generated in $(HOST_DIR)/usr/share/buildroot/
    * Remove sdl-fix__XGetRequest_undefined.patch because it is now included upstream
    * Host version of sdl needs a host version of alsa-lib
    * Build static host version of libpython
    Daniel Burr committed Feb 24, 2014
    Configuration menu
    Copy the full SHA
    b4cc0b9 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2014

  1. [aml] Fix lirc package for cross-compilation

    If the toolchain is changed then binutils may have a different prefix
    Daniel Burr committed Feb 25, 2014
    Configuration menu
    Copy the full SHA
    1c61e7d View commit details
    Browse the repository at this point in the history
  2. [aml] Bump package versions

    The previous versions of GDB and Busybox no longer exist on buildroot
    2012.05
    Daniel Burr committed Feb 25, 2014
    Configuration menu
    Copy the full SHA
    bb7fd30 View commit details
    Browse the repository at this point in the history
  3. Merge commit 'bb7fd30' into 2012.05

    Daniel Burr committed Feb 25, 2014
    Configuration menu
    Copy the full SHA
    359fb6e View commit details
    Browse the repository at this point in the history
  4. [aml] Merge tag '2012.11' from official buildroot git tree

    Conflicts:
    	Config.in
    	Makefile
    	linux/linux.mk
    	package/alsa-lib/alsa-lib.mk
    	package/hostapd/hostapd.mk
    	package/sdl/sdl.mk
    	package/sdl_image/sdl_image.mk
    	package/tiff/tiff.mk
    	package/wpa_supplicant/wpa_supplicant.mk
    	system/skeleton/etc/resolv.conf
    Daniel Burr committed Feb 25, 2014
    Configuration menu
    Copy the full SHA
    96ebb3f View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2014

  1. [aml] Fixes after the merge with buildroot 2012.11:

    * Switch to custom toolchain since BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM2010Q1 has been removed but the kernel does not appear to work with anything else
    * Use generic-package instead of GENTARGETS in thirdparty packages
    * Use autotools-package instead of AUTOTARGETS in thirdparty packages
    * Use cmake-package instead of CMAKETARGETS in thirdparty packages
    * Don't use explicitly named sourceforge mirrors because BR2_SOURCEFORGE_MIRROR was eliminated in 2012.08
    Daniel Burr committed Feb 26, 2014
    Configuration menu
    Copy the full SHA
    55718de View commit details
    Browse the repository at this point in the history
  2. [aml] Merge tag '2013.11' from official buildroot git tree

    Conflicts:
    	.gitignore
    	fs/Config.in
    	linux/linux.mk
    	package/Config.in
    	package/avahi/busybox-udhcpc-default.script
    	package/jpeg/jpeg.mk
    	package/mysql_client/Config.in
    	package/pkg-download.mk
    	package/proftpd/proftpd.mk
    	package/qt/qt.mk
    	package/sdl/sdl.mk
    	package/sdl_image/sdl_image.mk
    	package/wpa_supplicant/wpa_supplicant.mk
    	toolchain/gdb/Config.in
    Daniel Burr committed Feb 26, 2014
    Configuration menu
    Copy the full SHA
    b782f9f View commit details
    Browse the repository at this point in the history
  3. [aml] Fixes after the merge with buildroot 2013.11:

    * Remove dbus-1-glib-fix-marshalling-regression.patch since it is now included upstream
    * Remove m4-1.4.15-fgets.patch since it is now included upstream
    * Remove usbmount-use-udev-environment-instead-of-blkid.patch because it would make the usbmount-0001-if-devinfo-is-empty-ensure-variable-is-empty.patch and usbmount-0003-usbmount-use-fs-label-as-mount-point.patch patches redundant
    * Fix qt-4.7.4-simplegl.patch after update to QT 4.8.5
    * Remove third party packages (libcec, libssh2, tvheadend) to prevent them from clashing with the mainline versions
    * depmod moved from /usr/sbin to /sbin
    * Use jpeg-turbo package
    Daniel Burr committed Feb 26, 2014
    Configuration menu
    Copy the full SHA
    81f69d7 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2014

  1. [aml] Fix amcodec symlink for M1

    Adapt changeset 51eb0ad497e3009789be017a75eb5370c7d78c24f for the M1
    Daniel Burr committed Feb 28, 2014
    Configuration menu
    Copy the full SHA
    fa27f26 View commit details
    Browse the repository at this point in the history
  2. [aml] Restore BR2_PACKAGE_UTIL_LINUX_MOUNT

    Changeset 81f69d7 incorrectly removed BR2_PACKAGE_UTIL_LINUX_MOUNT.  We also need to define BR2_PACKAGE_UTIL_LINUX_BINARIES for it to be selectable.
    Daniel Burr committed Feb 28, 2014
    Configuration menu
    Copy the full SHA
    f199161 View commit details
    Browse the repository at this point in the history
  3. [aml] Restore BR2_EXT_TOOL_DIRS_EXTRA functionality

    Changeset 8156575 incorrectly removed the BR2_EXT_TOOL_DIRS_EXTRA functionality, which meant that /usr/lib/gconv and /usr/share/zoneinfo were not being copied to the target.
    Daniel Burr committed Feb 28, 2014
    Configuration menu
    Copy the full SHA
    b4239dc View commit details
    Browse the repository at this point in the history
  4. [aml] Define BR2_PACKAGE_TZDATA

    Newer versions of buildroot provide the tzdata package to copy the time zone data, so we don't need to use BR2_EXT_TOOL_DIRS_EXTRA to copy /usr/share/zoneinfo
    Daniel Burr committed Feb 28, 2014
    Configuration menu
    Copy the full SHA
    1df7dda View commit details
    Browse the repository at this point in the history
  5. Revert "[aml] Define BR2_PACKAGE_TZDATA"

    The tzdata package does not copy the zone.tab file that xbmc uses.
    This reverts commit 1df7dda.
    Daniel Burr committed Feb 28, 2014
    Configuration menu
    Copy the full SHA
    7ebcb77 View commit details
    Browse the repository at this point in the history
  6. [aml] Add /run directory

    udev 174 and later creates the control socket in /run/udev/control so we need to add /run to our skeleton filesystem
    Daniel Burr committed Feb 28, 2014
    Configuration menu
    Copy the full SHA
    9b6fa25 View commit details
    Browse the repository at this point in the history
  7. [aml] Fix USB mounting

    * Restore usbmount-use-udev-environment-instead-of-blkid.patch (incorrectly removed in 81f69d7)
    * Remove usbmount-0001-if-devinfo-is-empty-ensure-variable-is-empty.patch because usbmount-use-udev-environment-instead-of-blkid.patch makes it redundant
    * Update usbmount-0003-usbmount-use-fs-label-as-mount-point.patch to use udev environment instead of blkid
    * Put scripts in /etc/usbmount/[u]mount.d instead of /etc/usbmount/usbmount.d
    Daniel Burr committed Feb 28, 2014
    Configuration menu
    Copy the full SHA
    304ea99 View commit details
    Browse the repository at this point in the history