[coreboot] r147 - in buildrom-devel: . config/payloads config/platforms

svn at coreboot.org svn at coreboot.org
Thu Apr 17 17:21:08 CEST 2008


Author: uwe
Date: 2008-04-17 17:21:08 +0200 (Thu, 17 Apr 2008)
New Revision: 147

Modified:
   buildrom-devel/Config.in
   buildrom-devel/config/payloads/Config.in
   buildrom-devel/config/platforms/Config.in
Log:
Change all kconfig 'depends' keywords (which are deprecated in recent
kconfig versions) to 'depends on' (trivial).

Signed-off-by: Uwe Hermann <uwe at hermann-uwe.de>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>



Modified: buildrom-devel/Config.in
===================================================================
--- buildrom-devel/Config.in	2008-04-16 23:40:46 UTC (rev 146)
+++ buildrom-devel/Config.in	2008-04-17 15:21:08 UTC (rev 147)
@@ -70,7 +70,7 @@
 
 config COREBOOT_V3
 	bool "coreboot v3"
-	depends EXPERIMENTAL
+	depends on EXPERIMENTAL
 	help
 		Select this option to build a coreboot v3 based ROM.  This
 		is experimental, and only supports a few platforms.
@@ -78,7 +78,7 @@
 
 config COREBOOT_V3_OVERRIDE_ROM_SIZE
 	bool "Override default ROM size"
-	depends COREBOOT_V3
+	depends on COREBOOT_V3
 	help
 		Select this option to specify your own ROM size.  Use this
 		option if your chip is a different size than the one that
@@ -87,15 +87,15 @@
 config COREBOOT_V3_ROM_SIZE
 	int "coreboot v3 romsize in KB"
 	default "1024"
-	depends COREBOOT_V3_OVERRIDE_ROM_SIZE
+	depends on COREBOOT_V3_OVERRIDE_ROM_SIZE
 	help
 		Specify the ROM size here in KB.
 
 config USE_LZMA
 	bool "Enable LZMA compression"
-	depends !(PAYLOAD_OFW && COREBOOT_V2)
-	depends !(PAYLOAD_FILO && COREBOOT_V2)
-	depends !(PAYLOAD_ETHERBOOT && COREBOOT_V2)
+	depends on !(PAYLOAD_OFW && COREBOOT_V2)
+	depends on !(PAYLOAD_FILO && COREBOOT_V2)
+	depends on !(PAYLOAD_ETHERBOOT && COREBOOT_V2)
 	default y
 	help
 	  Precompress the payload with LZMA when using coreboot v2. This doesn't
@@ -106,7 +106,7 @@
 
 config CB_USE_BUILD
 	bool "Specify a coreboot build dir"
-	depends ADVANCED
+	depends on ADVANCED
 	default n
 	help
 	  Say 'y' here to specify an existing directory to build 
@@ -115,11 +115,11 @@
 
 config CB_BUILDDIR
 	string "coreboot build directory"
-	depends CB_USE_BUILD
+	depends on CB_USE_BUILD
 
 config CB_CUSTOM_REV
 	bool "Override the platform coreboot revision"
-	depends ADVANCED && !CB_USE_BUILD
+	depends on ADVANCED && !CB_USE_BUILD
 	default n
 	help
 	  Say 'y' here to overide the default coreboot SVN revsion
@@ -127,7 +127,7 @@
 
 config CB_REVISION
 	string "coreboot revision"
-	depends CB_CUSTOM_REV
+	depends on CB_CUSTOM_REV
 
 endmenu
 
@@ -149,7 +149,7 @@
 
 config TARGET_32BIT
 	bool
-	depends !TARGET_64BIT
+	depends on !TARGET_64BIT
 	default y
 
 config TARGET_64BIT
@@ -161,7 +161,7 @@
 
 config USE_NRV2B
 	bool
-	depends PLATFORM_GEODE && COREBOOT_V2
+	depends on PLATFORM_GEODE && COREBOOT_V2
 	default y
 
 source config/platforms/Config.in

Modified: buildrom-devel/config/payloads/Config.in
===================================================================
--- buildrom-devel/config/payloads/Config.in	2008-04-16 23:40:46 UTC (rev 146)
+++ buildrom-devel/config/payloads/Config.in	2008-04-17 15:21:08 UTC (rev 147)
@@ -16,35 +16,35 @@
 	bool "Custom Payload"
 
 config PAYLOAD_GPXE
-	depends EXPERIMENTAL
+	depends on EXPERIMENTAL
 	bool "GPXE"
 
 config PAYLOAD_ETHERBOOT
-	depends !PLATFORM_M57SLI
-	depends !PLATFORM_TYAN_S2891
+	depends on !PLATFORM_M57SLI
+	depends on !PLATFORM_TYAN_S2891
 	bool "Etherboot"
 
 config PAYLOAD_FILO
 	bool "FILO"
 
 config PAYLOAD_KERNEL
