Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 532848 - =sys-cluster/neutron-2014.2.9999 with kernel 3.16.5 - incorrect CONFIG_CHECK_MODULES
Summary: =sys-cluster/neutron-2014.2.9999 with kernel 3.16.5 - incorrect CONFIG_CHECK_...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Matthew Thode ( prometheanfire )
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-17 14:50 UTC by Dyweni
Modified: 2015-03-24 04:14 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dyweni 2014-12-17 14:50:11 UTC
This ebuild has the same issue that =sys-cluster/nova-2014.2.9999 has (see bug # 532750).

 * Messages for package sys-cluster/neutron-2014.2.9999:

 * 8021Q needs to be built as module (builtin doesn't work)
 * IP6TABLE_FILTER needs to be built as module (builtin doesn't work)
 * IP6_TABLES needs to be built as module (builtin doesn't work)
 * IPT_REJECT needs to be built as module (builtin doesn't work)
 * IPTABLE_MANGLE needs to be built as module (builtin doesn't work)
 * IPT_MASQUERADE needs to be built as module (builtin doesn't work)
 * IPTABLE_NAT needs to be built as module (builtin doesn't work)
 * IPTABLE_FILTER needs to be built as module (builtin doesn't work)
 * IP_TABLES needs to be built as module (builtin doesn't work)
 * X_TABLES needs to be built as module (builtin doesn't work)

Old Item         -> Correct Item
-------------------------------------------
8021Q            -> VLAN_8021Q
IP6TABLE_FILTER  -> IP6_NF_FILTER
IP6_TABLES       -> IP6_NF_IPTABLES
IPT_REJECT       -> IP_NF_TARGET_REJECT
IPTABLE_MANGLE   -> IP_NF_MANGLE
IPT_MASQUERADE   -> IP_NF_TARGET_MASQUERADE
IPTABLE_NAT      -> NF_NAT_IPV4
IPTABLE_FILTER   -> IP_NF_FILTER
IP_TABLES        -> IP_NF_IPTABLES
X_TABLES         -> NETFILTER_XTABLES


Reproducible: Always
Comment 1 Matthew Thode ( prometheanfire ) archtester Gentoo Infrastructure gentoo-dev Security 2015-01-13 03:49:59 UTC
sorry for the late update, but are you still having issues?  It just just be checking if enabled (module or built in).  I've updated the ebuild with a correct error message.
Comment 2 Thomas Capricelli 2015-03-21 02:31:44 UTC
Yes, it is. I'm using kernel 3.19.2 and neutron complains that
 * 8021Q needs to be enabled in kernel
 * IP6TABLE_FILTER needs to be enabled in kernel
 * IP6_TABLES needs to be enabled in kernel
 * IPT_REJECT needs to be enabled in kernel
 * IPTABLE_MANGLE needs to be enabled in kernel
 * IPT_MASQUERADE needs to be enabled in kernel
 * IPTABLE_NAT needs to be enabled in kernel
 * IPTABLE_FILTER needs to be enabled in kernel
 * IP_TABLES needs to be enabled in kernel
 * X_TABLES needs to be enabled in kernel

Which is just plain weird, most of them do NOT exist in the kernel. Typically :

    grep IPTABLE_MANGLE  `find -name Kconfig`

returns nothing ..
Comment 3 Matthew Thode ( prometheanfire ) archtester Gentoo Infrastructure gentoo-dev Security 2015-03-24 04:14:39 UTC
Fixed, no bump, it should be out soon.  Thanks for providing the mapping to the newer module names.