* [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features
@ 2011-07-12 23:25 tom.zanussi
2011-07-12 23:25 ` [PATCH 1/2][KERNEL] meta: add mac80211 and iwlagn features tom.zanussi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: tom.zanussi @ 2011-07-12 23:25 UTC (permalink / raw)
To: bruce.ashfield, yocto
From: Tom Zanussi <tom.zanussi@intel.com>
This patchset adds a couple new features, iwlagn and mac80211 for the
fri2 BSP.
Please pull into linux-yocto-dev.
Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
Branch: tzanussi/linux-3.0/meta/iwlagn
Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/linux-3.0/meta/iwlagn
Tom Zanussi (2):
meta: add mac80211 and iwlagn features
meta-fri2: use iwlagn feature
meta/cfg/kernel-cache/bsp/fri2/fri2.scc | 1 +
meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg | 4 ++++
meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc | 3 +++
.../kernel-cache/features/mac80211/mac80211.cfg | 5 +++++
.../kernel-cache/features/mac80211/mac80211.scc | 1 +
5 files changed, 14 insertions(+), 0 deletions(-)
create mode 100644 meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg
create mode 100644 meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc
create mode 100644 meta/cfg/kernel-cache/features/mac80211/mac80211.cfg
create mode 100644 meta/cfg/kernel-cache/features/mac80211/mac80211.scc
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 1/2][KERNEL] meta: add mac80211 and iwlagn features
2011-07-12 23:25 [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features tom.zanussi
@ 2011-07-12 23:25 ` tom.zanussi
2011-07-12 23:25 ` [PATCH 2/2][KERNEL] meta-fri2: use iwlagn feature tom.zanussi
2011-07-13 5:11 ` [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features Bruce Ashfield
2 siblings, 0 replies; 4+ messages in thread
From: tom.zanussi @ 2011-07-12 23:25 UTC (permalink / raw)
To: bruce.ashfield, yocto
From: Tom Zanussi <tom.zanussi@intel.com>
Add iwlagn feature (Intel Wirelss WiFi Next Gen AGN) and one of its
dependencies, mac80211, as a feature, since there are a bunch of other
config items that have the same dependency and could use it.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg | 4 ++++
meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc | 3 +++
.../kernel-cache/features/mac80211/mac80211.cfg | 5 +++++
.../kernel-cache/features/mac80211/mac80211.scc | 1 +
4 files changed, 13 insertions(+), 0 deletions(-)
create mode 100644 meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg
create mode 100644 meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc
create mode 100644 meta/cfg/kernel-cache/features/mac80211/mac80211.cfg
create mode 100644 meta/cfg/kernel-cache/features/mac80211/mac80211.scc
diff --git a/meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg b/meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg
new file mode 100644
index 0000000..4119da7
--- /dev/null
+++ b/meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg
@@ -0,0 +1,4 @@
+# iwgaln depends on NETDEVICES (base.cfg), PCI and MAC80211
+CONFIG_PCI=y
+
+CONFIG_IWLAGN=m
diff --git a/meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc b/meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc
new file mode 100644
index 0000000..afc76bc
--- /dev/null
+++ b/meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc
@@ -0,0 +1,3 @@
+kconf hardware iwlagn.cfg
+
+include features/mac80211/mac80211.scc
diff --git a/meta/cfg/kernel-cache/features/mac80211/mac80211.cfg b/meta/cfg/kernel-cache/features/mac80211/mac80211.cfg
new file mode 100644
index 0000000..d4a9374
--- /dev/null
+++ b/meta/cfg/kernel-cache/features/mac80211/mac80211.cfg
@@ -0,0 +1,5 @@
+# mac80211 depends on NET (base.cfg), WIRELESS <- WLAN and CFG80211
+CONFIG_WLAN=y
+
+CONFIG_MAC80211=m
+CONFIG_CFG80211=m
diff --git a/meta/cfg/kernel-cache/features/mac80211/mac80211.scc b/meta/cfg/kernel-cache/features/mac80211/mac80211.scc
new file mode 100644
index 0000000..c2c02c8
--- /dev/null
+++ b/meta/cfg/kernel-cache/features/mac80211/mac80211.scc
@@ -0,0 +1 @@
+kconf hardware mac80211.cfg
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2][KERNEL] meta-fri2: use iwlagn feature
2011-07-12 23:25 [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features tom.zanussi
2011-07-12 23:25 ` [PATCH 1/2][KERNEL] meta: add mac80211 and iwlagn features tom.zanussi
@ 2011-07-12 23:25 ` tom.zanussi
2011-07-13 5:11 ` [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features Bruce Ashfield
2 siblings, 0 replies; 4+ messages in thread
From: tom.zanussi @ 2011-07-12 23:25 UTC (permalink / raw)
To: bruce.ashfield, yocto
From: Tom Zanussi <tom.zanussi@intel.com>
Make use of the Intel wireless support for the Intel 6205 ABGN.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
meta/cfg/kernel-cache/bsp/fri2/fri2.scc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/meta/cfg/kernel-cache/bsp/fri2/fri2.scc b/meta/cfg/kernel-cache/bsp/fri2/fri2.scc
index eca5cab..6ac0bfb 100644
--- a/meta/cfg/kernel-cache/bsp/fri2/fri2.scc
+++ b/meta/cfg/kernel-cache/bsp/fri2/fri2.scc
@@ -5,6 +5,7 @@ include features/intel-e1xxxx/intel-e1xxxx.scc
include features/dmaengine/dmaengine.scc
include features/serial/8250.scc
include features/ericsson-3g/f5521gw.scc
+include features/iwlagn/iwlagn.scc
include features/logbuf/size-normal.scc
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features
2011-07-12 23:25 [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features tom.zanussi
2011-07-12 23:25 ` [PATCH 1/2][KERNEL] meta: add mac80211 and iwlagn features tom.zanussi
2011-07-12 23:25 ` [PATCH 2/2][KERNEL] meta-fri2: use iwlagn feature tom.zanussi
@ 2011-07-13 5:11 ` Bruce Ashfield
2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-07-13 5:11 UTC (permalink / raw)
To: tom.zanussi; +Cc: yocto
On 11-07-12 7:25 PM, tom.zanussi@intel.com wrote:
> From: Tom Zanussi<tom.zanussi@intel.com>
>
> This patchset adds a couple new features, iwlagn and mac80211 for the
> fri2 BSP.
>
> Please pull into linux-yocto-dev.
>
> Pull URL: git://git.yoctoproject.org/linux-yocto-2.6.37-contrib
> Branch: tzanussi/linux-3.0/meta/iwlagn
> Browse: http://git.yoctoproject.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/linux-3.0/meta/iwlagn
And these are pushed out as well.
Bruce
>
> Tom Zanussi (2):
> meta: add mac80211 and iwlagn features
> meta-fri2: use iwlagn feature
>
> meta/cfg/kernel-cache/bsp/fri2/fri2.scc | 1 +
> meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg | 4 ++++
> meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc | 3 +++
> .../kernel-cache/features/mac80211/mac80211.cfg | 5 +++++
> .../kernel-cache/features/mac80211/mac80211.scc | 1 +
> 5 files changed, 14 insertions(+), 0 deletions(-)
> create mode 100644 meta/cfg/kernel-cache/features/iwlagn/iwlagn.cfg
> create mode 100644 meta/cfg/kernel-cache/features/iwlagn/iwlagn.scc
> create mode 100644 meta/cfg/kernel-cache/features/mac80211/mac80211.cfg
> create mode 100644 meta/cfg/kernel-cache/features/mac80211/mac80211.scc
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-07-13 5:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-12 23:25 [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features tom.zanussi
2011-07-12 23:25 ` [PATCH 1/2][KERNEL] meta: add mac80211 and iwlagn features tom.zanussi
2011-07-12 23:25 ` [PATCH 2/2][KERNEL] meta-fri2: use iwlagn feature tom.zanussi
2011-07-13 5:11 ` [PATCH 0/2][KERNEL] Add and use iwlagn and mac80211 features Bruce Ashfield
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.