-	depends !PLATFORM_GA_2761GXDK
+	depends on !PLATFORM_GA_2761GXDK
 	bool "Linux kernel payload"
 	select PAYLOAD_64BIT
 
 config PAYLOAD_LAB
-	depends !PLATFORM_GA_2761GXDK
+	depends on !PLATFORM_GA_2761GXDK
 	bool "Linux As Bootloader"
 	select PAYLOAD_64BIT
 
 #config PAYLOAD_OFW
-#	depends !PLATFORM_M57SLI
-#	depends !PLATFORM_TYAN_S2891
+#	depends on !PLATFORM_M57SLI
+#	depends on !PLATFORM_TYAN_S2891
 #	bool "OpenFirmware"
 
 config PAYLOAD_MEMTEST
-	depends !PLATFORM_M57SLI
-	depends !PLATFORM_TYAN_S2891
+	depends on !PLATFORM_M57SLI
+	depends on !PLATFORM_TYAN_S2891
 	bool "Memtest86"
 
 config PAYLOAD_TINT
@@ -53,7 +53,7 @@
 
 choice
 	prompt "Desired target architecture"
-	depends PLATFORM_SUPPORT_64BIT && PAYLOAD_64BIT
+	depends on PLATFORM_SUPPORT_64BIT && PAYLOAD_64BIT
 	default CHOOSE_32BIT
 	help
 	  Chose the target architecture for the payload.
@@ -69,7 +69,7 @@
 endchoice
 
 menu "Custom Payload"
-depends PAYLOAD_CUSTOM
+depends on PAYLOAD_CUSTOM
 config CUSTOM_PAYLOAD
 	string "Custom payload filename"
 	default ""
@@ -81,7 +81,7 @@
 endmenu
  
 menu "Kernel Configuration"
-depends PAYLOAD_KERNEL
+depends on PAYLOAD_KERNEL
 
 config CMDLINE
 	string "Kernel command line"
@@ -92,7 +92,7 @@
 endmenu
 
 menu "LAB Configuration"
-depends PAYLOAD_LAB
+depends on PAYLOAD_LAB
 
 config KBL_KEXEC_ONLY
 	bool
@@ -123,7 +123,7 @@
 endmenu
 
 menu "Memtest86 Configuration"
-depends PAYLOAD_MEMTEST
+depends on PAYLOAD_MEMTEST
 
 config MEMTEST_SERIAL
        bool "Configure memtest for serial output"
@@ -134,7 +134,7 @@
 endmenu
 
 menu "Etherboot Configuration"
-depends PAYLOAD_ETHERBOOT
+depends on PAYLOAD_ETHERBOOT
 
 config ETHERBOOT_DRIVER
 	string "Etherboot NIC driver to support"
@@ -146,8 +146,8 @@
 endmenu
 
 menu "GPXE Configuration"
-depends PAYLOAD_GPXE
-depends EXPERIMENTAL
+depends on PAYLOAD_GPXE
+depends on EXPERIMENTAL
 
 config GPXE_DRIVER
 	string "GPXE NIC driver to support"

Modified: buildrom-devel/config/platforms/Config.in
===================================================================
--- buildrom-devel/config/platforms/Config.in	2008-04-16 23:40:46 UTC (rev 146)
+++ buildrom-devel/config/platforms/Config.in	2008-04-17 15:21:08 UTC (rev 147)
@@ -17,7 +17,7 @@
 
 config VENDOR_GIGABYTE
 	bool "GIGABYTE"
-	depends COREBOOT_V2
+	depends on COREBOOT_V2
 
 config VENDOR_PC_ENGINES
 	bool "PC Engines"
@@ -27,11 +27,11 @@
 
 config VENDOR_SUPERMICRO
 	bool "Supermicro"
-	depends COREBOOT_V2
+	depends on COREBOOT_V2
 
 config VENDOR_TYAN
 	bool "Tyan"
-	depends COREBOOT_V2
+	depends on COREBOOT_V2
 
 endchoice
 
@@ -43,98 +43,98 @@
 
 config PLATFORM_NORWICH
        bool "AMD Geode LX 'Norwich'"
-       depends VENDOR_AMD
+       depends on VENDOR_AMD
        select PLATFORM
        select PLATFORM_GEODE
 
 config PLATFORM_DBE61
        bool "Artec Group DBE61"
-       depends VENDOR_ARTEC_GROUP
+       depends on VENDOR_ARTEC_GROUP
        select PLATFORM
        select PLATFORM_GEODE
 
 config PLATFORM_ALIX1C
        bool "PC Engines ALIX1.C"
-       depends VENDOR_PC_ENGINES
+       depends on VENDOR_PC_ENGINES
        select PLATFORM
        select PLATFORM_GEODE
 
 config PLATFORM_MSM800SEV
        bool "Advanced Digital Logic MSM800SEV"
