~ubuntu-branches/ubuntu/precise/linux-ti-omap/precise

« back to all changes in this revision

Viewing changes to ubuntu/aufs/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Bader, Amit Kucheria
  • Date: 2010-03-23 18:05:12 UTC
  • Revision ID: james.westby@ubuntu.com-20100323180512-iavj906ocnphdubp
Tags: 2.6.33-500.3
[ Amit Kucheria ]

* [Config] Fix the debug package name to end in -dbgsym
* SAUCE: Add the ubuntu/ drivers to omap
* SAUCE: Re-export the symbols for aufs
* [Config] Enable AUFS and COMPCACHE

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
include ${src}/magic.mk
 
3
ifeq (${CONFIG_AUFS_FS},m)
 
4
include ${src}/conf.mk
 
5
endif
 
6
-include ${src}/priv_def.mk
 
7
 
 
8
# cf. include/linux/kernel.h
 
9
# enable pr_debug
 
10
ccflags-y += -DDEBUG
 
11
ccflags-y += -D'pr_fmt(fmt)="aufs %s:%d:%s[%d]: " fmt, \
 
12
        __func__, __LINE__, current->comm, current->pid'
 
13
 
 
14
obj-$(CONFIG_AUFS_FS) += aufs.o
 
15
aufs-y := module.o sbinfo.o super.o branch.o xino.o sysaufs.o opts.o \
 
16
        wkq.o vfsub.o dcsub.o \
 
17
        cpup.o whout.o plink.o wbr_policy.o \
 
18
        dinfo.o dentry.o \
 
19
        finfo.o file.o f_op.o \
 
20
        dir.o vdir.o \
 
21
        iinfo.o inode.o i_op.o i_op_add.o i_op_del.o i_op_ren.o \
 
22
        ioctl.o
 
23
 
 
24
# all are boolean
 
25
aufs-$(CONFIG_SYSFS) += sysfs.o
 
26
aufs-$(CONFIG_DEBUG_FS) += dbgaufs.o
 
27
aufs-$(CONFIG_AUFS_BDEV_LOOP) += loop.o
 
28
aufs-$(CONFIG_AUFS_HINOTIFY) += hinotify.o
 
29
aufs-$(CONFIG_AUFS_EXPORT) += export.o
 
30
aufs-$(CONFIG_AUFS_POLL) += poll.o
 
31
aufs-$(CONFIG_AUFS_RDU) += rdu.o
 
32
aufs-$(CONFIG_AUFS_DEBUG) += debug.o
 
33
aufs-$(CONFIG_AUFS_MAGIC_SYSRQ) += sysrq.o