summaryrefslogtreecommitdiffstats
path: root/Makefile.config
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@redhat.com>2014-03-06 14:35:35 -0500
committerJosh Boyer <jwboyer@redhat.com>2014-03-06 14:35:39 -0500
commit5a77287012c36ca39549f2f745d6c3a2e2879ffa (patch)
treefbddc8a370fd586af875f423195268e4b4ccc0c2 /Makefile.config
parente23ada199817b855a47229107c376689af21ee8c (diff)
downloadkernel-5a77287012c36ca39549f2f745d6c3a2e2879ffa.tar.gz
kernel-5a77287012c36ca39549f2f745d6c3a2e2879ffa.tar.xz
kernel-5a77287012c36ca39549f2f745d6c3a2e2879ffa.zip
Add ppc64le support from Brent Baude (rhbz 1073102)
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.config b/Makefile.config
index 806c5676..34839682 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -12,7 +12,8 @@ CONFIGFILES = \
$(CFG)-armv7hl.config $(CFG)-armv7hl-lpae.config \
$(CFG)-aarch64.config \
$(CFG)-ppc.config $(CFG)-ppc-smp.config \
- $(CFG)-ppc64.config $(CFG)-ppc64p7.config $(CFG)-ppc64-debug.config
+ $(CFG)-ppc64.config $(CFG)-ppc64p7.config $(CFG)-ppc64-debug.config \
+ $(CFG)-ppc64le.config
PLATFORMS = x86 x86_64 powerpc powerpc32 powerpc64 s390x arm arm64
TEMPFILES = $(addprefix temp-, $(addsuffix -generic, $(PLATFORMS)))
@@ -86,6 +87,9 @@ temp-powerpc32-generic: config-powerpc32-generic temp-powerpc-generic
temp-powerpc64-generic: config-powerpc64 temp-powerpc-generic
perl merge.pl $^ > $@
+temp-powerpc64le-generic: config-powerpc64le temp-powerpc64-generic
+ perl merge.pl $^ > $@
+
temp-s390-generic: config-s390x temp-generic
perl merge.pl $^ > $@
@@ -116,6 +120,9 @@ $(CFG)-ppc64-debug.config: temp-powerpc64-generic temp-powerpc-debug-generic
$(CFG)-ppc64p7.config: config-powerpc64p7 temp-powerpc64-generic
perl merge.pl $^ powerpc > $@
+$(CFG)-ppc64le.config: /dev/null temp-powerpc64le-generic
+ perl merge.pl $^ powerpc > $@
+
$(CFG)-s390x.config: config-s390x temp-s390-generic
perl merge.pl $^ s390 > $@