Skip to content

Commit 9abd469

Browse files
junjiemao1wenlingz
authored andcommitted
config: unify board names to lowercase
Currently board names are used inconsistently across the project. * Name of defconfigs for various boards use lowercase. * Directory of config files for various boards use lowercase. * CONFIG_BOARD uses uppercase. This confuses the configuration scripts and leads to unintended overwriting of .config, as well as missing of board-specific headers during compilation because the include paths are case-sensitive. This patch converts the default board names to lowercase to resolve such issues. Users are still free to define their own boards in either uppercase or lowercase as long as they keep the cases consistent. Tracked-On: #2794 Signed-off-by: Junjie Mao <junjie.mao@intel.com>
1 parent 5398c90 commit 9abd469

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

hypervisor/arch/x86/configs/apl-up2.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib)
2-
CONFIG_BOARD="UP2"
2+
CONFIG_BOARD="up2"
33
CONFIG_SERIAL_PCI=y
44
CONFIG_SERIAL_PCI_BDF="0:18.0"
55
CONFIG_COM_IRQ=6
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib)
2-
CONFIG_BOARD="NUC6CAYH"
2+
CONFIG_BOARD="nuc6cayh"
33
CONFIG_SERIAL_LEGACY=y
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib)
2-
CONFIG_BOARD="NUC7i7BNH"
2+
CONFIG_BOARD="nuc7i7bnh"
33
CONFIG_SERIAL_LEGACY=y

0 commit comments

Comments
 (0)