PAtch accessfs-2.6.38-0.25 breaks build, fix it. Applying the patch accessfs-2.6.38-0.25 results in a linker error when NET_HOOKS is not set. In a previous version of this patch, hooks.c file was compiled when only CONFIG_NET was set. So change it back to the old setup to make it compile again. Signed-off-by: Remy Bohmer --- net/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-3.0/net/Makefile =================================================================== --- linux-3.0.orig/net/Makefile +++ linux-3.0/net/Makefile @@ -60,7 +60,7 @@ ifneq ($(CONFIG_DCB),) obj-y += dcb/ endif obj-$(CONFIG_IEEE802154) += ieee802154/ -obj-$(CONFIG_NET_HOOKS) += hooks.o +obj-$(CONFIG_NET) += hooks.o ifeq ($(CONFIG_NET),y) obj-$(CONFIG_SYSCTL) += sysctl_net.o