diff options
author | hunt <hunt> | 2005-08-31 18:18:35 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-08-31 18:18:35 +0000 |
commit | a4aeaa52b6c3d241cae1db59f274cf6de9fde395 (patch) | |
tree | b7fafd01afaaa9ffb680aa43ce32e93b105f9b74 | |
parent | a6c632f50fdaf53107dbf3e89a875c3f71e0fca5 (diff) | |
download | systemtap-steved-a4aeaa52b6c3d241cae1db59f274cf6de9fde395.tar.gz systemtap-steved-a4aeaa52b6c3d241cae1db59f274cf6de9fde395.tar.xz systemtap-steved-a4aeaa52b6c3d241cae1db59f274cf6de9fde395.zip |
2005-08-31 Martin Hunt <hunt@redhat.com>
* Makefile.template: Remove KTA, KALLSYMS_LOOKUP,
and KALLSYMS_LOOKUP_NAME
-rw-r--r-- | runtime/probes/ChangeLog | 5 | ||||
-rw-r--r-- | runtime/probes/Makefile.template | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/runtime/probes/ChangeLog b/runtime/probes/ChangeLog index 2ef9236f..657cd5ab 100644 --- a/runtime/probes/ChangeLog +++ b/runtime/probes/ChangeLog @@ -1,3 +1,8 @@ +2005-08-31 Martin Hunt <hunt@redhat.com> + + * Makefile.template: Remove KTA, KALLSYMS_LOOKUP, + and KALLSYMS_LOOKUP_NAME + 2005-08-19 Martin Hunt <hunt@redhat.com> * shellsnoop/shellsnoop.c: Remove STP_NETLINK_ONLY. diff --git a/runtime/probes/Makefile.template b/runtime/probes/Makefile.template index 886bef8e..5d770e95 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 |