Author: uwe Date: 2009-08-25 14:19:28 +0200 (Tue, 25 Aug 2009) New Revision: 4571
Modified: trunk/coreboot-v2/src/cpu/x86/Kconfig Log: Fix copy-paste error in src/cpu/x86/Kconfig. That file defines XIP_ROM_BASE twice, but the latter definition should be XIP_ROM_SIZE (not *_BASE). These exact two definitions are listed in src/Kconfig already, though, so maybe one of the two locations should remove them? Signed-off-by: Uwe Hermann <[email protected]> Acked-by: Stefan Reinauer <[email protected]> Modified: trunk/coreboot-v2/src/cpu/x86/Kconfig =================================================================== --- trunk/coreboot-v2/src/cpu/x86/Kconfig 2009-08-25 12:18:05 UTC (rev 4570) +++ trunk/coreboot-v2/src/cpu/x86/Kconfig 2009-08-25 12:19:28 UTC (rev 4571) @@ -6,6 +6,6 @@ hex default 0xfffe0000 -config XIP_ROM_BASE +config XIP_ROM_SIZE hex default 0x2000 -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

