diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-12-18 15:29:23 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-12-18 15:29:23 +0000 |
commit | f3662fcd2c741ce40e53da6b5fcb900cf5f080a8 (patch) | |
tree | 2d2d4cba28dfab3b896222bd6c8520aa72af3245 /util | |
parent | 99cf3499b0cef4077bc9c0e0db4b6771656efbdf (diff) | |
download | coreboot-f3662fcd2c741ce40e53da6b5fcb900cf5f080a8.tar.gz coreboot-f3662fcd2c741ce40e53da6b5fcb900cf5f080a8.tar.bz2 coreboot-f3662fcd2c741ce40e53da6b5fcb900cf5f080a8.zip |
CONFIG_K8_MEM_BANK_B_ONLY and CONFIG_PCIE_CONFIGSPACE_HOLE aren't used _anywhere_, so drop
them from view (they could be dropped from newconfig, too - but why bother?)
trivial
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4984 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rwxr-xr-x | util/compareboard/compareboard | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/compareboard/compareboard b/util/compareboard/compareboard index e27fff489014..7fb7e5e458bb 100755 --- a/util/compareboard/compareboard +++ b/util/compareboard/compareboard @@ -36,7 +36,6 @@ fi if [ `grep -c "^CONFIG_NORTHBRIDGE_AMD_AMDK8" $A/new` -eq 0 ]; then sed \ -e "/^CONFIG_K8_HT_FREQ_1G_SUPPORT / d" \ - -e "/^CONFIG_K8_MEM_BANK_B_ONLY / d" \ $A/old > $A/old.tmp && mv $A/old.tmp $A/old fi @@ -60,6 +59,7 @@ sed \ -e "/^CONFIG_RESET_/ d" \ -e "/^CONFIG_XIP_ROM_/ d" \ -e "/^CONFIG_PRECOMPRESSED_PAYLOAD / d" \ + -e "/^CONFIG_K8_MEM_BANK_B_ONLY / d" \ -e "/^CONFIG_MULTIBOOT / d" \ -e "/^CONFIG_ARCH_POWERPC / d" \ -e "/^CONFIG_RESET / d" \ @@ -77,6 +77,7 @@ sed \ -e "/^CONFIG_STACK_SIZE / d" \ -e "/^CONFIG_GDB_STUB / d" \ -e "/^CONFIG_VIDEO_MB / d" \ + -e "/^CONFIG_PCIE_CONFIGSPACE_HOLE / d" \ $A/old > $A/old.filtered sed \ -e "/^CONFIG_VENDOR_/ d" \ |