diff options
author | Dave Brolley <brolley@redhat.com> | 2009-12-21 12:42:11 -0500 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-12-21 12:42:11 -0500 |
commit | 25a0404570724499bcdf1ebfd9f03084c2e00137 (patch) | |
tree | f9824f847b407790ab10116c2ebcc7e664d53253 /buildrun.cxx | |
parent | 08098abb6b206dc3aea984f18b5054d34e015185 (diff) | |
parent | c6fcc4c1ca5f222cf90bf3968e34a10f09b30be4 (diff) | |
download | systemtap-steved-25a0404570724499bcdf1ebfd9f03084c2e00137.tar.gz systemtap-steved-25a0404570724499bcdf1ebfd9f03084c2e00137.tar.xz systemtap-steved-25a0404570724499bcdf1ebfd9f03084c2e00137.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'buildrun.cxx')
-rw-r--r-- | buildrun.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/buildrun.cxx b/buildrun.cxx index 0f2f05b5..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; @@ -162,6 +165,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 |