rpi: cleanup valid CPU/FPU comment and compression methods

Also corrects comment typo's

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
This commit is contained in:
Ian Leonard 2018-07-21 22:37:48 +00:00
parent ab31e8cc92
commit 75d7a71e4b

View File

@ -6,17 +6,8 @@
# generated code. # generated code.
case $TARGET_ARCH in case $TARGET_ARCH in
arm) arm)
# TARGET_CPU: # Valid TARGET_CPU for Raspberry Pi based devices are:
# arm2 arm250 arm3 arm6 arm60 arm600 arm610 arm620 arm7 arm7m arm7d # arm1176jzf-s cortex-a7 cortex-a53
# arm7dm arm7di arm7dmi arm70 arm700 arm700i arm710 arm710c
# arm7100 arm720 arm7500 arm7500fe arm7tdmi arm7tdmi-s arm710t
# arm720t arm740t strongarm strongarm110 strongarm1100
# strongarm1110 arm8 arm810 arm9 arm9e arm920 arm920t arm922t
# arm946e-s arm966e-s arm968e-s arm926ej-s arm940t arm9tdmi
# arm10tdmi arm1020t arm1026ej-s arm10e arm1020e arm1022e
# arm1136j-s arm1136jf-s mpcore mpcorenovfp arm1156t2-s
# arm1176jz-s arm1176jzf-s cortex-a8 cortex-a9 cortex-r4
# cortex-r4f cortex-m3 cortex-m1 xscale iwmmxt iwmmxt2 ep9312.
if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then
TARGET_CPU="arm1176jzf-s" TARGET_CPU="arm1176jzf-s"
@ -29,12 +20,10 @@
# soft softfp hard # soft softfp hard
TARGET_FLOAT="hard" TARGET_FLOAT="hard"
# TARGET_FPU: # Valid TARGET_FPU for Raspberry Pi based devices:
# 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:
# fpa fpe2 fpe3 maverick vfp vfpv3 vfpv3-fp16 vfpv3-d16 vfpv3-d16-fp16 # vfp neon-vfpv4 neon-fp-armv8
# vfpv3xd vfpv3xd-fp16 neon neon-fp16 vfpv4 vfpv4-d16 fpv4-sp-d16
# neon-vfpv4.
if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then if [ "$DEVICE" = "RPi" -o "$DEVICE" = "Slice" ]; then
TARGET_FPU="vfp" TARGET_FPU="vfp"
@ -99,7 +88,7 @@ fi
# Project CFLAGS # Project CFLAGS
PROJECT_CFLAGS="" PROJECT_CFLAGS=""
# SquashFS compression method (gzip / lzo / xz) # SquashFS compression method (gzip / lzo / xz / zstd)
SQUASHFS_COMPRESSION="lzo" SQUASHFS_COMPRESSION="lzo"
@ -159,7 +148,7 @@ fi
KERNEL_NAME="kernel.img" KERNEL_NAME="kernel.img"
# additional drivers to install: # additional drivers to install:
# for a list of additinoal drivers see packages/linux-drivers # for a list of additional drivers see packages/linux-drivers
# Space separated list is supported, # Space separated list is supported,
# e.g. ADDITIONAL_DRIVERS="DRIVER1 DRIVER2" # e.g. ADDITIONAL_DRIVERS="DRIVER1 DRIVER2"
ADDITIONAL_DRIVERS="$ADDITIONAL_DRIVERS rpi-cirrus-config" ADDITIONAL_DRIVERS="$ADDITIONAL_DRIVERS rpi-cirrus-config"
@ -172,6 +161,6 @@ fi
DRIVER_ADDONS_SUPPORT="yes" DRIVER_ADDONS_SUPPORT="yes"
# driver addons to install: # driver addons to install:
# for a list of additinoal drivers see packages/linux-driver-addons # for a list of additional drivers see packages/linux-driver-addons
# Space separated list is supported, # Space separated list is supported,
DRIVER_ADDONS="crazycat hauppauge" DRIVER_ADDONS="crazycat hauppauge"