From 8e6605f6da56f25a00272b1cbacb93d40200153f Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Mon, 28 Sep 2020 16:11:31 +0200 Subject: [PATCH] RPi: drop Slice/Slice3 devices in options file Signed-off-by: Matthias Reichl --- projects/RPi/options | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/RPi/options b/projects/RPi/options index 40ead634e5..df6a0cc290 100644 --- a/projects/RPi/options +++ b/projects/RPi/options @@ -8,9 +8,9 @@ arm) # Valid TARGET_CPU for Raspberry Pi based devices are: # arm1176jzf-s cortex-a7 cortex-a53 - if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then + if [ "$DEVICE" = "RPi" ]; then TARGET_CPU="arm1176jzf-s" - elif [ "$DEVICE" = "RPi2" -o "$DEVICE" = "Slice3" ]; then + elif [ "$DEVICE" = "RPi2" ]; then TARGET_CPU="cortex-a7" elif [ "$DEVICE" = "RPi4" ]; then TARGET_CPU="cortex-a53" @@ -26,9 +26,9 @@ # This specifies what floating point hardware (or hardware emulation) is # available on the target. Permissible names are: # vfp neon-vfpv4 neon-fp-armv8 - if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then + if [ "$DEVICE" = "RPi" ]; then TARGET_FPU="vfp" - elif [ "$DEVICE" = "RPi2" -o "$DEVICE" = "Slice3" ]; then + elif [ "$DEVICE" = "RPi2" ]; then TARGET_FPU="neon-vfpv4" elif [ "$DEVICE" = "RPi4" ]; then TARGET_FPU="neon-fp-armv8"