From 7aec763cace1db597ed1fe15febf1c0504cd55ad Mon Sep 17 00:00:00 2001 From: Fathi Boudra Date: Wed, 5 Jun 2013 09:48:24 +0300 Subject: Rename ubuntu-minimal.conf to distribution.conf: the config fragment is now used for booting various distributions like Fedora, OpenEmbedded, Ubuntu. It isn't specific to Ubuntu anymore. Remove ubuntu.conf: the config fragment is unused. Signed-off-by: Fathi Boudra --- linaro/configs/distribution.conf | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 linaro/configs/distribution.conf (limited to 'linaro/configs/distribution.conf') diff --git a/linaro/configs/distribution.conf b/linaro/configs/distribution.conf new file mode 100644 index 00000000000..cb77d3995eb --- /dev/null +++ b/linaro/configs/distribution.conf @@ -0,0 +1,35 @@ +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_CGROUPS=y +# CONFIG_COMPAT_BRK is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_SECCOMP=y +CONFIG_CC_STACKPROTECTOR=y +CONFIG_SYN_COOKIES=y +CONFIG_IPV6=y +CONFIG_NETLABEL=y +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_IPV4=m +CONFIG_NF_NAT_IPV4=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_FILTER=m +CONFIG_NF_CONNTRACK_IPV6=m +CONFIG_NF_NAT_IPV6=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_FILTER=m +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_INPUT_MISC=y +CONFIG_INPUT_UINPUT=y +# CONFIG_DEVKMEM is not set +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_AUTOFS4_FS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_STRICT_DEVMEM=y +CONFIG_SECURITY=y +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SMACK=y +CONFIG_SECURITY_APPARMOR=y +CONFIG_DEFAULT_SECURITY_APPARMOR=y -- cgit v1.2.1 From 85a5240936c474e12877ed4469fc62373f2887cf Mon Sep 17 00:00:00 2001 From: Fathi Boudra Date: Wed, 5 Jun 2013 09:58:23 +0300 Subject: distribution: add CONFIG_IP_NF_MANGLE and CONFIG_IP6_NF_MANGLE Signed-off-by: Fathi Boudra --- linaro/configs/distribution.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'linaro/configs/distribution.conf') diff --git a/linaro/configs/distribution.conf b/linaro/configs/distribution.conf index cb77d3995eb..848d5ff967e 100644 --- a/linaro/configs/distribution.conf +++ b/linaro/configs/distribution.conf @@ -12,10 +12,12 @@ CONFIG_NF_CONNTRACK_IPV4=m CONFIG_NF_NAT_IPV4=m CONFIG_IP_NF_IPTABLES=m CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_MANGLE=m CONFIG_NF_CONNTRACK_IPV6=m CONFIG_NF_NAT_IPV6=m CONFIG_IP6_NF_IPTABLES=m CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_MANGLE=m CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y CONFIG_BLK_DEV_RAM=y -- cgit v1.2.1 From 0f0c0339390dbcf028d8d046610bf94e7f9b8cf7 Mon Sep 17 00:00:00 2001 From: Fathi Boudra Date: Thu, 20 Jun 2013 08:34:09 +0300 Subject: Add CONFIG_BRIDGE_NETFILTER and CONFIG_BRIDGE_NF_EBTABLES for libvirt Signed-off-by: Fathi Boudra --- linaro/configs/distribution.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'linaro/configs/distribution.conf') diff --git a/linaro/configs/distribution.conf b/linaro/configs/distribution.conf index 848d5ff967e..8ea04e29509 100644 --- a/linaro/configs/distribution.conf +++ b/linaro/configs/distribution.conf @@ -7,6 +7,7 @@ CONFIG_CC_STACKPROTECTOR=y CONFIG_SYN_COOKIES=y CONFIG_IPV6=y CONFIG_NETLABEL=y +CONFIG_BRIDGE_NETFILTER=y CONFIG_NF_CONNTRACK=m CONFIG_NF_CONNTRACK_IPV4=m CONFIG_NF_NAT_IPV4=m @@ -18,6 +19,7 @@ CONFIG_NF_NAT_IPV6=m CONFIG_IP6_NF_IPTABLES=m CONFIG_IP6_NF_FILTER=m CONFIG_IP6_NF_MANGLE=m +CONFIG_BRIDGE_NF_EBTABLES=m CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y CONFIG_BLK_DEV_RAM=y -- cgit v1.2.1 From 486a13d9b0a594c4b14ae3df18baf0464640b38f Mon Sep 17 00:00:00 2001 From: Fathi Boudra Date: Fri, 21 Jun 2013 10:51:42 +0300 Subject: distribution.conf: add CONFIG_BRIDGE=m Signed-off-by: Fathi Boudra --- linaro/configs/distribution.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'linaro/configs/distribution.conf') diff --git a/linaro/configs/distribution.conf b/linaro/configs/distribution.conf index 8ea04e29509..5b8bdb7dd72 100644 --- a/linaro/configs/distribution.conf +++ b/linaro/configs/distribution.conf @@ -20,6 +20,7 @@ CONFIG_IP6_NF_IPTABLES=m CONFIG_IP6_NF_FILTER=m CONFIG_IP6_NF_MANGLE=m CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE=m CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y CONFIG_BLK_DEV_RAM=y -- cgit v1.2.1 From a0cf94cde1daf40a69db826119635ed7c78cb64c Mon Sep 17 00:00:00 2001 From: Fathi Boudra Date: Thu, 27 Jun 2013 20:57:39 +0300 Subject: distribution.conf: add more configs for libvirt (NETFILTER_XT_CONNMARK, NETFILTER_XT_MARK, NETFILTER_XT_TARGET_CHECKSUM, BRIDGE_EBT_MARK_T) Signed-off-by: Fathi Boudra --- linaro/configs/distribution.conf | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'linaro/configs/distribution.conf') diff --git a/linaro/configs/distribution.conf b/linaro/configs/distribution.conf index 5b8bdb7dd72..fbcfed1b6ce 100644 --- a/linaro/configs/distribution.conf +++ b/linaro/configs/distribution.conf @@ -9,6 +9,9 @@ CONFIG_IPV6=y CONFIG_NETLABEL=y CONFIG_BRIDGE_NETFILTER=y CONFIG_NF_CONNTRACK=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m CONFIG_NF_CONNTRACK_IPV4=m CONFIG_NF_NAT_IPV4=m CONFIG_IP_NF_IPTABLES=m @@ -20,6 +23,7 @@ CONFIG_IP6_NF_IPTABLES=m CONFIG_IP6_NF_FILTER=m CONFIG_IP6_NF_MANGLE=m CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_MARK_T=m CONFIG_BRIDGE=m CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y -- cgit v1.2.1