Skip to content

Commit

Permalink
Staging: VME Framework for the Linux Kernel
Browse files Browse the repository at this point in the history
This framework aims to colelese, extend and improve the VME Linux
drivers found at vmelinux.org, universe2.sourceforge.net and
openfmi.net/frs/?group_id=144. The last 2 drivers appear to be forks of
the original code found at vmelinux.org though have extended the
codebase.

Signed-off-by: Martyn Welch <martyn.welch@gefanuc.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Martyn Welch authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent 03cd713 commit a17a75e
Show file tree
Hide file tree
Showing 7 changed files with 1,800 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/staging/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -137,5 +137,7 @@ source "drivers/staging/udlfb/Kconfig"

source "drivers/staging/hv/Kconfig"

source "drivers/staging/vme/Kconfig"

endif # !STAGING_EXCLUDE_BUILD
endif # STAGING
1 change: 1 addition & 0 deletions drivers/staging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ obj-$(CONFIG_USB_CPC) += cpc-usb/
obj-$(CONFIG_RDC_17F3101X) += pata_rdc/
obj-$(CONFIG_FB_UDL) += udlfb/
obj-$(CONFIG_HYPERV) += hv/
obj-$(CONFIG_VME) += vme/
17 changes: 17 additions & 0 deletions drivers/staging/vme/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#
# VME configuration.
#

menuconfig VME
tristate "VME bridge support"
depends on PCI
---help---
If you say Y here you get support for the VME bridge Framework.

if VME

#source "drivers/staging/vme/bridges/Kconfig"
#
#source "drivers/staging/vme/devices/Kconfig"

endif # VME
7 changes: 7 additions & 0 deletions drivers/staging/vme/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# Makefile for the VME bridge device drivers.
#
obj-$(CONFIG_VME) += vme.o

#obj-y += bridges/
#obj-y += devices/
Loading

0 comments on commit a17a75e

Please sign in to comment.