Fix some conflicting types of variables
authorPatrick Georgi <patrick.georgi@coresystems.de>
Thu, 13 Aug 2009 07:33:55 +0000 (07:33 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Thu, 13 Aug 2009 07:33:55 +0000 (07:33 +0000)
Remove the normal/* files from the image. they're just
copies of fallback/* anyway.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4541 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/arch/i386/Makefile.inc
src/cpu/amd/model_fxx/Kconfig
src/mainboard/amd/serengeti_cheetah/Kconfig
src/northbridge/amd/amdk8/Kconfig

index 4195183f8d39bd5507682308d60a435139c3464a..ecfa7dc619f62d3ac5922958e433ccc82bc3a81d 100644 (file)
@@ -14,7 +14,6 @@ ifdef POST_EVALUATION
 $(obj)/coreboot.rom: $(obj)/coreboot.bootblock $(obj)/coreboot_ram $(CBFSTOOL)
        $(Q)rm -f $@
        $(Q)$(CBFSTOOL) $@ create $(shell expr 1024 \* $(CONFIG_COREBOOT_ROMSIZE_KB)) 131072 $(obj)/coreboot.bootblock
-       $(Q)$(CBFSTOOL) $@ add-stage  $(obj)/coreboot_ram normal/coreboot_ram $(CBFS_COMPRESS_FLAG)
        $(Q)if [ -f fallback/coreboot_apc ]; \
        then \
                $(CBFSTOOL) $@ add-stage fallback/coreboot_apc fallback/coreboot_apc $(CBFS_COMPRESS_FLAG); \
@@ -25,8 +24,6 @@ ifeq ($(CONFIG_PAYLOAD_NONE),y)
 else
        printf "    PAYLOAD    $(CONFIG_FALLBACK_PAYLOAD_FILE) $(COMPRESSFLAG)\n"
        $(Q)$(CBFSTOOL) ./build/coreboot.rom add-payload $(CONFIG_FALLBACK_PAYLOAD_FILE)  fallback/payload $(CBFS_COMPRESS_FLAG)
-       printf "    PAYLOAD    $(CONFIG_NORMAL_PAYLOAD_FILE) $(COMPRESSFLAG)\n"
-       $(Q)$(CBFSTOOL) ./build/coreboot.rom add-payload $(CONFIG_NORMAL_PAYLOAD_FILE)  normal/payload $(CBFS_COMPRESS_FLAG)
        $(CBFSTOOL) ./build/coreboot.rom print
 endif
 
index f397c3ea9859fb48781b7a1f48f7d928d1d4d7f1..db9f5c5a2e1657ebc8c994cb706946c3742dd82a 100644 (file)
@@ -1,10 +1,10 @@
 config HAVE_INIT_TIMER
-       int
-       default 1
+       bool
+       default y
 
 config HAVE_MOVNTI
-       int
-       default 1
+       bool
+       default y
 
 config CPU_ADDR_BITS
        int
index 3a64d0805a9251a6abbb327c618926b07572aeff..b148558e4697e720f0b5b7e9b7ccd0818c75812b 100644 (file)
@@ -49,13 +49,13 @@ config APIC_ID_OFFSET
        depends on BOARD_AMD_SERENGETI_CHEETAH
 
 config HAVE_HARD_RESET
-       int
-       default 1
+       bool
+       default y
        depends on BOARD_AMD_SERENGETI_CHEETAH
 
 config IOAPIC
-       int
-       default 1
+       bool
+       default y
        depends on BOARD_AMD_SERENGETI_CHEETAH
 
 config SB_HT_CHAIN_ON_BUS0
@@ -164,8 +164,8 @@ config USE_INIT
        depends on BOARD_AMD_SERENGETI_CHEETAH
 
 config SERIAL_CPU_INIT
-       int
-       default 0
+       bool
+       default n
        depends on BOARD_AMD_SERENGETI_CHEETAH
 
 config AP_CODE_IN_CAR
index 181f1c219af1bd6338dd96c750b0f77767049571..a7e56d0e46858e64960c74ac2ae153b3170a3d47 100644 (file)
@@ -26,8 +26,8 @@ config AGP_APERTURE_SIZE
        default 0x4000000
 
 config HAVE_HIGH_TABLES
-       int
-       default 1
+       bool
+       default y
 
 
-source src/northbridge/amd/amdk8/root_complex/Kconfig
\ No newline at end of file
+source src/northbridge/amd/amdk8/root_complex/Kconfig