summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* utils/scancpan: print package/Config.in only when usefulFrancois Perrad2018-11-011-16/+22
| | | | | | | | | | | | Currently, utils/scancpan always outputs what should be placed in package/Config.in to include all Perl packages Config.in files. However, in practice, this is only useful when a new package is added. This commit adjusts this behavior so that what should be place in package/Config for Perl packages is only displayed when scancpan has produced a new Buildroot package for a Perl module. Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/python-pip: needs python-setuptoolsAsaf Kahlon2018-11-011-0/+1
| | | | | | | pip needs pkg_resources, which is installed with setuptools. Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* fs/common: always depend on build host-tar if neededYann E. MORIN2018-11-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, the filesystems do not depend on building host-tar when it is needed, even though all of them have to extract the intermediate tarball. However, in degenerate (but legally valid) configurations with no user-selectable package selected, host-tar would not be built, so the rootfs images would use whatever improper tar the system has. Add the conditional dependency to host-tar to the rootfs-common intermediate image. Since this is the internal step that all real rootfs generators depend on, they now properly depend on host-tar when needed. In practice, when host-tar is needed, it will always be built before the rootfs images, because it is a dependency of all packages (except a very few, like the skeleton), of which host-fakeroot, which is a mandatory dependency of rootfs-comon anyway. But for consistency sake, let's explicitly add host-tar as a dependency to rootfs-common too. Note that rootfs-tar already had that dependency, and we leave it as-is because it is semantically correct, even if superfluous. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/pkg-generic: add host-tar dependency for downloads from repositoriesYann E. MORIN2018-11-011-0/+4
| | | | | | | | | | | | | | | Three of our download backends need a host tar that can generate reproducible archives: cvs, git, and svn. The other two, bzr and hg, use their internal implementation. So, for those three that need it, and a dependency on host-tar when the system tar is not appropriate. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/pkg-genric: add possibility to declare download dependenciesYann E. MORIN2018-11-011-0/+3
| | | | | | | | | | | | | | | | | | For some packages, we may need to have a certain set of host-tools built before the download of said packages are attempted. For example, when the system tar is not suitable, we will want to build our own tar before we attempt a git download (because we generate a tarball in the git backend). Mimick the _EXTRACT_DEPENDENCIES, and introduce _DOWNLOAD_DEPENDENCIES. As for _EXTRACT_DEPENDENCIES, we do not document _DOWNLOAD_DEPENDENCIES, on the assumption that it is mostly for internal use. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/pkg-generic: postpone evaluation of dependency conditionsYann E. MORIN2018-11-011-10/+10
| | | | | | | | | | | | | | | | | | | In the pkg-inner macros, all variables, but the positional arguments, must be $$-prefixed, so that they are expanded only when the macro is evaluated in each package, not when the macro is parsed. It is to be noted, though, that the current code, even though incorrect by the above rules, seemed to work. However, the upcoming addition of download dependencies, mimicking that code, would not work unless it was $$-prefixed. So, for consistency sake, and for correctness sake, let's always use the $$-prefix in the inner macro. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* meson: re-add patch for skipping RPATH fixingEric Le Bihan2018-11-011-0/+32
| | | | | | | | | | | | | | | The patch to skip RPATH fixing performed by Meson was removed in commit a03f46ca6e9f43028003aedc92f1a1204ae7480f, as the script support/scripts/check-host-rpath was not complaining anymore. But without it, the problem still occurs for host packages [1]. So, restore this patch to fix build of host packages with Meson. [1] http://lists.busybox.net/pipermail/buildroot/2018-October/232956.html Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* python-django: bump to version 2.1.3Asaf Kahlon2018-11-012-4/+4
| | | | | Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* lua-curl: fix build with libcurl 7.62.0Baruch Siach2018-11-011-0/+58
| | | | | | | | | | | | | | The last libcurl bump changed error code definitions in a way that breaks lua-curl build. Add a patch to fix that. Fixes: http://autobuild.buildroot.net/results/fa6/fa6e289162124b3e079c4a2d9c3f00910c8cc063/ http://autobuild.buildroot.net/results/7b9/7b962a63630abaed21d99f719c1bd710ec4d4b28/ http://autobuild.buildroot.net/results/c5b/c5b2a7f21259bbf79861bd95a2d7ca055920bf09/ Cc: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/libv4l: renumber patchesThomas Petazzoni2018-11-011-0/+0
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/libv4l: bump version to 1.16.1Peter Seiderer2018-11-015-118/+4
| | | | | | | | | | | | | | | | | | | | | | | Removed patches: - 0003-libdvbv5-add-optional-copy-of-TEMP_FAILURE_RETRY-mac.patch (Upstream accepted, see [1]) - 0005-libv4lconvert-fix-compiler-warning.patch (From upstream, see [2]) - 0006-v4l2-ctl-fix-glibc-2.28-build.patch (From upstream, see [3]) Disable new qvidcap for now. [1] https://git.linuxtv.org/v4l-utils.git/commit/?id=c28248deeb2d7fe43fcde948c00b9b8fa2bc1e8f [2] https://git.linuxtv.org/v4l-utils.git/commit/?id=380fe7d4548a99bfcfc1594b6f0b3dd2369978f1 [3] https://git.linuxtv.org/v4l-utils.git/commit/?id=65e7b2a4076845d3932b88cb9c76f1fa4b78c32c Signed-off-by: Peter Seiderer <ps.report@gmx.net> [Thomas: pass --disable-qvidcap only once.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* cargo-bin: bump version to 0.30.0Eric Le Bihan2018-11-012-7/+10
| | | | | | | | | | Bump version to 0.30.0. The signature of the tarballs have been verified and their hash compared to the upstream reference. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/pdbg: bump to version v2.0Joel Stanley2018-11-012-2/+2
| | | | | Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/alsa-utils: install systemd service filesPeter Seiderer2018-11-011-0/+14
| | | | | Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/perl-*: regeneration of Config.in files with full stopFrancois Perrad2018-11-0196-97/+97
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* utils/scancpan: add a full stop to the help text when missingFrancois Perrad2018-11-011-0/+1
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* lua-compat53: bump to version 0.7Jörg Krause2018-11-012-2/+2
| | | | | Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* pppd: fix build with glibc 2.28Fabrice Fontaine2018-11-014-1/+156
| | | | | | | | | | | | | | | | | | | | | | Since glibc 2.28 (https://savannah.gnu.org/forum/forum.php?forum_id=9205), the obsolete functions encrypt, encrypt_r, setkey, setkey_r, cbc_crypt, ecb_crypt, and des_setparity are no longer available to newly linked binaries, and the headers <rpc/des_crypt.h> and <rpc/rpc_des.h> are no longer installed. These functions encrypted and decrypted data with the DES block cipher, which is no longer considered secure. Software that still uses these functions should switch to a modern cryptography library, such as libgcrypt. So retrieve an upstream patch to use openssl instead of these functions and a new patch to remove the unsafe header/library path '-I/usr/include/openssl' Fixes: - http://autobuild.buildroot.org/results/c13ca8b8afa8de700caf8cd2fa1812b8552b3f4a Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* configs/amarula_a64_relic: add WiFi supportJagan Teki2018-11-013-0/+105
| | | | | | | | | | | | | | Amarula A64-Relic board has AP6330 WiFi/BT combo, but does not have ethernet port. So it makes sense to enable wireless networking by default: - add broadcom wireless firmware package to image - add basic wireless tools to image - add rootfs overlay with proper NVRAM file for on-board AP6330 chip - add mdev to image to enable module autoloading - update readme.txt to test wifi Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* configs/amarula_a64_relic: new defconfigJagan Teki2018-11-017-0/+150
| | | | | | | | | | | | | Add initial support for Amarula A64-Relic board with below features: - U-Boot 2018.07 - Linux 4.17.0-rc6 - Default packages from buildroot Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> [Thomas: add missing BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y and BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y options.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* gnupg2: bump to version 2.2.10Baruch Siach2018-11-012-5/+6
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libgcrypt: bump to version 1.8.4Baruch Siach2018-11-014-32/+6
| | | | | | | | | | Drop patch 0001. We patch the configure script directly in patch 0002, and we don't autoreconf. So this patch has no effect (never had). Rename patch 0002. The next version bump should drop this patch as well. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libnpth: bump to version 1.6Baruch Siach2018-11-012-2/+4
| | | | | | Cc: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libgpgme: bump to version 1.12.0Baruch Siach2018-11-012-5/+6
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libgpg-error: bump to version 1.32Baruch Siach2018-11-012-3/+4
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libgpg-error: enable riscv64 supportBaruch Siach2018-11-011-3/+6
| | | | | | | | libgpg-error version 1.28 added support for riscv64. Cc: Mark Corbin <mark.corbin@embecosm.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* python-async-timeout: add missing blank line in .mk fileThomas Petazzoni2018-11-011-0/+1
| | | | | | | | Fixes the following check-package warning: package/python-async-timeout/python-async-timeout.mk:6: should be a blank line (http://nightly.buildroot.org/#writing-rules-mk) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* python-yarl: add missing blank line in .mk fileThomas Petazzoni2018-11-011-0/+1
| | | | | | | | Fixes the following check-package warning: package/python-yarl/python-yarl.mk:6: should be a blank line (http://nightly.buildroot.org/#writing-rules-mk) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* python-async-timeout: new packageJames Hilliard2018-11-015-0/+27
| | | | | | | | asyncio-compatible timeout context manager. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* DEVELOPERS: add James Hilliard for python-multidictArnout Vandecappelle (Essensium/Mind)2018-11-011-0/+1
| | | | This was forgotten when the python-multidict package was added.
* python-yarl: new packageJames Hilliard2018-11-015-0/+31
| | | | | | | | Yet another URL library Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* python-scapy: new packageAsaf Kahlon2018-11-014-0/+28
| | | | | | | | Interactive packet manipulation tool. Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* python-multidict: new packageJames Hilliard2018-11-014-0/+28
| | | | | | | | | | Multidict is dict-like collection of key-value pairs where a key may occur more than once in the container. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> [Arnout: extend help text based on commit message.] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* python-uvloop: new packageAsaf Kahlon2018-11-014-0/+42
| | | | | | | | | Fast implementation of asyncio event loop on top of libuv. Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> [Arnout: change order of 'depends on' lines] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* libxmlpp: bump to version 3.0.1Fabrice Fontaine2018-10-312-3/+6
| | | | | | | Add hash for license file Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libxmlrpc: bump to version 1.43.08Fabrice Fontaine2018-10-316-84/+5
| | | | | | | | | | | | | | | - Remove first patch and pass CC_FOR_BUILD and other variables in LIBXMLRPC_CONF_OPTS instead of LIBXMLRPC_CONF_ENV because a similar solution is already in version thanks to https://sourceforge.net/p/xmlrpc-c/code/2905 - Remove second patch (already in version thanks to https://sourceforge.net/p/xmlrpc-c/code/2908) - Remove third path (already in version thanks to https://sourceforge.net/p/xmlrpc-c/code/2909) - Add hash for license file Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* uclibc: fix mkostempCarlos Santos2018-10-311-0/+38
| | | | | | | | | | | | | | | Pull a patch already submitted upstream[1] that fixes mkostemp when _LARGEFILE64_SOURCE is defined. This is required to prevent failures on eudev[2]: # udevadm hwdb --update Failure writing database //etc/udev/hwdb.bin: Invalid argument 1. https://patchwork.ozlabs.org/patch/990045/ 2. https://patchwork.ozlabs.org/patch/984848/ Signed-off-by: Carlos Santos <casantos@datacom.com.br> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* webkitgtk: bump to version 2.22.3Adrian Perez de Castro2018-10-313-46/+5
| | | | | | | | | | | | | | | | Release notes: https://webkitgtk.org/2018/10/29/webkitgtk2.22.3-released.html Patch "0001-ARM-Building-FELightingNEON.cpp-fails-due-to-missing.patch" is removed because it is included in the new release. This is a maintenance release which further improves playback of video when using media source extensions (MSE), specially for WebM content, and provides a few correctness fixes. Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* python-zope-interface: bump to version 4.6.0Asaf Kahlon2018-10-312-4/+4
| | | | | Signed-off-by: Asaf Kahlon <asafka7@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lighttpd: adjust Config.in to make check-package happyThomas Petazzoni2018-10-311-5/+5
| | | | | | | | | | | | | | | | | Commit b9d75c717e01aed474b7567c969236418e87eda8 ("lighttpd: add optional pam support") introduced a new Config.in option, but check-package was not happy about it: package/lighttpd/Config.in:30: should be indented with one tab (http://nightly.buildroot.org/#_config_files) package/lighttpd/Config.in:31: should be indented with one tab (http://nightly.buildroot.org/#_config_files) package/lighttpd/Config.in:32: attributes order: type, default, depends on, select, help (http://nightly.buildroot.org/#_config_files) package/lighttpd/Config.in:32: should be indented with one tab (http://nightly.buildroot.org/#_config_files) package/lighttpd/Config.in:33: should be indented with one tab (http://nightly.buildroot.org/#_config_files) package/lighttpd/Config.in:34: help text: <tab><2 spaces><62 chars> (http://nightly.buildroot.org/#writing-rules-config-in) This commit fixes those indentation and ordering issues. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* webkitgtk: add an option to control USE_GSTREAMER_GLAdrian Perez de Castro2018-10-312-0/+22
| | | | | | | | | | | | | | | | | | This covers the case where GL/GLES is available (so -DENABLE_OPENGL=ON gets passed), which makes the webkitgtk build system assume GStreamer-GL is available, while actually it is not. Also, providing an option to manually disable usage of GStremer-GL can help with certain target configurations in which using OpenGL for video handling might result in incorrect rendering. This fixes some autobuilder failures like the following: http://autobuild.buildroot.net/results/187796535af53ece426641ff7d88aabada281674 http://autobuild.buildroot.net/results/00c1a8ea23a99728a4f3f4478705f2383414ae41 Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* go: bump to v1.11.1Christian Stewart2018-10-312-2/+2
| | | | | | | Bumps Golang host-go compiler to 1.11.1 release. Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* lighttpd: add optional pam supportPeter Korsgaard2018-10-312-1/+14
| | | | | | | | Let the option depend on linux-pam as pam has quite some dependencies and this is unlikely to be used if pam isn't explicitly enabled. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* wolfssl: install into stagingPeter Korsgaard2018-10-311-0/+1
| | | | | | | | wolfssl is a library, so it should be installed into staging so other packages can find the header files / library. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* libcurl: security bump to version 7.62.0Peter Korsgaard2018-10-312-3/+3
| | | | | | | | | | | | | | | | Fixes the following security issues: CVE-2018-16839: SASL password overflow via integer overflow https://curl.haxx.se/docs/CVE-2018-16839.html CVE-2018-16840: use-after-free in handle close https://curl.haxx.se/docs/CVE-2018-16840.html CVE-2018-16842: warning message out-of-buffer read https://curl.haxx.se/docs/CVE-2018-16842.html Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* python-typing: rewrap Config.in help textThomas Petazzoni2018-10-311-2/+2
| | | | | | | | Fixes the following check-package warning: package/python-typing/Config.in:5: help text: <tab><2 spaces><62 chars> (http://nightly.buildroot.org/#writing-rules-config-in) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* luarocks: bump to version 3.0.4Francois Perrad2018-10-312-2/+2
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/network-manager: Add upstream patch to fix CVE-2018-15688Bernd Kuhls2018-10-301-0/+38
| | | | | | | | | | | | | | | | | NetworkManager includes some parts of the systemd-networkd code in its codebase. That can be found at src/systemd/src/libsystemd-networkd. The DHCP implementation provided by systemd-networkd is used when NetworkManager is configured to use the internal implementation, however the default is to use dhclient. When NetworkManager is configured to use the internal dhcp and an interface is setup with ipv6.method=auto (which is the default value) or ipv6.method=dhcp, this flaw can be exploited. When using ipv6.method=auto, the DHCPv6 client can be automatically started with a Router Advertisement packet. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/network-manager: bump version to 1.10.8Bernd Kuhls2018-10-302-3/+6
| | | | | | | Added license hashes. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/{at91, atmel}*_dev*: drop Dropbear as it duplicates OpenSSHThomas Petazzoni2018-10-308-8/+0
| | | | | | | | | | | | | | | | | | | | | | The "development" defconfigs for Atmel platforms enable both OpenSSH and Dropbear, which doesn't make a lot of sense, as only one SSH server can start on port 22. This commit therefore drops BR2_PACKAGE_DROPBEAR=y from those defconfigs, keeping OpenSSH as an SSH server/client, as was requested by Atmel/Microchip folks in the review of an earlier version of this patch [1]. Since those defconfigs are "development" defconfigs, they are not meant to be minimal, and already provide an arbitrary set of packages, so using openssh is just as good as using dropbear in this case. [1] https://patchwork.ozlabs.org/patch/989516/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Nicolas Ferre <nicolas.ferre@microchip.com> Cc: Joshua Henderson <joshua.henderson@microchip.com> Cc: Ludovic Desroches <ludovic.desroches@microchip.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud