Hi,
attached patch moves the failover configuration symbols to a global file, defined as bool, defaulting to false. Given that Kconfig doesn't support failover, there hardly will be a reason to enable it, and if there is, they can still be enabled as needed.
Signed-off-by: Patrick Georgi patrick.georgi@coresystems.de
Patrick Georgi wrote:
attached patch moves the failover configuration symbols to a global file, defined as bool, defaulting to false. Given that Kconfig doesn't support failover, there hardly will be a reason to enable it, and if there is, they can still be enabled as needed.
Signed-off-by: Patrick Georgi patrick.georgi@coresystems.de
Acked-by: Peter Stuge peter@stuge.se
+config HAVE_FAILOVER_BOOT +config USE_FAILOVER_IMAGE
Could we simplify to config FAILOVER or even further? Maybe something to look into when implementing it for CBFS.
//Peter
Am Samstag, den 03.10.2009, 22:55 +0200 schrieb Peter Stuge:
Acked-by: Peter Stuge peter@stuge.se
Thanks, r4714
+config HAVE_FAILOVER_BOOT +config USE_FAILOVER_IMAGE
Could we simplify to config FAILOVER or even further? Maybe something to look into when implementing it for CBFS.
They are still in use by newconfig, and are both required - They're only here so the code makes the right decisions. Nothing to simplify at this point.
Patrick