summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--initscripts.spec3
-rw-r--r--src/redhat-support-check.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 9bd5638c..24a0dd27 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -207,6 +207,9 @@ rm -rf $RPM_BUILD_ROOT
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
+* Thu Jan 12 2006 Bill Nottingham <notting@redhat.com>
+- ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
+
* Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 7.93.24.EL-1
- correct fix for #172804
diff --git a/src/redhat-support-check.c b/src/redhat-support-check.c
index dd5bc162..db80227c 100644
--- a/src/redhat-support-check.c
+++ b/src/redhat-support-check.c
@@ -67,7 +67,7 @@ unsigned int get_num_cpus() {
int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
#if defined(__i386__) || defined(__x86_64__)
- u_int32_t eax = 0, ebx = 0, ecx = 0, edx = 0;
+ u_int32_t eax = 0, ebx = 1, ecx = 0, edx = 0;
cpuid(0, &eax, &ebx, &ecx, &edx);
if (ebx == 0x756e6547) { /* Intel */