Make "KBuild report" a bit happier
- drop some unused options from "newconfig" - filter some Kconfig only options from the report - drop targets directory of a non existent mainboard. (trivial) Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4981 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
48ca7b2d08
commit
1a4d90078a
|
@ -264,12 +264,6 @@ define CONFIG_RESET
|
||||||
export always
|
export always
|
||||||
comment "Hardware reset vector address"
|
comment "Hardware reset vector address"
|
||||||
end
|
end
|
||||||
define CONFIG_EXCEPTION_VECTORS
|
|
||||||
default {CONFIG_ROMBASE+0x100}
|
|
||||||
format "0x%x"
|
|
||||||
export always
|
|
||||||
comment "Address of exception vector table"
|
|
||||||
end
|
|
||||||
define CONFIG_STACK_SIZE
|
define CONFIG_STACK_SIZE
|
||||||
default 0x2000
|
default 0x2000
|
||||||
format "0x%x"
|
format "0x%x"
|
||||||
|
@ -845,11 +839,6 @@ define CONFIG_UDELAY_LAPIC
|
||||||
export used
|
export used
|
||||||
comment "Implement udelay with the x86 Local APIC"
|
comment "Implement udelay with the x86 Local APIC"
|
||||||
end
|
end
|
||||||
define CONFIG_FAKE_SPDROM
|
|
||||||
default 0
|
|
||||||
export always
|
|
||||||
comment "Use this to fake spd rom values"
|
|
||||||
end
|
|
||||||
|
|
||||||
define CONFIG_GENERATE_ACPI_TABLES
|
define CONFIG_GENERATE_ACPI_TABLES
|
||||||
default 0
|
default 0
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
# Config file for the Momentum Apache dual 970 board
|
|
||||||
# This will make a target directory of ./apache
|
|
||||||
|
|
||||||
target apache
|
|
||||||
|
|
||||||
mainboard momentum/apache
|
|
||||||
|
|
||||||
# Apache Demo Board
|
|
||||||
romimage "fallback"
|
|
||||||
## Base of ROM
|
|
||||||
option CONFIG_ROMBASE=0xfff00000
|
|
||||||
|
|
||||||
## Apache reset vector
|
|
||||||
option CONFIG_RESET=CONFIG_ROMBASE+0x100
|
|
||||||
|
|
||||||
## Exception vectors (other than reset vector)
|
|
||||||
option CONFIG_EXCEPTION_VECTORS=CONFIG_RESET+0x100
|
|
||||||
|
|
||||||
## Start of coreboot in the boot rom
|
|
||||||
## = CONFIG_RESET + exeception vector table size
|
|
||||||
option CONFIG_ROMSTART=CONFIG_RESET+0x3100
|
|
||||||
|
|
||||||
## Coreboot C code runs at this location in RAM
|
|
||||||
option CONFIG_RAMBASE=0x00100000
|
|
||||||
option CONFIG_RAMSTART=0x00100000
|
|
||||||
end
|
|
||||||
|
|
||||||
buildrom ./coreboot.rom CONFIG_ROM_SIZE "fallback"
|
|
|
@ -84,6 +84,9 @@ sed \
|
||||||
-e "/^CONFIG_STACK_SIZE / d" \
|
-e "/^CONFIG_STACK_SIZE / d" \
|
||||||
-e "/^CONFIG_GDB_STUB / d" \
|
-e "/^CONFIG_GDB_STUB / d" \
|
||||||
-e "/^CONFIG_VIDEO_MB / d" \
|
-e "/^CONFIG_VIDEO_MB / d" \
|
||||||
|
-e "/^CONFIG_EXPERT / d" \
|
||||||
|
-e "/^CONFIG_VGA_BIOS / d" \
|
||||||
|
-e "/^CONFIG_WARNINGS_ARE_ERRORS / d" \
|
||||||
$A/new > $A/new.filtered
|
$A/new > $A/new.filtered
|
||||||
|
|
||||||
normalize $A/old.filtered > $A/old.normalized
|
normalize $A/old.filtered > $A/old.normalized
|
||||||
|
|
Loading…
Reference in New Issue