Eliminate some noise in the output of compareboard on non-K8/Fam10h boards
authorPatrick Georgi <patrick.georgi@coresystems.de>
Tue, 1 Dec 2009 18:19:42 +0000 (18:19 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Tue, 1 Dec 2009 18:19:42 +0000 (18:19 +0000)
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

util/compareboard/compareboard

index 802395433781407dbd62046fd0b900b3027ff32a..d8f7c02e687ed9c4219af0cd56ecc803a1db0aee 100755 (executable)
@@ -23,6 +23,21 @@ mkdir -p $A
 sort coreboot-builds/$BOARDPATH/fallback/ldoptions > $A/old
 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 \
        -e "/^CONFIG_CONSOLE_/ d" \
        -e "/^CONFIG_RESET_/ d" \