From be00414012df13c2eddf98909b3cdfe21c2a94d8 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Sun, 20 Dec 2009 12:16:33 -0500 Subject: PR10601 cont'd, RHEL5 backward compatibility with more runtime/autoconf* --- buildrun.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'buildrun.cxx') diff --git a/buildrun.cxx b/buildrun.cxx index 0f2f05b5..5939fcae 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -162,6 +162,8 @@ compile_pass (systemtap_session& s) output_autoconf(s, o, "autoconf-x86-gs.c", "STAPCONF_X86_GS", NULL); output_autoconf(s, o, "autoconf-grsecurity.c", "STAPCONF_GRSECURITY", NULL); output_autoconf(s, o, "autoconf-trace-printk.c", "STAPCONF_TRACE_PRINTK", NULL); + output_autoconf(s, o, "autoconf-regset.c", "STAPCONF_REGSET", NULL); + output_autoconf(s, o, "autoconf-utrace-regset.c", "STAPCONF_UTRACE_REGSET", NULL); #if 0 /* NB: For now, the performance hit of probe_kernel_read/write (vs. our -- cgit From 182221914a187147ae7057d60c74e626224f99e0 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Sun, 20 Dec 2009 15:34:09 -0500 Subject: RHBZ543529: Make implicit -BCONFIG_MODULE_SIG=n * buildrun.cxx (compile_pass): Disable module signing goo. --- buildrun.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'buildrun.cxx') diff --git a/buildrun.cxx b/buildrun.cxx index 5939fcae..48f27a3a 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -123,6 +123,9 @@ compile_pass (systemtap_session& s) // "autoconf" options go here + // RHBZ 543529: early rhel6 kernels' module-signing kbuild logic breaks out-of-tree modules + o << "CONFIG_MODULE_SIG := n" << endl; + string module_cflags = "EXTRA_CFLAGS"; o << module_cflags << " :=" << endl; -- cgit