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"