On Wed, 8 Oct 2008, Arun Bhanu wrote:
> Hi
>
> I have compiled btrfs into the kernel instead of building as module.
> Then I create a btrfs filesystem on a partition and try to mount it and
> I get the following error.
fs/btrfs/Makefile is a bit wonky. This at least makes it work both ways:
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile
index 48b7909..7125716 100644
--- a/fs/btrfs/Makefile
+++ b/fs/btrfs/Makefile
@@ -1,7 +1,7 @@
ifneq ($(KERNELRELEASE),)
# kbuild part of makefile
-obj-m := btrfs.o
+obj-$(CONFIG_BTRFS_FS) := btrfs.o
btrfs-y := super.o ctree.o extent-tree.o print-tree.o root-tree.o
dir-item.o \
file-item.o inode-item.o inode-map.o disk-io.o \
transaction.o inode.o file.o tree-defrag.o \
@@ -14,7 +14,7 @@ else
KERNELDIR := /lib/modules/`uname -r`/build
all:
- $(MAKE) -C $(KERNELDIR) M=`pwd` modules
+ $(MAKE) -C $(KERNELDIR) M=`pwd` CONFIG_BTRFS_FS=m modules
modules_install:
$(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html