-       depends VENDOR_ADVANCED_DIGITAL_LOGIC
+       depends on VENDOR_ADVANCED_DIGITAL_LOGIC
        select PLATFORM
        select PLATFORM_GEODE
 
 config PLATFORM_DB800
 	bool "AMD DB800"
-	depends VENDOR_AMD
-	depends COREBOOT_V2
+	depends on VENDOR_AMD
+	depends on COREBOOT_V2
 	select PLATFORM
 	select PLATFORM_GEODE
 
 config PLATFORM_GA_M57SLI_S4
        bool "GIGABYTE GA-M57SLI-S4"
-       depends VENDOR_GIGABYTE
-       depends COREBOOT_V2
+       depends on VENDOR_GIGABYTE
+       depends on COREBOOT_V2
        select PLATFORM
        select PLATFORM_SUPPORT_64BIT
 
 config PLATFORM_GA_2761GXDK
 	bool "GIGABYTE GA-2761GXDK"
-	depends VENDOR_GIGABYTE
-	depends COREBOOT_V2
+	depends on VENDOR_GIGABYTE
+	depends on COREBOOT_V2
 	select PLATFORM
 	select PLATFORM_SUPPORT_64BIT
 
 config PLATFORM_TYAN_S2881
        bool "Tyan S2881"
-       depends VENDOR_TYAN
-       depends COREBOOT_V2
+       depends on VENDOR_TYAN
+       depends on COREBOOT_V2
        select PLATFORM
        select PLATFORM_SUPPORT_64BIT
 
 config PLATFORM_TYAN_S2882
        bool "Tyan S2882"
-       depends VENDOR_TYAN
-       depends COREBOOT_V2
+       depends on VENDOR_TYAN
+       depends on COREBOOT_V2
        select PLATFORM
        select PLATFORM_SUPPORT_64BIT
 
 config PLATFORM_TYAN_S2891
        bool "Tyan S2891"
-       depends VENDOR_TYAN
-       depends COREBOOT_V2
+       depends on VENDOR_TYAN
+       depends on COREBOOT_V2
        select PLATFORM
        select PLATFORM_SUPPORT_64BIT
 
 config PLATFORM_QEMU-X86
        bool "QEMU Emulator"
-       depends VENDOR_QEMU
+       depends on VENDOR_QEMU
        select PLATFORM
 
 config PLATFORM_SERENGETI_CHEETAH
        bool "AMD Serengeti-Cheetah"
-       depends VENDOR_AMD
+       depends on VENDOR_AMD
        select PLATFORM
        select PLATFORM_SUPPORT_64BIT
 
 config PLATFORM_SUPERMICRO_H8DMR
        bool "Supermicro H8DMR"
-       depends VENDOR_SUPERMICRO
-       depends COREBOOT_V2
+       depends on VENDOR_SUPERMICRO
+       depends on COREBOOT_V2
        select PLATFORM
        select PLATFORM_SUPPORT_64BIT
 
 config PLATFORM_CHEETAH_FAM10
 	bool "AMD Serengeti-Cheetah with fam10 processor"
-	depends VENDOR_AMD
+	depends on VENDOR_AMD
 	select PLATFORM
 	select PLATFORM_SUPPORT_64BIT
 endchoice
 
 choice
 	prompt "Geode VSA SMM handler"
-	depends PLATFORM_GEODE
+	depends on PLATFORM_GEODE
 	default VSA_LEGACY
 	help
 	  Select the SMM handler source to use with Geode platforms
@@ -144,14 +144,14 @@
 
 config VSA_OPENVSA
 	bool "OpenVSA"
-	depends EXPERIMENTAL
+	depends on EXPERIMENTAL
 
 endchoice
 
 
 config BUILD_QEMU
 	bool "Build QEMU with patches for LinuxBIOS"
-	depends PLATFORM_QEMU-X86
+	depends on PLATFORM_QEMU-X86
 	default n
 	help
 	  Say 'y' here to build a patched version of QEMU to work with
@@ -160,7 +160,7 @@
 
 config QEMU_CC
 	string "Compiler to use when building QEMU"
-	depends BUILD_QEMU
+	depends on BUILD_QEMU
 	default "gcc34"
 	help
           QEMU has known problems when built using gcc 4.x.
@@ -168,7 +168,7 @@
 
 config SIMNOW
 	bool "Build for the AMD SimNow (TM) emulator"
-	depends PLATFORM_SERENGETI_CHEETAH || PLATFORM_SERENGETI_CHEETAH_64
+	depends on PLATFORM_SERENGETI_CHEETAH || PLATFORM_SERENGETI_CHEETAH_64
 	default n
 	help
 	  Say 'y' here to patch the build to work on an





More information about the coreboot mailing list