mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Since it was introduced in5a6087d62e(toolchain: add powerpc SPE ABI support), the CLASSIC vs. SPE choice for the ABI was never really a choice: CPU without SPE could only use the CLASSIC ABI, while CPUs with SPE could only use the SPE ABI. Commitb4c824562b(powerpc: add BR2_POWERPC_CPU_HAS_SPE to replace adhoc deps/checks) added a blind option that CPUs with SPE would select rather than duplicate the ad-hoc dependencies in both CLASSIC and SPE ABI options. Since then, it was even more obvious that the ABI choice was really not a choice, as the two options have mutually exclusive conditions. Drop the useless choice, and directly use the blind option as selected by the specific CPUs. We don't need legacy handling, because the situation fixes itself. Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Joel Stanley <joel@jms.id.au> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>