diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-26 10:33:32 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-26 10:33:32 +0000 |
commit | 94756d4adc16a70d53f4db8fec8248aae2256af9 (patch) | |
tree | b1a6b2b8bf2ee89d8a00610f25347828df4846fb /openwrt/package/linux/kernel-patches/001-Makefile | |
parent | f26476c862bc76370a3884555d8677c9886eb792 (diff) |
uncompress patches, requested by Kaloz
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@460 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/linux/kernel-patches/001-Makefile')
-rw-r--r-- | openwrt/package/linux/kernel-patches/001-Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/openwrt/package/linux/kernel-patches/001-Makefile b/openwrt/package/linux/kernel-patches/001-Makefile new file mode 100644 index 000000000..d01051f84 --- /dev/null +++ b/openwrt/package/linux/kernel-patches/001-Makefile @@ -0,0 +1,43 @@ +--- ../../../kernel/linux-mips-cvs/Makefile 2005-01-20 03:19:21.000000000 +0100 ++++ linux-2.4.29.new/Makefile 2005-03-15 01:15:27.441095231 +0100 +@@ -17,9 +17,9 @@ + FINDHPATH = $(HPATH)/asm $(HPATH)/linux $(HPATH)/scsi $(HPATH)/net $(HPATH)/math-emu + + HOSTCC = gcc +-HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer ++HOSTCFLAGS = -Wall -Wstrict-prototypes -Os -fomit-frame-pointer + +-CROSS_COMPILE = ++CROSS_COMPILE= + + # + # Include the make variables (CC, etc...) +@@ -91,8 +91,18 @@ + + CPPFLAGS := -D__KERNEL__ -I$(HPATH) + +-CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -O2 \ ++CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -Os \ + -fno-strict-aliasing -fno-common ++ ++ ++# Turn on -pg to instrument the kernel with calls to mcount(). ++# Unfortunately, gcc won't allow -pg without frame pointers. ++ifdef CONFIG_MCOUNT ++ CFLAGS += -pg ++ CFLAGS_KERNEL += -pg ++ CONFIG_FRAME_POINTER = 1 ++endif ++ + ifndef CONFIG_FRAME_POINTER + CFLAGS += -fomit-frame-pointer + endif +@@ -501,7 +511,7 @@ + ifdef CONFIG_MODVERSIONS + $(MAKE) update-modverfile + endif +- scripts/mkdep -- `find $(FINDHPATH) \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print` > .hdepend ++ (find $(FINDHPATH) \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print | xargs -r scripts/mkdep -- ) > .hdepend + scripts/mkdep -- init/*.c > .depend + + ifdef CONFIG_MODVERSIONS |