boardstatus/towiki: Declare southbridge=northbridge=cpu on SOCs
Change-Id: I3a38ca834606bb53e6f82cbe79c3a99288429aee Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/5124 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
This commit is contained in:
parent
400c05cf25
commit
b845636ce6
|
@ -224,6 +224,8 @@ EOF
|
|||
case "$cpu" in
|
||||
ALLWINNER_A10)
|
||||
cpu_nice="Allwinner A10"
|
||||
northbridge_nice="Allwinner A10"
|
||||
southbridge_nice="Allwinner A10"
|
||||
socket_nice="?";;
|
||||
AMD_GEODE_*)
|
||||
cpu_nice="AMD Geode™ ${cpu#AMD_GEODE_}";
|
||||
|
@ -272,22 +274,32 @@ EOF
|
|||
socket_nice="Socket 939"
|
||||
;;
|
||||
AMD_SC520)
|
||||
cpu_nice="AMD Élan™SC520";
|
||||
cpu_nice="AMD Élan™ SC520";
|
||||
northbridge_nice="AMD Élan™ SC520";
|
||||
southbridge_nice="AMD Élan™ SC520";
|
||||
socket_nice="—";;
|
||||
ARMLTD_CORTEX_A9)
|
||||
cpu_nice="ARM Cortex A9";
|
||||
northbridge_nice="ARM Cortex A9";
|
||||
southbridge_nice="ARM Cortex A9";
|
||||
socket_nice="?";;
|
||||
DMP_VORTEX86EX)
|
||||
cpu_nice="DMP VORTEX86EX";
|
||||
socket_nice="?";;
|
||||
SAMSUNG_EXYNOS5420)
|
||||
cpu_nice="Samsung Exynos 5420";
|
||||
northbridge_nice="Samsung Exynos 5420";
|
||||
southbridge_nice="Samsung Exynos 5420";
|
||||
socket_nice="?";;
|
||||
SAMSUNG_EXYNOS5250)
|
||||
cpu_nice="Samsung Exynos 5250";
|
||||
northbridge_nice="Samsung Exynos 5250";
|
||||
southbridge_nice="Samsung Exynos 5250";
|
||||
socket_nice="?";;
|
||||
TI_AM335X)
|
||||
cpu_nice="TI AM335X";
|
||||
southbridge_nice="TI AM335X";
|
||||
northbridge_nice="TI AM335X";
|
||||
socket_nice="?";;
|
||||
INTEL_SLOT_1)
|
||||
cpu_nice="Intel® Pentium® II/III, Celeron®";
|
||||
|
@ -378,6 +390,16 @@ EOF
|
|||
socket_nice="$cpu";;
|
||||
esac
|
||||
|
||||
if [ x"$northbridge_nice" = x ]; then
|
||||
if grep 'select SOC_INTEL_BAYTRAIL' "$vendor_board_dir/Kconfig" > /dev/null ; then
|
||||
southbridge_nice="Intel® Baytrail"
|
||||
northbridge_nice="Intel® Baytrail"
|
||||
cpu_nice="Intel® Baytrail"
|
||||
socket_nice="—"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
echo "|- bgcolor=\"#$color\""
|
||||
echo "| $vendor_nice"
|
||||
echo -n "| [[Board:$vendor/$board|$board_nice]]"
|
||||
|
|
Loading…
Reference in New Issue