diff options
author | Josh Boyer <jwboyer@fedoraproject.org> | 2014-09-08 14:43:02 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@fedoraproject.org> | 2014-09-08 14:43:02 -0400 |
commit | 9a6acd5adddc5dd0604a3f7ada6608885e445293 (patch) | |
tree | 9c74106b6a9df5dedc90b75bcc7545af7561d7a9 /Makefile.config | |
parent | 964596a34c3cf842eddee09b128009c28b5629ba (diff) | |
download | kernel-9a6acd5adddc5dd0604a3f7ada6608885e445293.tar.gz kernel-9a6acd5adddc5dd0604a3f7ada6608885e445293.tar.xz kernel-9a6acd5adddc5dd0604a3f7ada6608885e445293.zip |
Remove ppc32 support
The powerpc secondary arch team has disabled all ppc32 builds in koji for
F21 and beyond:
https://lists.fedoraproject.org/pipermail/ppc/2014-May/002801.html
FESCo also recently said that dropped or new architectures must essentially
prove they have an active and viable effort behind them before being
considered for Secondary Arch support. This effort has not materialized in
the interim since the current powerpc team dropped ppc32.
There's little point in keeping support for ppc32 support in the kernel
package when it will never be built. This also removes the -smp variant
and with_smp* support, as that was only used on ppc32.
Diffstat (limited to 'Makefile.config')
-rw-r--r-- | Makefile.config | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Makefile.config b/Makefile.config index 348396828..63549f642 100644 --- a/Makefile.config +++ b/Makefile.config @@ -11,11 +11,10 @@ CONFIGFILES = \ $(CFG)-s390x.config \ $(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)-ppc64le.config -PLATFORMS = x86 x86_64 powerpc powerpc32 powerpc64 s390x arm arm64 +PLATFORMS = x86 x86_64 powerpc powerpc64 s390x arm arm64 TEMPFILES = $(addprefix temp-, $(addsuffix -generic, $(PLATFORMS))) configs: $(CONFIGFILES) @@ -81,9 +80,6 @@ temp-powerpc-generic: config-powerpc-generic temp-generic temp-powerpc-debug-generic: config-powerpc-generic temp-debug-generic perl merge.pl $^ > $@ -temp-powerpc32-generic: config-powerpc32-generic temp-powerpc-generic - perl merge.pl $^ > $@ - temp-powerpc64-generic: config-powerpc64 temp-powerpc-generic perl merge.pl $^ > $@ @@ -134,9 +130,3 @@ $(CFG)-armv7hl-lpae.config: /dev/null temp-armv7-lpae $(CFG)-aarch64.config: /dev/null temp-arm64 perl merge.pl $^ arm64 > $@ - -$(CFG)-ppc.config: /dev/null temp-powerpc32-generic - perl merge.pl $^ powerpc > $@ - -$(CFG)-ppc-smp.config: config-powerpc32-smp temp-powerpc32-generic - perl merge.pl $^ powerpc > $@ |