Skip to content

Commit 26e9a39

Browse files
committed
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6: (25 commits) staging: at76_usb wireless driver Staging: workaround build system bug Staging: Lindent sxg.c Staging: SLICOSS: Call pci_release_regions at driver exit Staging: SLICOSS: Fix remaining type names Staging: SLICOSS: Fix warnings due to static usage Staging: SLICOSS: lots of checkpatch fixes Staging: go7007 v4l fixes Staging: Fix gcc warnings in sxg Staging: add echo cancelation module Staging: add wlan-ng prism2 usb driver Staging: add w35und wifi driver Staging: USB/IP: add host driver Staging: USB/IP: add client driver Staging: USB/IP: add common functions needed Staging: add the go7007 video driver Staging: add me4000 pci data collection driver Staging: add me4000 firmware files Staging: add sxg network driver Staging: add Alacritech slicoss network driver ... Fixed up conflicts due to taint flags changes and MAINTAINERS cleanup in MAINTAINERS, include/linux/kernel.h and kernel/panic.c.
2 parents bdbf0ac + 99e06e3 commit 26e9a39

File tree

211 files changed

+152422
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+152422
-1
lines changed

Documentation/sysctl/kernel.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,4 +369,5 @@ can be ORed together:
369369
2 - A module was force loaded by insmod -f.
370370
Set by modutils >= 2.4.9 and module-init-tools.
371371
4 - Unsafe SMP processors: SMP with CPUs not designed for SMP.
372+
64 - A module from drivers/staging was loaded.
372373

MAINTAINERS

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3937,14 +3937,21 @@ M: [email protected]
39373937
39383938
S: Maintained
39393939

3940-
STABLE BRANCH:
3940+
STABLE BRANCH
39413941
P: Greg Kroah-Hartman
39423942
39433943
P: Chris Wright
39443944
39453945
39463946
S: Maintained
39473947

3948+
STAGING SUBSYSTEM
3949+
P: Greg Kroah-Hartman
3950+
3951+
3952+
T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
3953+
S: Maintained
3954+
39483955
STARFIRE/DURALAN NETWORK DRIVER
39493956
P: Ion Badulescu
39503957

drivers/Kconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,6 @@ source "drivers/auxdisplay/Kconfig"
101101
source "drivers/uio/Kconfig"
102102

103103
source "drivers/xen/Kconfig"
104+
105+
source "drivers/staging/Kconfig"
104106
endmenu

drivers/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,4 @@ obj-$(CONFIG_OF) += of/
9999
obj-$(CONFIG_SSB) += ssb/
100100
obj-$(CONFIG_VIRTIO) += virtio/
101101
obj-$(CONFIG_REGULATOR) += regulator/
102+
obj-$(CONFIG_STAGING) += staging/

drivers/staging/Kconfig

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
menuconfig STAGING
2+
bool "Staging drivers"
3+
default n
4+
---help---
5+
This option allows you to select a number of drivers that are
6+
not of the "normal" Linux kernel quality level. These drivers
7+
are placed here in order to get a wider audience for use of
8+
them. Please note that these drivers are under heavy
9+
development, may or may not work, and may contain userspace
10+
interfaces that most likely will be changed in the near
11+
future.
12+
13+
Using any of these drivers will taint your kernel which might
14+
affect support options from both the community, and various
15+
commercial support orginizations.
16+
17+
If you wish to work on these drivers, to help improve them, or
18+
to report problems you have with them, please see the
19+
driver_name.README file in the drivers/staging/ directory to
20+
see what needs to be worked on, and who to contact.
21+
22+
If in doubt, say N here.
23+
24+
if STAGING
25+
26+
source "drivers/staging/et131x/Kconfig"
27+
28+
source "drivers/staging/slicoss/Kconfig"
29+
30+
source "drivers/staging/sxg/Kconfig"
31+
32+
source "drivers/staging/me4000/Kconfig"
33+
34+
source "drivers/staging/go7007/Kconfig"
35+
36+
source "drivers/staging/usbip/Kconfig"
37+
38+
source "drivers/staging/winbond/Kconfig"
39+
40+
source "drivers/staging/wlan-ng/Kconfig"
41+
42+
source "drivers/staging/echo/Kconfig"
43+
44+
source "drivers/staging/at76_usb/Kconfig"
45+
46+
endif # STAGING

drivers/staging/Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Makefile for staging directory
2+
3+
# fix for build system bug...
4+
obj-$(CONFIG_STAGING) += staging.o
5+
6+
obj-$(CONFIG_ET131X) += et131x/
7+
obj-$(CONFIG_SLICOSS) += slicoss/
8+
obj-$(CONFIG_SXG) += sxg/
9+
obj-$(CONFIG_ME4000) += me4000/
10+
obj-$(CONFIG_VIDEO_GO7007) += go7007/
11+
obj-$(CONFIG_USB_IP_COMMON) += usbip/
12+
obj-$(CONFIG_W35UND) += winbond/
13+
obj-$(CONFIG_PRISM2_USB) += wlan-ng/
14+
obj-$(CONFIG_ECHO) += echo/
15+
obj-$(CONFIG_USB_ATMEL) += at76_usb/

drivers/staging/at76_usb/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
config USB_ATMEL
2+
tristate "Atmel at76c503/at76c505/at76c505a USB cards"
3+
depends on WLAN_80211 && USB
4+
default N
5+
select FW_LOADER
6+
---help---
7+
Enable support for USB Wireless devices using Atmel at76c503,
8+
at76c505 or at76c505a chips.

drivers/staging/at76_usb/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
obj-$(CONFIG_USB_ATMEL) += at76_usb.o

drivers/staging/at76_usb/TODO

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rewrite the driver to use the proper in-kernel wireless stack
2+
instead of using its own.

0 commit comments

Comments
 (0)