Eliminate some noise in the output of compareboard on non-K8/Fam10h boards

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4972 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi 2009-12-01 18:19:42 +00:00
parent 0f6ee7b719
commit eb097aad6a
1 changed files with 15 additions and 0 deletions

View File

@ -23,6 +23,21 @@ mkdir -p $A
sort coreboot-builds/$BOARDPATH/fallback/ldoptions > $A/old sort coreboot-builds/$BOARDPATH/fallback/ldoptions > $A/old
sort build/ldoptions > $A/new sort build/ldoptions > $A/new
if [ `grep -c "^CONFIG_NORTHBRIDGE_AMD" $A/new` -eq 0 ]; then
sed \
-e "/^CONFIG_C[BD]B / d" \
-e "/^CONFIG_AMDMCT / d" \
-e "/^CONFIG_HT3_SUPPORT / d" \
-e "/^CONFIG_HT_CHAIN_UNITID_BASE / d" \
-e "/^CONFIG_HT_CHAIN_END_UNITID_BASE / d" \
-e "/^CONFIG_K8_HT_FREQ_1G_SUPPORT / d" \
-e "/^CONFIG_K8_MEM_BANK_B_ONLY / d" \
-e "/^CONFIG_MEM_TRAIN_SEQ / d" \
-e "/^CONFIG_SB_HT_CHAIN_ON_BUS0 / d" \
-e "/^CONFIG_SB_HT_CHAIN_UNITID_OFFSET_ONLY / d" \
$A/old > $A/old.tmp && mv $A/old.tmp $A/old
fi
sed \ sed \
-e "/^CONFIG_CONSOLE_/ d" \ -e "/^CONFIG_CONSOLE_/ d" \
-e "/^CONFIG_RESET_/ d" \ -e "/^CONFIG_RESET_/ d" \