summaryrefslogtreecommitdiffstats
path: root/package/openswan
Commit message (Collapse)AuthorAgeFilesLines
* openswan: bump to version 2.56.1.1Fabrice Fontaine2018-10-302-2/+2
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openswan: security bump to version 2.6.50.1Fabrice Fontaine2018-10-302-2/+4
| | | | | | | | | - Fixes CVE-2018-15836 (a Bleichenbacher-style signature forgery which involves RSA padding attack) - Add hash for license files Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openswan: disable documentationFabrice Fontaine2018-10-301-1/+1
| | | | | | | | | | Disable pod2man and xmlto which are used to build man pages Fixes: - http://autobuild.buildroot.org/results/2268814b8f5a071ecec1aab962b50a1edcb818d7 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/openswan: bump version to 2.6.50Bernd Kuhls2017-09-223-42/+3
| | | | | | | | | | Removed patch applied upstream: https://github.com/xelerance/Openswan/commit/0d78578d7f64c433324aa83248d11bd38f91c971 Switched _SITE to https. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iproute2: needs kernel headers 3.4+Baruch Siach2017-06-041-3/+3
| | | | | | | | | | | | iproute2 needs the __kernel_long_t and __kernel_ulong_t types that were introduced in kernel v3.4. Fixes: http://autobuild.buildroot.net/results/823/823f0dbe17999c07134fac5a0620e3ad15362204/ http://autobuild.buildroot.net/results/a79/a797a6e3d193fa70abd59411df21657a1c0a45d4/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boot, package: use SPDX short identifier for BSD-3cRahul Bedarkar2017-04-011-1/+1
| | | | | | | | | | | We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boot, linux, package: use SPDX short identifier for GPLv2/GPLv2+Rahul Bedarkar2017-04-011-1/+1
| | | | | | | | | | | We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: fix autobuild failures with uClibc-ngWaldemar Brodkorb2017-02-141-0/+39
| | | | | | | | | | | Add patch to fix following autobuild failures: Fixes: http://autobuild.buildroot.net/results/31cf680c48bec8ba4450a6fe2156cb441c4dd660 http://autobuild.buildroot.net/results/95220f231810cb12ba97a6b44af79f84af706c82 Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openswan: remove duplicate word toolchain from commentRahul Bedarkar2016-10-191-1/+1
| | | | | Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openswan: not available on muslBernd Kuhls2016-08-291-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | After fixing the usual sys/cdefs.h and _P stuff the build still fails because Openswan makes use of GLOB_ functions /home/bernd/buildroot/br4/output/build/openswan-2.6.48/lib/libipsecconf/parser.l:200:29: error: ‘GLOB_BRACE’ undeclared (first use in this function) globresult = glob(try, GLOB_BRACE, NULL, &globbuf); ^ /home/bernd/buildroot/br4/output/build/openswan-2.6.48/lib/libipsecconf/parser.l:200:29: note: each undeclared identifier is reported only once for each function it appears in /home/bernd/buildroot/br4/output/build/openswan-2.6.48/lib/libipsecconf/parser.l:207:41: error: ‘GLOB_NOMAGIC’ undeclared (first use in this function) globresult = glob(try, GLOB_BRACE|GLOB_NOMAGIC, NULL, &globbuf); https://github.com/xelerance/Openswan/blob/master/lib/libipsecconf/parser.l#L200 https://github.com/xelerance/Openswan/blob/master/lib/libipsecconf/parser.l#L207 [...] ^ which musl does not support: http://www.openwall.com/lists/musl/2013/09/16/1 Fixes http://autobuild.buildroot.net/results/70d/70da34c1528b51e92e9e60788f83733d70b33353/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain: add hidden symbol for PIE supportWaldemar Brodkorb2016-07-241-2/+2
| | | | | | | | | | | | | uClibc-ng does not support PIE for some architectures as arc and m68k. It isn't implemented in the static linking case, too. With musl toolchains you might have static PIE support with little patching of gcc. Static linking for GNU libc isn't enabled in buildroot. Fixup any package using special treatment of PIE. (grep -ir pie package/*/*.mk) Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> [Thomas: use positive logic.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openswan: bump version to 2.6.46Bernd Kuhls2016-01-312-3/+3
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openswan: security bump to version 2.6.45Gustavo Zacarias2015-09-042-2/+2
| | | | | | | | | | Fixes: CVE-2015-3240 - IKE DoS when using NSS. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iproute2: needs headers >= 3.0Gustavo Zacarias2015-07-281-0/+5
| | | | | | | | | | | The newest iproute2 version requires a toolchain with headers >= 3.0 for proper namespace & bpf support, so adjust the dependencies and dependants accordingly. Fixes: http://autobuild.buildroot.net/results/fa8/fa810f310c7540e02c0ed84c4a3ce74ab602daa5/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openswan: fix parallel buildYann E. MORIN2015-07-141-2/+2
| | | | | | | | | | | Fixes: http://autobuild.buildroot.org/results/2ec/2ecb098b01bd44d75182b15f98c1fd2a8c927438/ http://autobuild.buildroot.org/results/18f/18f0166f3fa831f321818e286d9c2e9037f8c8d0/ ... Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: bump to version 2.6.43Gustavo Zacarias2015-06-262-2/+2
| | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* packages: indentation cleanupJerzy Grzegorek2015-03-311-5/+5
| | | | | | | This commit doesn't touch infra packages. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: do not use -fPIE for static buildsVicente Olivert Riera2015-03-051-2/+3
| | | | | | | | | | | | | | | | | | | -fPIE produces shared objects, and shared objects need "/lib/ld.so" which won't be present on a statically built target. So, building openswan with -static -fPIE is invalid and will fail with an error like this one: /br/output/host/opt/ext-toolchain/bin/../lib/gcc/mipsel-ctng-linux-uclibc/4.8.2/../../../../mipsel-ctng-linux-uclibc/bin/ld: /br/output/host/usr/mipsel-buildroot-linux-uclibc/sysroot/usr/lib/libgmp.a(lt2-add.o): relocation R_MIPS_HI16 against `__gnu_local_gp' can not be used when making a shared object; recompile with -fPIC Fixes: http://autobuild.buildroot.net/results/68b/68b2211cc7acfbdfed8d4b161cbdaf1429315017/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: re-add -fPIE flagThomas Petazzoni2015-03-041-1/+1
| | | | | | | | This flag was mistakenly removed in unrelated commit 5287358ff33ec4920a677a58152ad040151b843f. Reported-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kodi: Use i.MX VPU (video codec) when availableJulien Boibessot2015-03-041-1/+1
| | | | | | | | | | Tested on i.MX6. [Thomas: drop comment in Config.in help text, hard to maintain for all platforms.] Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: bump to version 2.6.42Gustavo Zacarias2014-10-223-44/+3
| | | | | | | | Add hash file. Patch upstream in common Makefile. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_MAKE_OPT into FOO_MAKE_OPTSThomas De Schampheleire2014-10-041-6/+6
| | | | | | | | | | | | | | | | | | | | | While the autotools infrastructure was using FOO_MAKE_OPT, generic packages were typically using FOO_MAKE_OPTS. This inconsistency becomes a problem when a new infrastructure is introduced that wants to make use of FOO_MAKE_OPT(S), and can live alongside either generic-package or autotools-package. The new infrastructure will have to choose between either OPT or OPTS, and thus rule out transparent usage by respectively generic packages or generic packages. An example of such an infrastructure is kconfig-package, which provides kconfig-related make targets. The OPTS variant is more logical, as there are typically multiple options. This patch renames all occurrences of FOO_MAKE_OPT in FOO_MAKE_OPTS. Sed command used: find * -type f | xargs sed -i 's#_MAKE_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: needs host-flexGustavo Zacarias2014-07-211-1/+1
| | | | | | | | | | Although parser.l is shipped it seems it might get regenerated from parser.y sometimes and an old installed flex might not be good enough. Fixes: http://autobuild.buildroot.net/results/e59/e5970eae28d01503d89a5d4e593711d7a27da8b5/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: fix possible build failureGustavo Zacarias2014-04-031-0/+43
| | | | | | | | | | openswan's Makefile uses gcc instead of $(CC) for gcc version detection to use advanced warning/error options. The problem is that if the host gcc version is newish (>=4.6) and the gcc for the target is not it uses unsupported options. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: security bump to version 2.6.41Gustavo Zacarias2014-03-121-1/+1
| | | | | | | Fixes CVE-2014-2037 (continuation of CVE-2013-6466 issues). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openswan: security bump to version 2.6.40Gustavo Zacarias2014-02-252-30/+1
| | | | | | | | | Fixes CVE-2013-6466. openswan-wno-error-cpp.patch is no longer required since it's now conditional on a check for a modern enough compiler. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openswan: Restore -fPIE to USERCOMPILE flagsMarkos Chandras2013-06-271-1/+1
| | | | | | | | | | | | | The default USERCOMPILE variable uses -fPIE so we bring this back. This also fixes linking problems for MIPS when non-PIC objects are used to form a PIC one. Fixes the following linking problem on MIPS: connections.o: relocation R_MIPS_HI16 against `__gnu_local_gp' can not be used when making a shared object; recompile with -fPIC Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openswan: fix older gcc build failureGustavo Zacarias2013-06-111-0/+29
| | | | | | | | | | | Older gcc versions (< 4.4) don't accept cpp as -Werror / -Wno-error parameters. Disable it since it's not yet a default with any version and we don't do -Werror by default. Fixes: http://autobuild.buildroot.net/results/977/9779215c4dfb68dc105f27097246a97851b1f6c2/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openswan: security bump to version 2.6.39Gustavo Zacarias2013-06-101-1/+1
| | | | | | | Fixes CVE-2013-2054. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openswan: fix OCF support detectionGustavo Zacarias2013-05-051-1/+1
| | | | | | | | Now that the openssl OCFs option is gone we need to switch to the package option. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openswan: add missing TARGET_MAKE_ENVThomas Petazzoni2013-03-251-2/+7
| | | | | | | | | | | openswan needs host-bison. The dependency was already there, but the build was not executed with $(TARGET_MAKE_ENV) in the environment, and therefore $(HOST_DIR)/usr/bin was not in the PATH. While we're at it, add licensing informations to openswan. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: needs mmuGustavo Zacarias2013-03-191-0/+1
| | | | | | | | Fixes http://autobuild.buildroot.net/results/08beca1cae9dc55b2f770a01ad95bcbe56594300/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openswan: new packageGustavo Zacarias2012-05-092-0/+43
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove openswanPeter Korsgaard2010-02-0824-238668/+0
| | | | | | As noticed back when it was marked as broken 1 year ago. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openswan: mark as BROKEN as it doesn't build with current kernel headersPeter Korsgaard2009-02-241-0/+1
| | | | It WILL get removed after 2009.05 unless someone steps up to fix it.
* openswan: tarball moved to old/ subdirPeter Korsgaard2009-01-161-1/+1
|
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* openswan: revert $(strip ...) change (r24307) on patchesPeter Korsgaard2008-12-174-12/+12
| | | | Thanks to Markus for noticing.
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-085-13/+13
|
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-2/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* - add missing includeBernhard Reutner-Fischer2007-09-191-7/+7
|
* - fix args for UDP_INC_STATS_BHBernhard Reutner-Fischer2007-09-191-2/+2
|
* - bump version to 2.4.9Bernhard Reutner-Fischer2007-09-1810-3/+59523
|
* Update openswan package with bugfixesUlf Samuelsson2007-07-235-0/+59566
|
* - need to rename these hunks to come after the base patchesBernhard Reutner-Fischer2007-06-211-0/+0
|
* - version bump (not yet tested..)Bernhard Reutner-Fischer2007-06-215-14/+59665
|
* - fwd portBernhard Reutner-Fischer2007-03-245-0/+0
|
OpenPOWER on IntegriCloud