diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-02-25 04:08:20 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 21:54:23 (GMT) |
commit | 00db8a8ecc91abeb46d1128a788a194018c51e77 (patch) | |
tree | 4969b73c3e19db66c6923f4cb0bd316aad3acde5 /drivers | |
parent | 5dba0826999683fe39aa8b49480b0e953afd117a (diff) | |
download | linux-00db8a8ecc91abeb46d1128a788a194018c51e77.tar.xz |
Staging: p9auth: add to the kernel build
This adds the p9auth code to the kernel build
Cc: Ashwin Ganti <ashwin.ganti@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/Kconfig | 2 | ||||
-rw-r--r-- | drivers/staging/Makefile | 1 | ||||
-rw-r--r-- | drivers/staging/p9auth/Kconfig | 8 | ||||
-rw-r--r-- | drivers/staging/p9auth/Makefile | 1 |
4 files changed, 12 insertions, 0 deletions
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index 29dfff7..f968de7 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig @@ -105,5 +105,7 @@ source "drivers/staging/b3dfg/Kconfig" source "drivers/staging/phison/Kconfig" +source "drivers/staging/p9auth/Kconfig" + endif # !STAGING_EXCLUDE_BUILD endif # STAGING diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile index a9b85e8..7e97266 100644 --- a/drivers/staging/Makefile +++ b/drivers/staging/Makefile @@ -35,3 +35,4 @@ obj-$(CONFIG_STLC45XX) += stlc45xx/ obj-$(CONFIG_USB_SERIAL_ATEN2011) += uc2322/ obj-$(CONFIG_B3DFG) += b3dfg/ obj-$(CONFIG_IDE_PHISON) += phison/ +obj-$(CONFIG_PLAN9AUTH) += p9auth/ diff --git a/drivers/staging/p9auth/Kconfig b/drivers/staging/p9auth/Kconfig new file mode 100644 index 0000000..f538844 --- /dev/null +++ b/drivers/staging/p9auth/Kconfig @@ -0,0 +1,8 @@ +config PLAN9AUTH + tristate "Plan 9 style capability device implementation" + default n + help + This module implements the Plan 9 style capability device. + + To compile this driver as a module, choose + M here: the module will be called p9auth. diff --git a/drivers/staging/p9auth/Makefile b/drivers/staging/p9auth/Makefile new file mode 100644 index 0000000..3ebf6ff --- /dev/null +++ b/drivers/staging/p9auth/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_PLAN9AUTH) += p9auth.o |