From: hunt Date: Wed, 31 Aug 2005 18:18:35 +0000 (+0000) Subject: 2005-08-31 Martin Hunt X-Git-Tag: release-0.4~41 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=a4aeaa52b6c3d241cae1db59f274cf6de9fde395;p=systemtap.git 2005-08-31 Martin Hunt * Makefile.template: Remove KTA, KALLSYMS_LOOKUP, and KALLSYMS_LOOKUP_NAME --- diff --git a/runtime/probes/ChangeLog b/runtime/probes/ChangeLog index 2ef9236f4..657cd5ab3 100644 --- a/runtime/probes/ChangeLog +++ b/runtime/probes/ChangeLog @@ -1,3 +1,8 @@ +2005-08-31 Martin Hunt + + * Makefile.template: Remove KTA, KALLSYMS_LOOKUP, + and KALLSYMS_LOOKUP_NAME + 2005-08-19 Martin Hunt * shellsnoop/shellsnoop.c: Remove STP_NETLINK_ONLY. diff --git a/runtime/probes/Makefile.template b/runtime/probes/Makefile.template index 886bef8e1..5d770e957 100644 --- a/runtime/probes/Makefile.template +++ b/runtime/probes/Makefile.template @@ -4,11 +4,7 @@ RT := $(PWD)/../.. KVERSION := $(shell uname -r) KDIR := /lib/modules/$(KVERSION)/build include -KALLSYMS_LOOKUP_NAME := 0x$(firstword $(shell grep " kallsyms_lookup_name" /boot/System.map-$(KVERSION))) -KALLSYMS_LOOKUP := 0x$(firstword $(shell grep " kallsyms_lookup$$" /boot/System.map-$(KVERSION))) -KTA := 0x$(firstword $(shell grep "__kernel_text_address" /boot/System.map-$(KVERSION))) - -FLAGS := -I $(RT) RELAYFS -D KALLSYMS_LOOKUP_NAME=$(KALLSYMS_LOOKUP_NAME) -D KALLSYMS_LOOKUP=$(KALLSYMS_LOOKUP) -DKTA=$(KTA) +FLAGS := -I $(RT) RELAYFS DFLAGS := $(FLAGS) -D DEBUG