diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-08-18 08:13:53 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-08-18 08:13:53 +0000 |
commit | 4999d2edfbedc035b08f0c2e6491c768cd72b4c8 (patch) | |
tree | 23a73575729ee2dd9d186f291ffbed8016306102 /openwrt/target/linux/package/mini_fo/patches | |
parent | 3cffef77cef438a54261c42fb07295b68353d5f2 (diff) | |
download | mtk-20170518-4999d2edfbedc035b08f0c2e6491c768cd72b4c8.zip mtk-20170518-4999d2edfbedc035b08f0c2e6491c768cd72b4c8.tar.gz mtk-20170518-4999d2edfbedc035b08f0c2e6491c768cd72b4c8.tar.bz2 |
enable kmod build when target arch != mipsel
SVN-Revision: 1693
Diffstat (limited to 'openwrt/target/linux/package/mini_fo/patches')
-rw-r--r-- | openwrt/target/linux/package/mini_fo/patches/101-kmod_build.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/openwrt/target/linux/package/mini_fo/patches/101-kmod_build.patch b/openwrt/target/linux/package/mini_fo/patches/101-kmod_build.patch new file mode 100644 index 0000000..f6a752c --- /dev/null +++ b/openwrt/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 |