RPi: drop Slice/Slice3 devices in options file

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2020-09-28 16:11:31 +02:00
parent 4bc115db14
commit 8e6605f6da

View File

@ -8,9 +8,9 @@
arm) arm)
# Valid TARGET_CPU for Raspberry Pi based devices are: # Valid TARGET_CPU for Raspberry Pi based devices are:
# arm1176jzf-s cortex-a7 cortex-a53 # arm1176jzf-s cortex-a7 cortex-a53
if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then if [ "$DEVICE" = "RPi" ]; then
TARGET_CPU="arm1176jzf-s" TARGET_CPU="arm1176jzf-s"
elif [ "$DEVICE" = "RPi2" -o "$DEVICE" = "Slice3" ]; then elif [ "$DEVICE" = "RPi2" ]; then
TARGET_CPU="cortex-a7" TARGET_CPU="cortex-a7"
elif [ "$DEVICE" = "RPi4" ]; then elif [ "$DEVICE" = "RPi4" ]; then
TARGET_CPU="cortex-a53" TARGET_CPU="cortex-a53"
@ -26,9 +26,9 @@
# This specifies what floating point hardware (or hardware emulation) is # This specifies what floating point hardware (or hardware emulation) is
# available on the target. Permissible names are: # available on the target. Permissible names are:
# vfp neon-vfpv4 neon-fp-armv8 # vfp neon-vfpv4 neon-fp-armv8
if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then if [ "$DEVICE" = "RPi" ]; then
TARGET_FPU="vfp" TARGET_FPU="vfp"
elif [ "$DEVICE" = "RPi2" -o "$DEVICE" = "Slice3" ]; then elif [ "$DEVICE" = "RPi2" ]; then
TARGET_FPU="neon-vfpv4" TARGET_FPU="neon-vfpv4"
elif [ "$DEVICE" = "RPi4" ]; then elif [ "$DEVICE" = "RPi4" ]; then
TARGET_FPU="neon-fp-armv8" TARGET_FPU="neon-fp-armv8"