blob: 30b3dedc653c7a1b120aca26d81c9404a7460946 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#
# Makefile for the Linux kernel ubuntu supplied third-party device drivers.
#
#
# NOTE: to allow drivers to be added and removed without causing merge
# collisions you should add new entries in the middle of the six lines
# of ## at the bottom of the list. Always add three lines of ## above
# your new entry and maintain the six lines below.
#
##
##
##
##
##
##
obj-$(CONFIG_DM_RAID45) += dm-raid4-5/
##
##
##
obj-$(CONFIG_NDISWRAPPER) += ndiswrapper/
##
##
##
#obj-m += rfkill/
##
##
##
obj-$(CONFIG_FSAM7400) += fsam7400/
##
##
##
#obj-$(CONFIG_OMNIBOOK) += omnibook/
##
##
##
obj-$(CONFIG_AUFS_FS) += aufs/
##
##
##
##
##
##
# This is a stupid trick to get kbuild to create ubuntu/built-in.o
obj- += foo.o
|