aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-filter
AgeCommit message (Collapse)Author
2016-11-14libmnl, nftables: Update versionsKhem Raj
libmnl -> 1.0.4 nftables -> 0.6 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2016-10-20nfacct: added nfacct recipe to meta-networkingOliver Graute
this patch adds nfacct to meta-networking Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2016-10-20libnetfilter-acct: added new recipe for libnetfilter-acct 1.0.3Oliver Graute
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2016-08-16libnftnl: 1.0.5 -> 1.0.6Kai Kang
Upgrade libnftnl from 1.0.5 to 1.0.6. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2016-02-29ebtables: enable KERNEL_64_USERSPACE_32 for powerpcRoy Li
Enable KERNEL_64_USERSPACE_32 when powerpc is using 64bit kernel and 32bit userspace. Some structs, which is used to communicate between user space and kernel, have the alignment issue on 64bit kernel with 32 bit userspace. To fix this issue, ebtables redefines these struct, not use the kernel(sysroot) include/uapi/linux/netfilter_bridge/ebtables.h, like ebt_entry_target: The kernel's: struct ebt_entry_target { union { char name[EBT_FUNCTION_MAXNAMELEN]; struct xt_target *target; } u; /* size of data */ unsigned int target_size; unsigned char data[0] __attribute__ ((aligned (__alignof__(struct ebt_replace)))); }; The ebtables: struct ebt_entry_target { union { char name[EBT_FUNCTION_MAXNAMELEN]; struct ebt_target *target; } u; /* size of data */ unsigned int target_size; |#ifdef KERNEL_64_USERSPACE_32 unsigned int pad; |#endif unsigned char data[0] __attribute__ ((aligned (__alignof__(struct ebt_replace)))); }; If the MLPREFIX of package matchs "lib.?32", the 32bit multilib package on 64bit kernel is being built, then enable KERNEL_64_USERSPACE_32. Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-10-21nftables: update nftables userland tools from 0.4 to 0.5Jens Rehsack
Update nftables tools from 0.4 to 0.5, for ChangeLog see http://git.netfilter.org/nftables/log/ Signed-off-by: Jens Rehsack <sno@netbsd.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-10-21libnftnl: update from 1.0.3 to 1.0.5Jens Rehsack
Update libnftnl from 1.0.3 to 1.0.5 (for Changelog see http://git.netfilter.org/libnftnl/log/) Signed-off-by: Jens Rehsack <sno@netbsd.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-10-21libnetfilter: Avoid using VLAsKhem Raj
VLAs in composite data types like structures and unions are not a standard feature of C language, gcc has specific implementations for but other compilers dont have that done specifically clang, and the community refuses to implement it since its non standard. Change-Id: I6ae24adb455bf262fe9406a1c8e3b3a4a0cf77d4 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-09-11conntrack-tools: upgrade to 1.4.2Roy Li
1. upgrade to 1.4.2 2. backport a patch to fix CVE-2015-6496: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-6496 Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-09-11libnetfilter-conntrack: upgrade to 1.0.4Roy Li
Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-06-05meta-networking: standardize SECTION valuesJoe MacDonald
SECTION has been used inconsistently throughout the recipes in this layer. Convert them to all use the same convention. Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-06-05nftables: create nftables recipe under meta-networkingRoy Li
http://netfilter.org/projects/nftables/index.html Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2015-06-05libnftnl: create recipe under meta-networkingRoy Li
libnftnl is needed by nftable, so add it Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2014-10-21ebtables: fix for sysvinit and systemdChen Qi
The solution mainly references Fedora20. Extract the common part of the code and install it into ${sbindir}. Add systemd service file. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2014-06-21recipes: add missing pkgconfig class inheritsRichard Purdie
* These recipes all use pkg-config in some way but were missing dependencies on the tool, this patch adds them. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-15conntrack-tools: inherit autotools-brokensepRobert Yang
It needs autotools-brokensep, otherwise do_install error: install: cannot stat `doc/sync/ftfw/conntrackd.conf': No such file or directory Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2014-05-21conntrack-tools: add depends on bison-nativeJackie Huang
Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-23recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-14libnetfilter-log: add newrecipe for version 1.0.1Matthieu Crapet
This library is usefull for userspace netfilter log messages (c.f. iptables and -j NFLOG target). libnetfilter-conntrack, libnetfilter-cttimeout, libnetfilter-cthelper and libnetfilter-queue are already available since december of 2012. Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
2013-11-01recipes: Remove PR = r0 from all recipesMartin Jansa
* Remove all PR = "r0" from all .bb files in meta-oe repo. This was done with the command sed -e '/^PR.*=.*r0\"/d' meta*/recipes*/*/*.bb -i * We've switching to the PR server, PR bumps are no longer needed and this saves people either accidentally bumping them or forgetting to remove the lines (r0 is the default anyway). Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-07-30ebtables: Load ebtables kernel moduleMihai Prica
Ebtables needs some kernel configs options to work properly. The standard yocto kernel config includes these as modules. Add code to load the ebtables module. Signed-off-by: Mihai Prica <mihai.prica@intel.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2013-04-15recipes: Unify indentationMartin Jansa
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
2013-04-02libnetfilter-queue: Add missing libmnl to DEPENDSKhem Raj
otherwise Errors are seen with sstate | configure:11780: error: Package requirements (libmnl >= 1.0.3) were not met: | | No package 'libmnl' found | | Consider adjusting the PKG_CONFIG_PATH environment variable if you | installed software in a non-standard prefix. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2013-02-25ebtables: move ebtables-save to sbindir to avoid QA issueJackie Huang
Fix the QA issue: WARNING: QA Issue: ebtables: Found a reference to /usr/ in /path/to/tmp/work/x86_64-wrs-linux/ebtables-2.0.10-4-r1/packages-split/ebtables/sbin/ebtables-save WARNING: QA Issue: Shell scripts in base_bindir and base_sbindir should not reference anything in exec_prefix Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
2013-01-27ebtables, arptables: add perl as runtime dependencyKhem Raj
Fixes errors like | Computing transaction...error: Can't install arptables-0.0.3+4-r0.0@ppce500v2: no package provides /usr/bin/perl Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-07ebtables: Fix segfault by linking with no-as-neededKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2012-12-07ebtables: add from OE-Classic, update and tidy upPaul Eggleton
* Update to 2.0.10-4 * Handle hardcoded paths in initscript * Add LIC_FILES_CHKSUM * Set SUMMARY (which sets DESCRIPTION) * Drop PRIORITY * Minor formatting/ordering tweaks Based on a patch by Vladimir Redzhepoff <vladimir.redzhepoff@promwad.com> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-12-07conntrack-tools: add from OE-Classic, update and tidy upPaul Eggleton
* Update to version 1.4.0 and add additional dependencies * Handle hardcoded paths in initscripts * Add LSB header to initscript * Make LICENSE more specific * Add LIC_FILES_CHKSUM * Set SUMMARY (which sets DESCRIPTION) Based on a patch by Yauhen Kharuzhy <yauhen.kharuzhy@promwad.com> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-12-07libnetfilter-queue: add new recipe for version 1.0.2Paul Eggleton
This library is needed by recent versions of conntrack-tools. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-12-07libnetfilter-cthelper: add new recipe for version 1.0.0Paul Eggleton
This library is needed by recent versions of conntrack-tools. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-12-07libnetfilter-cttimeout: add new recipe for version 1.0.0Paul Eggleton
This library is needed by recent versions of conntrack-tools. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-12-07libnetfilter-conntrack: add from OE-Classic and updatePaul Eggleton
* Update to version 1.0.2 * Add SUMMARY and tweak DESCRIPTION * Add HOMEPAGE * Add dependency on libmnl Based on a patch by Yauhen Kharuzhy <yauhen.kharuzhy@promwad.com> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-12-07libmnl: add new recipe for version 1.0.3Paul Eggleton
This library is required by recent versions of some the libnetfilter* libraries. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-12-07libnfnetlink: move to meta-networking and update to 1.0.1Paul Eggleton
* Fix SRC_URI checksum to not be version-specific * Refer to new COPYING file in LIC_FILES_CHKSUM (previously none was distributed) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>