aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/btrfs/Makefile7
-rw-r--r--fs/btrfs/version.h4
2 files changed, 5 insertions, 6 deletions
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile
index eb36ae981bdc..d5c28557fba9 100644
--- a/fs/btrfs/Makefile
+++ b/fs/btrfs/Makefile
@@ -13,17 +13,12 @@ else
13# Normal Makefile 13# Normal Makefile
14 14
15KERNELDIR := /lib/modules/`uname -r`/build 15KERNELDIR := /lib/modules/`uname -r`/build
16all: version 16all:
17 $(MAKE) -C $(KERNELDIR) M=`pwd` modules 17 $(MAKE) -C $(KERNELDIR) M=`pwd` modules
18 18
19version:
20 bash version.sh
21
22modules_install: 19modules_install:
23 $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install 20 $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
24clean: 21clean:
25 $(MAKE) -C $(KERNELDIR) M=`pwd` clean 22 $(MAKE) -C $(KERNELDIR) M=`pwd` clean
26 23
27tester:
28 $(MAKE) -C $(KERNELDIR) M=`pwd` tree-defrag.o transaction.o sysfs.o super.o root-tree.o inode-map.o inode-item.o inode.o file-item.o file.o extent_map.o disk-io.o ctree.o dir-item.o extent-tree.o
29endif 24endif
diff --git a/fs/btrfs/version.h b/fs/btrfs/version.h
new file mode 100644
index 000000000000..9bf3946d5ef2
--- /dev/null
+++ b/fs/btrfs/version.h
@@ -0,0 +1,4 @@
1#ifndef __BTRFS_VERSION_H
2#define __BTRFS_VERSION_H
3#define BTRFS_BUILD_VERSION "Btrfs"
4#endif