Edward O'Callaghan has uploaded this change for review.

View Change

meson: Rename 'config_raiden' to 'config_raiden_debug_spi'

Make meson build option name consistent with the the spi
masters implementation name.

BUG=none
TEST=builds

Change-Id: Icb6c73ab3d4369fcffb96eb117fc376da75dfb84
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
---
M meson.build
M meson_options.txt
2 files changed, 4 insertions(+), 4 deletions(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/14/49914/1
diff --git a/meson.build b/meson.build
index 556183e..05f7203 100644
--- a/meson.build
+++ b/meson.build
@@ -44,7 +44,7 @@
config_ene_lpc = get_option('config_ene_lpc')
config_ft2232_spi = get_option('config_ft2232_spi')
config_gfxnvidia = get_option('config_gfxnvidia')
-config_raiden = get_option('config_raiden')
+config_raiden_debug_spi = get_option('config_raiden_debug_spi')
config_internal = get_option('config_internal')
config_it8212 = get_option('config_it8212')
config_linux_mtd = get_option('config_linux_mtd')
@@ -111,7 +111,7 @@
config_atavia = false
config_drkaiser = false
config_gfxnvidia = false
- config_raiden = false
+ config_raiden_debug_spi = false
config_internal = false
config_it8212 = false
config_nic3com = false
@@ -183,7 +183,7 @@
srcs += 'gfxnvidia.c'
cargs += '-DCONFIG_GFXNVIDIA=1'
endif
-if config_raiden
+if config_raiden_debug_spi
srcs += 'raiden_debug_spi.c'
cargs += '-DCONFIG_RAIDEN_DEBUG_SPI=1'
endif
diff --git a/meson_options.txt b/meson_options.txt
index 89fcbee..b599d66 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -15,7 +15,7 @@
option('config_ene_lpc', type : 'boolean', value : true, description : 'ENE LPC interface keyboard controller')
option('config_ft2232_spi', type : 'boolean', value : true, description : 'FT2232 SPI dongles')
option('config_gfxnvidia', type : 'boolean', value : true, description : 'NVIDIA graphics cards')
-option('config_raiden', type : 'boolean', value : true, description : 'ChromiumOS Servo DUT debug board')
+option('config_raiden_debug_spi', type : 'boolean', value : true, description : 'ChromiumOS Servo DUT debug board')
option('config_internal', type : 'boolean', value : true, description : 'internal/onboard')
option('config_internal_dmi', type : 'boolean', value : true, description : 'Use internal DMI parser')
option('config_it8212', type : 'boolean', value : true, description : 'ITE IT8212F PATA')

To view, visit change 49914. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: Icb6c73ab3d4369fcffb96eb117fc376da75dfb84
Gerrit-Change-Number: 49914
Gerrit-PatchSet: 1
Gerrit-Owner: Edward O'Callaghan <quasisec@chromium.org>
Gerrit-MessageType: newchange