diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-18 08:13:53 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-18 08:13:53 +0000 |
commit | 99f380afb6bb266ca0ca97c2ee94802acfbe0549 (patch) | |
tree | 6f8c1a8b9da534cbd6153b8b7d396fbbf06576f5 /target/linux/package/mini_fo/patches/101-kmod_build.patch | |
parent | c17c5bbc5dcf3d432767401062a6456ef532a32c (diff) |
enable kmod build when target arch != mipsel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1693 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package/mini_fo/patches/101-kmod_build.patch')
-rw-r--r-- | target/linux/package/mini_fo/patches/101-kmod_build.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/target/linux/package/mini_fo/patches/101-kmod_build.patch b/target/linux/package/mini_fo/patches/101-kmod_build.patch new file mode 100644 index 0000000000..f6a752c1f6 --- /dev/null +++ b/target/linux/package/mini_fo/patches/101-kmod_build.patch @@ -0,0 +1,52 @@ +diff -ruN mini_fo-old/Makefile mini_fo-new/Makefile +--- mini_fo-old/Makefile 2005-05-08 01:22:51.000000000 +0200 ++++ mini_fo-new/Makefile 2005-08-15 04:37:22.000000000 +0200 +@@ -26,36 +26,32 @@ + # allow custom override of TOPINC for fistgen developers + -include fistdev.mk + ++obj-m := mini_fo.o ++mini_fo-objs := meta.o dentry.o file.o inode.o main.o super.o state.o aux.o ++ + ifeq ($(KERNELVERSION),2.4) +-CFLAGS = -D__KERNEL__ -DMODULE -DFISTGEN -I. ${TOPINC} -O2 -Wall -Wno-unused -g -fno-common -fno-schedule-insns -fno-schedule-insns2 -fno-strict-aliasing -msoft-float -Werror +-ifeq ($(ARCH),um) +-CFLAGS += $(shell cd $(KERNEL_SRC) ; make script 'SCRIPT=@echo $$(CFLAGS)' ARCH=um) +-endif +-UCFLAGS = -DFISTGEN -I. ${TOPINC} -g -O2 -Wall -Wno-unused -Werror +-endif + +-CC = $(CROSS_COMPILE)gcc +-LD = $(CROSS_COMPILE)ld ++O_TARGET := $(obj-m) ++obj-y := $(mini_fo-objs) + +-obj-m := mini_fo.o +-mini_fo-objs := meta.o dentry.o file.o inode.o main.o super.o state.o aux.o ++-include $(TOPDIR)/Rules.make ++ ++endif + + all: mini_fo$(KERNELVERSION) + +-mini_fo2.4: ${obj-m} ++mini_fo2.4: ++ $(MAKE) -C ${KERNEL_SRC} TOPDIR="${KERNEL_SRC}" SUBDIRS=$(shell pwd) modules + + mini_fo2.6: +- make -C ${KERNEL_SRC} SUBDIRS=$(PWD) modules +- +-${obj-m}: ${mini_fo-objs} +- $(LD) -o ${obj-m} -r ${mini_fo-objs} ++ $(MAKE) -C ${KERNEL_SRC} SUBDIRS=$(shell pwd) modules + + TAGS: + etags -t *.[hc] + + clean: + ifeq ($(KERNELVERSION),2.6) +- -make -C ${KERNEL_SRC} SUBDIRS=$(PWD) clean ++ -$(MAKE) -C ${KERNEL_SRC} SUBDIRS=$(shell pwd) clean + endif + rm -f ${obj-m} ${mini_fo-objs} ${obj-m:.o=.ko} *.d .*.flags *~ + rm -f TAGS |