[kernel] ARM: include the mach- headers on arm arches if they are available

Dennis Gilmore ausil at fedoraproject.org
Thu Jun 28 19:07:15 UTC 2012


commit 3b024ebfe5c02225efef855dc2a7819560409b59
Author: Dennis Gilmore <dennis at ausil.us>
Date:   Thu Jun 28 14:06:48 2012 -0500

    ARM: include the mach- headers on arm arches if they are available

 kernel.spec |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 3bf71cf..a6a6025 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -1652,6 +1652,12 @@ BuildKernel() {
     if [ -d arch/%{asmarch}/include ]; then
       cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
     fi
+    # include the machine specific headers for ARM variants, if available.
+%ifarch %{arm}
+    if [ -d arch/%{asmarch}/mach-${Flavour}/include ]; then
+      cp -a --parents arch/%{asmarch}/mach-${Flavour}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
+    fi
+%endif
     cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
 
     # Make sure the Makefile and version.h have a matching timestamp so that
@@ -2282,6 +2288,9 @@ fi
 #                 ||----w |
 #                 ||     ||
 %changelog
+* Thu Jun 28 2012 Dennis Gilmore <dennis at ausil.us>
+- include the mach- headers on arm arches if they are available
+
 * Thu Jun 28 2012 Justin M. Forbes <jforbes at redhat.com> - 3.5.0-0.rc4.git3.1
 - Linux v3.5-rc4-98-g47b514c
 - Team driver update


More information about the scm-commits mailing list