From a796ca5e7245db026e8c73563fb9fae858225235 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 24 Oct 2024 10:09:59 -0400 Subject: [PATCH] Kconfig: Remove references to manufacturers in Kconfig Avoid referring to particular board manufacturers in "make menuconfig". This information becomes rapidly outdated and is sometimes viewed by competing manufacturers as being unfair. Signed-off-by: Kevin O'Connor --- src/Kconfig | 4 ++-- src/atsam/Kconfig | 10 +++++----- src/atsamd/Kconfig | 18 +++++++++--------- src/lpc176x/Kconfig | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/Kconfig b/src/Kconfig index 1fdfe02cc09b..5b42467cb763 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -13,11 +13,11 @@ choice config MACH_AVR bool "Atmega AVR" config MACH_ATSAM - bool "SAM3/SAM4/SAM E70 (Due and Duet)" + bool "SAM3/SAM4/SAM E70" config MACH_ATSAMD bool "SAMC21/SAMD21/SAMD51/SAME5x" config MACH_LPC176X - bool "LPC176x (Smoothieboard)" + bool "LPC176x" config MACH_STM32 bool "STMicroelectronics STM32" config MACH_HC32F460 diff --git a/src/atsam/Kconfig b/src/atsam/Kconfig index 06e90d822543..4c20c2440064 100644 --- a/src/atsam/Kconfig +++ b/src/atsam/Kconfig @@ -22,19 +22,19 @@ config BOARD_DIRECTORY choice prompt "Processor model" config MACH_SAM3X8E - bool "SAM3x8e (Arduino Due)" + bool "SAM3x8e" select MACH_SAM3X config MACH_SAM3X8C - bool "SAM3x8c (Printrboard G2)" + bool "SAM3x8c" select MACH_SAM3X config MACH_SAM4S8C - bool "SAM4s8c (Duet Maestro)" + bool "SAM4s8c" select MACH_SAM4S config MACH_SAM4E8E - bool "SAM4e8e (Duet Wifi/Eth)" + bool "SAM4e8e" select MACH_SAM4E config MACH_SAME70Q20B - bool "SAME70Q20B (Duet 3 6HC)" + bool "SAME70Q20B" select MACH_SAME70 endchoice diff --git a/src/atsamd/Kconfig b/src/atsamd/Kconfig index 6ba0d7e6e6da..8914edef568d 100644 --- a/src/atsamd/Kconfig +++ b/src/atsamd/Kconfig @@ -27,31 +27,31 @@ config BOARD_DIRECTORY choice prompt "Processor model" config MACH_SAMC21G18 - bool "SAMC21G18 (Duet 3 Toolboard 1LC)" + bool "SAMC21G18" select MACH_SAMC21 config MACH_SAMD21G18 - bool "SAMD21G18 (Arduino Zero)" + bool "SAMD21G18" select MACH_SAMD21 config MACH_SAMD21E18 - bool "SAMD21E18 (Adafruit Trinket M0)" + bool "SAMD21E18" select MACH_SAMD21 config MACH_SAMD21J18 - bool "SAMD21J18 (ReprapWorld Minitronics v2)" + bool "SAMD21J18" select MACH_SAMD21 config MACH_SAMD21E15 bool "SAMD21E15" select MACH_SAMD21 config MACH_SAMD51G19 - bool "SAMD51G19 (Adafruit ItsyBitsy M4)" + bool "SAMD51G19" select MACH_SAMD51 config MACH_SAMD51J19 - bool "SAMD51J19 (Adafruit Metro M4)" + bool "SAMD51J19" select MACH_SAMD51 config MACH_SAMD51N19 bool "SAMD51N19" select MACH_SAMD51 config MACH_SAMD51P20 - bool "SAMD51P20 (Adafruit Grand Central)" + bool "SAMD51P20" select MACH_SAMD51 config MACH_SAME51J19 bool "SAME51J19" @@ -137,9 +137,9 @@ choice prompt "Bootloader offset" config SAMD_FLASH_START_2000 depends on MACH_SAMD21 - bool "8KiB bootloader (Arduino Zero)" + bool "8KiB bootloader" config SAMD_FLASH_START_4000 - bool "16KiB bootloader (Arduino M0, Duet 3 Bootloader)" + bool "16KiB bootloader" config SAMD_FLASH_START_0000 bool "No bootloader" endchoice diff --git a/src/lpc176x/Kconfig b/src/lpc176x/Kconfig index 390a081f034a..ee7580301020 100644 --- a/src/lpc176x/Kconfig +++ b/src/lpc176x/Kconfig @@ -65,7 +65,7 @@ config STACK_SIZE choice prompt "Bootloader offset" config LPC_FLASH_START_4000 - bool "16KiB bootloader (Smoothieware bootloader)" + bool "16KiB bootloader" config LPC_FLASH_START_0000 bool "No bootloader" endchoice